aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2008-11-26 10:46:21 +0000
committerJuanma Barranquero2008-11-26 10:46:21 +0000
commit0ec6a7e50154db4797a86745ce31831bc2018b2d (patch)
treef5953219b8b8353ad4021b06636b80b697358784
parent8fc2ac41e37e8e91c600bf4bf893125688ca7a62 (diff)
downloademacs-0ec6a7e50154db4797a86745ce31831bc2018b2d.tar.gz
emacs-0ec6a7e50154db4797a86745ce31831bc2018b2d.zip
Fix typo in previous commit.
-rw-r--r--lisp/emacs-lisp/lisp.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/lisp.el b/lisp/emacs-lisp/lisp.el
index 0000b2e1976..1189ff3e2a4 100644
--- a/lisp/emacs-lisp/lisp.el
+++ b/lisp/emacs-lisp/lisp.el
@@ -53,7 +53,7 @@ Should take the same arguments and behave similarly to `forward-sexp'.")
53With ARG, do it that many times. Negative arg -N means 53With ARG, do it that many times. Negative arg -N means
54move backward across N balanced expressions. 54move backward across N balanced expressions.
55This command assumes point is not in a string or comment." 55This command assumes point is not in a string or comment."
56 (Interactive "p") 56 (interactive "p")
57 (or arg (setq arg 1)) 57 (or arg (setq arg 1))
58 (if forward-sexp-function 58 (if forward-sexp-function
59 (funcall forward-sexp-function arg) 59 (funcall forward-sexp-function arg)