changeset 1771:3f0f18d4eb8c

* simple.el (set-goal-column): Make this command disabled by default.
author Jim Blandy <jimb@redhat.com>
date Thu, 14 Jan 1993 14:50:16 +0000
parents 29bcc2c88773
children 86f58433c8aa
files lisp/simple.el
diffstat 1 files changed, 4 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/simple.el	Thu Jan 14 14:49:17 1993 +0000
+++ b/lisp/simple.el	Thu Jan 14 14:50:16 1993 +0000
@@ -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 @@
   (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].