summaryrefslogtreecommitdiff
path: root/doc/misc/ede.texi
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2015-08-30 22:47:58 -0700
committerPaul Eggert <eggert@cs.ucla.edu>2015-08-30 23:12:30 -0700
commitb533552292e37a99862627651e11860c6ef5411c (patch)
tree2ca59b64a14042aa8c993fe3242c7622436a7b08 /doc/misc/ede.texi
parent4c24b9e30fd47b537ad08dcf298b5b1a39f20e50 (diff)
downloademacs-b533552292e37a99862627651e11860c6ef5411c.tar.gz
Documentation fixes re quotes
Prefer curved quotes in examples if users will typically see curved quotes when the examples run. Mention format-message when appropriate. Don’t use @code in examples. Quote an apostrophe with @kbd.
Diffstat (limited to 'doc/misc/ede.texi')
-rw-r--r--doc/misc/ede.texi6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/misc/ede.texi b/doc/misc/ede.texi
index 7a824acfed5..565abb557e2 100644
--- a/doc/misc/ede.texi
+++ b/doc/misc/ede.texi
@@ -867,14 +867,14 @@ It would look like this:
)
(defun MY-ROOT-FCN ()
- "Return the root fcn for `default-directory'"
+ "Return the root fcn for ‘default-directory’"
;; You might be able to use 'ede-cpp-root-project-root'
;; and not write this at all.
)
(defun MY-LOAD (dir)
- "Load a project of type `cpp-root' for the directory DIR.
-Return nil if there isn't one."
+ "Load a project of type ‘cpp-root’ for the directory DIR.
+Return nil if there isn’t one."
;; Use your preferred construction method here.
(ede-cpp-root-project "NAME" :file (expand-file-name "FILE" dir)
:locate-fcn 'MYFCN)