diff options
| author | Michael I. Bushnell <mib@gnu.org> | 1994-02-03 23:48:59 +0000 |
|---|---|---|
| committer | Michael I. Bushnell <mib@gnu.org> | 1994-02-03 23:48:59 +0000 |
| commit | 9e50756b47e27c3306f78f434758ef59f4949822 (patch) | |
| tree | 321c1efd1878bdab221ca04ab7be3b2cd1f0437a | |
| parent | 07f4d1231f754ba29908086fe57a0b044ecefe5d (diff) | |
| download | emacs-9e50756b47e27c3306f78f434758ef59f4949822.tar.gz | |
Rms (in his change to comment-region on Feb 1) decided to make
`interactive' in the function backward-word all upper case. Needless
to say, this isn't such a good idea.
| -rw-r--r-- | lisp/simple.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/simple.el b/lisp/simple.el index 738f12e7410..909427aeb96 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, 1993 Free Software Foundation, Inc. +;; Copyright (C) 1985, 1986, 1987, 1993, 1994 Free Software Foundation, Inc. ;; This file is part of GNU Emacs. @@ -1877,7 +1877,7 @@ not end the comment. Blank lines do not get comments." "Move backward until encountering the end of a word. With argument, do this that many times. In programs, it is faster to call `forward-word' with negative arg." - (INTERACTIVE "p") + (interactive "p") (forward-word (- arg))) (defun mark-word (arg) |
