diff options
author | Luc Teirlinck <teirllm@auburn.edu> | 2005-03-05 19:09:07 +0000 |
---|---|---|
committer | Luc Teirlinck <teirllm@auburn.edu> | 2005-03-05 19:09:07 +0000 |
commit | 7ff2283b31d662621572945a0211212b73e8e038 (patch) | |
tree | 887578fac49d4b44b2145ab50f914f49416fc39a /lisp/simple.el | |
parent | 95f1f7e827f265b3761b2ffb72f5dbfa122a3d3e (diff) | |
download | emacs-7ff2283b31d662621572945a0211212b73e8e038.tar.gz |
(goto-line): Remove unbalanced final parenthesis.
Diffstat (limited to 'lisp/simple.el')
-rw-r--r-- | lisp/simple.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/simple.el b/lisp/simple.el index 67d3bc6b8e8..68ef955431a 100644 --- a/lisp/simple.el +++ b/lisp/simple.el @@ -780,7 +780,7 @@ If there's a number in the buffer at point, it is the default for ARG." (goto-char 1) (if (eq selective-display t) (re-search-forward "[\n\C-m]" nil 'end (1- arg)) - (forward-line (1- arg)))))) + (forward-line (1- arg))))) (defun count-lines-region (start end) "Print number of lines and characters in the region." |