aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/simple.el
diff options
context:
space:
mode:
authorJim Blandy <[email protected]>1993-01-14 14:50:16 +0000
committerJim Blandy <[email protected]>1993-01-14 14:50:16 +0000
commitd5ab20330ab7b35cf8e2eb5ff916649dad7a65d8 (patch)
treed8b2a12df5c38b5642c6b5c21d609f138a4e3caf /lisp/simple.el
parent817d6535a925c4cc5494c0aa2e47b33de8919307 (diff)
* simple.el (set-goal-column): Make this command disabled by default.
Diffstat (limited to 'lisp/simple.el')
-rw-r--r--lisp/simple.el5
1 files changed, 4 insertions, 1 deletions
diff --git a/lisp/simple.el b/lisp/simple.el
index 9fd9feaf34..2d8ec3095f 100644
--- a/lisp/simple.el
+++ b/lisp/simple.el
@@ -1,6 +1,6 @@
;;; simple.el --- basic editing commands for Emacs
-;; Copyright (C) 1985, 1986, 1987, 1992 Free Software Foundation, Inc.
+;; Copyright (C) 1985, 1986, 1987, 1992, 1993 Free Software Foundation, Inc.
;; This file is part of GNU Emacs.
@@ -1291,6 +1291,9 @@ When the `track-eol' feature is doing its job, the value is 9999.")
(move-to-column (or goal-column temporary-goal-column))
nil)
+;;; Many people have said they rarely use this feature, and often type
+;;; it by accident. Maybe it shouldn't even be on a key.
+(put 'set-goal-column 'disabled t)
(defun set-goal-column (arg)
"Set the current horizontal position as a goal for \\[next-line] and \\[previous-line].