今日学习:
1. emacs终端模式启动命令: emacs -nw
--no-window-system, -nw do not communicate with X, ignoring $DISPLAY
纯终端模式,不使用X窗口
2. 正则表达式中 "\\s-" 代表空格或者Tab
(string-match regexp string) 返回string中第一个匹配regexp表达式的起始点
(match-beginning n) 返回正则表达式中第n个括号匹配的起始点,与string-match一起使用
(match-end n) 返回正则表达式中第n个括号匹配的末尾点
3. (copy-file file newname ...) 拷贝文件
4. (intern string &optional obarray) 返回名字为string的标准符号,不存在则创建到'obarray'中
(intern-soft name &optional obarray) 返回名字为name的标准符号, 不存在返回nil。
5.