diff options
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/simple.el | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lisp/simple.el b/lisp/simple.el index 9fd9feaf34a..2d8ec3095f9 100644 --- a/lisp/simple.el +++ b/lisp/simple.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; simple.el --- basic editing commands for Emacs | 1 | ;;; simple.el --- basic editing commands for Emacs |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 1985, 1986, 1987, 1992 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 1985, 1986, 1987, 1992, 1993 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
| @@ -1291,6 +1291,9 @@ When the `track-eol' feature is doing its job, the value is 9999.") | |||
| 1291 | (move-to-column (or goal-column temporary-goal-column)) | 1291 | (move-to-column (or goal-column temporary-goal-column)) |
| 1292 | nil) | 1292 | nil) |
| 1293 | 1293 | ||
| 1294 | ;;; Many people have said they rarely use this feature, and often type | ||
| 1295 | ;;; it by accident. Maybe it shouldn't even be on a key. | ||
| 1296 | (put 'set-goal-column 'disabled t) | ||
| 1294 | 1297 | ||
| 1295 | (defun set-goal-column (arg) | 1298 | (defun set-goal-column (arg) |
| 1296 | "Set the current horizontal position as a goal for \\[next-line] and \\[previous-line]. | 1299 | "Set the current horizontal position as a goal for \\[next-line] and \\[previous-line]. |