# HG changeset patch # User Stefan Monnier # Date 970361833 0 # Node ID d481da7b59b01397f55924b2531e7581caa9ea4d # Parent 6ad7b904a2d2d296986aa4707da018e9b4a5b009 (lisp-complete-symbol): Only jump 2 not 3 levels. diff -r 6ad7b904a2d2 -r d481da7b59b0 lisp/emacs-lisp/lisp.el --- a/lisp/emacs-lisp/lisp.el Sun Oct 01 00:53:23 2000 +0000 +++ b/lisp/emacs-lisp/lisp.el Sun Oct 01 00:57:13 2000 +0000 @@ -375,7 +375,6 @@ (or (boundp sym) (fboundp sym) (symbol-plist sym))) ;; Looks like a funcall position. Let's double check. - (backward-char 1) ;skip paren (if (condition-case nil (progn (up-list -2) (forward-char 1) (eq (char-after) ?\())