浏览代码

Put function names in quotes

Ryan C. Thompson 13 年之前
父节点
当前提交
ea0d7c297f
共有 1 个文件被更改,包括 5 次插入5 次删除
  1. 5 5
      ido-ubiquitous.el

+ 5 - 5
ido-ubiquitous.el

@@ -34,12 +34,12 @@
 
 ;;;###autoload
 (defcustom ido-ubiquitous-enabled t
-  "If non-nil, use ido-completing-read instead of completing-read if possible.
+  "If non-nil, use `ido-completing-read' instead of `completing-read' if possible.
 
-  Set it to nil using let in around-advice for functions where the
-  original completing-read is required.  For example, if a function
-  foo absolutely must use the original completing-read, define some
-  advice like this:
+  Set it to nil using let in around-advice for functions where
+  the original `completing-read' is required. For example, if a
+  function `foo' absolutely cannot use ido, but must instead use
+  the original `completing-read', define some advice like this:
 
   (defadvice foo (around original-completing-read-only activate)
     (let (ido-ubiquitous-enabled) ad-do-it))"