diff options
| author | Juanma Barranquero | 2008-11-26 10:46:21 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2008-11-26 10:46:21 +0000 |
| commit | 0ec6a7e50154db4797a86745ce31831bc2018b2d (patch) | |
| tree | f5953219b8b8353ad4021b06636b80b697358784 | |
| parent | 8fc2ac41e37e8e91c600bf4bf893125688ca7a62 (diff) | |
| download | emacs-0ec6a7e50154db4797a86745ce31831bc2018b2d.tar.gz emacs-0ec6a7e50154db4797a86745ce31831bc2018b2d.zip | |
Fix typo in previous commit.
| -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'.") | |||
| 53 | With ARG, do it that many times. Negative arg -N means | 53 | With ARG, do it that many times. Negative arg -N means |
| 54 | move backward across N balanced expressions. | 54 | move backward across N balanced expressions. |
| 55 | This command assumes point is not in a string or comment." | 55 | This 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) |