elisp中的 if 特殊表与其他语言中的 if 语句逻辑上并无二致,关键在于如何使用。
1 (if (> 4 3) 2 (message "4 is greater than 3"))
同样也可以使用 if-else 结构
1 (if (< 4 3) 2 (message "4 is lower than 3") 3 (message "4 is greater than 3"))
但是会有一个问题,如果我们需要在 if 部或者 else 部对多个表求值,那么我们需要使用 progn 特殊表。
1 (if (> 4 3) 2 (progn (message "4 is greater than 3") (message "that's true")))
下面是一个有用的例子,用于开启或关闭ecb的功能。
1 (setq ecb-switch-flag 'off) 2 (defun ecb-switch () 3 "用于开启或者关闭ecb功能,使用了开关的形式" 4 (interactive) 5 (if (equal ecb-switch-flag 'off) 6 (progn (ecb-activate) (setq ecb-switch-flag 'on)) 7 (progn (ecb-deactivate) (setq ecb-switch-flag 'off)))) 8 9 ;; 将自定义函数绑定到全局快捷键 M-F2 上 10 (global-set-key (quote [27 f2]) 'ecb-switch)
上面按键绑定的方法来自http://docs.huihoo.com/homepage/shredderyin/wiki/KeyBinding.html
主要参考http://www.gnu.org/software/emacs/manual/html_node/elisp/Sequencing.html#Sequencing