aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJim Blandy1993-01-14 14:50:16 +0000
committerJim Blandy1993-01-14 14:50:16 +0000
commitd5ab20330ab7b35cf8e2eb5ff916649dad7a65d8 (patch)
treed8b2a12df5c38b5642c6b5c21d609f138a4e3caf
parent817d6535a925c4cc5494c0aa2e47b33de8919307 (diff)
downloademacs-d5ab20330ab7b35cf8e2eb5ff916649dad7a65d8.tar.gz
emacs-d5ab20330ab7b35cf8e2eb5ff916649dad7a65d8.zip
* simple.el (set-goal-column): Make this command disabled by default.
-rw-r--r--lisp/simple.el5
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].