aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2000-09-17 01:04:35 +0000
committerStefan Monnier2000-09-17 01:04:35 +0000
commita47ecf6cfaf228e061b29786158b59390762120e (patch)
treebab1a74970729ee865a7e1bcc8431aa60e02e875
parent438cdcdeb04b08aefdc5450d7eddbffa21e44f2d (diff)
downloademacs-a47ecf6cfaf228e061b29786158b59390762120e.tar.gz
emacs-a47ecf6cfaf228e061b29786158b59390762120e.zip
(tempo-expand-if-complete): Quote paren in docstring.
-rw-r--r--lisp/tempo.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/tempo.el b/lisp/tempo.el
index 098c6d5535f..ae9c7731b44 100644
--- a/lisp/tempo.el
+++ b/lisp/tempo.el
@@ -52,7 +52,7 @@
52;; a non-nil argument). 52;; a non-nil argument).
53 53
54;; More flexible templates can be created by including lisp symbols, 54;; More flexible templates can be created by including lisp symbols,
55;; which will be evaluated as variables, or lists, which will will be 55;; which will be evaluated as variables, or lists, which will be
56;; evaluated as lisp expressions. 56;; evaluated as lisp expressions.
57 57
58;; See the documentation for tempo-define-template for the different 58;; See the documentation for tempo-define-template for the different
@@ -737,7 +737,7 @@ Returns non-nil if an expansion was made and nil otherwise.
737This could as an example be used in a command that is bound to the 737This could as an example be used in a command that is bound to the
738space bar, and looks something like this: 738space bar, and looks something like this:
739 739
740(defun tempo-space () 740\(defun tempo-space ()
741 (interactive \"*\") 741 (interactive \"*\")
742 (or (tempo-expand-if-complete) 742 (or (tempo-expand-if-complete)
743 (insert \" \")))" 743 (insert \" \")))"