From: Stefan Monnier Date: Sun, 1 Oct 2000 00:57:13 +0000 (+0000) Subject: (lisp-complete-symbol): Only jump 2 not 3 levels. X-Git-Tag: emacs-pretest-21.0.90~1241 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=f77eca766aca66a64e05362c9b8895bb2e3c473c;p=emacs.git (lisp-complete-symbol): Only jump 2 not 3 levels. --- diff --git a/lisp/emacs-lisp/lisp.el b/lisp/emacs-lisp/lisp.el index 52912146be9..cc0844464a0 100644 --- a/lisp/emacs-lisp/lisp.el +++ b/lisp/emacs-lisp/lisp.el @@ -375,7 +375,6 @@ considered." (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) ?\())