]> git.eshelyaron.com Git - emacs.git/commitdiff
(move-to-tab-stop): Delete spurious multiple definition.
authorRichard M. Stallman <rms@gnu.org>
Tue, 12 Jul 1994 00:41:10 +0000 (00:41 +0000)
committerRichard M. Stallman <rms@gnu.org>
Tue, 12 Jul 1994 00:41:10 +0000 (00:41 +0000)
lisp/indent.el

index ef63db81932c5bc9da64dc758651efcb2e6301c9..f869b175f75ead861e349ee53e098952a764f273 100644 (file)
@@ -244,22 +244,6 @@ Use \\[edit-tab-stops] to edit them interactively."
          (indent-to (car tabs)))
       (insert ?\ ))))
 
-(defun move-to-tab-stop ()
-  "Move point to next defined tab-stop column.
-The variable `tab-stop-list' is a list of columns at which there are tab stops.
-Use \\[edit-tab-stops] to edit them interactively."
-  (interactive)
-  (let ((tabs tab-stop-list))
-    (while (and tabs (>= (current-column) (car tabs)))
-      (setq tabs (cdr tabs)))
-    (if tabs
-       (progn
-         (if (eq last-command 'move-to-tab-stop)
-             (let ((opoint (point)))
-               (skip-chars-backward " \t")
-               (delete-region (point) opoint)))
-         (move-to-column (car tabs) t)))))
-
 (defun move-to-tab-stop ()
   "Move point to next defined tab-stop column.
 The variable `tab-stop-list' is a list of columns at which there are tab stops.