diff options
author | Richard M. Stallman <rms@gnu.org> | 1998-03-14 21:45:49 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1998-03-14 21:45:49 +0000 |
commit | dc268724ec5dda27a09c6703661a42a62d759239 (patch) | |
tree | c6b932ea894c34de32f0682f7339f6310d9523ae /lisp/locate.el | |
parent | d1212648240dac5f58e65eea68a78a9dac9a61c8 (diff) | |
download | emacs-dc268724ec5dda27a09c6703661a42a62d759239.tar.gz emacs-dc268724ec5dda27a09c6703661a42a62d759239.tar.bz2 emacs-dc268724ec5dda27a09c6703661a42a62d759239.zip |
(locate-current-line-number): No longer interactive.
Diffstat (limited to 'lisp/locate.el')
-rw-r--r-- | lisp/locate.el | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lisp/locate.el b/lisp/locate.el index 7cc3e0a2102..b3dc0766192 100644 --- a/lisp/locate.el +++ b/lisp/locate.el @@ -2,7 +2,7 @@ ;; Copyright (C) 1996, 1998 Free Software Foundation, Inc. -;; Author: Peter Breton <pbreton@i-kinetics.com> +;; Author: Peter Breton <pbreton@cs.umb.edu> ;; This file is part of GNU Emacs. @@ -252,7 +252,6 @@ ;; From SQL-mode (defun locate-current-line-number () "Return the current line number, as an integer." - (interactive) (+ (count-lines (point-min) (point)) (if (eq (current-column) 0) 1 |