# HG changeset patch # User Luc Teirlinck # Date 1110049747 0 # Node ID 469a1901dd919c4b85adc16c6ead85078e766767 # Parent 49ffcf1ce31c27dca8193bcfe5a56e0f212341b2 (goto-line): Remove unbalanced final parenthesis. diff -r 49ffcf1ce31c -r 469a1901dd91 lisp/simple.el --- a/lisp/simple.el Sat Mar 05 18:40:27 2005 +0000 +++ b/lisp/simple.el Sat Mar 05 19:09:07 2005 +0000 @@ -780,7 +780,7 @@ (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."