diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2008-11-26 10:46:21 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2008-11-26 10:46:21 +0000 |
commit | 0ec6a7e50154db4797a86745ce31831bc2018b2d (patch) | |
tree | f5953219b8b8353ad4021b06636b80b697358784 /lisp/emacs-lisp | |
parent | 8fc2ac41e37e8e91c600bf4bf893125688ca7a62 (diff) | |
download | emacs-0ec6a7e50154db4797a86745ce31831bc2018b2d.tar.gz emacs-0ec6a7e50154db4797a86745ce31831bc2018b2d.tar.bz2 emacs-0ec6a7e50154db4797a86745ce31831bc2018b2d.zip |
Fix typo in previous commit.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/lisp.el | 2 |
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'.") With ARG, do it that many times. Negative arg -N means move backward across N balanced expressions. This command assumes point is not in a string or comment." - (Interactive "p") + (interactive "p") (or arg (setq arg 1)) (if forward-sexp-function (funcall forward-sexp-function arg) |