]> git.eshelyaron.com Git - emacs.git/commitdiff
Rms (in his change to comment-region on Feb 1) decided to make
authorMichael I. Bushnell <mib@gnu.org>
Thu, 3 Feb 1994 23:48:59 +0000 (23:48 +0000)
committerMichael I. Bushnell <mib@gnu.org>
Thu, 3 Feb 1994 23:48:59 +0000 (23:48 +0000)
`interactive' in the function backward-word all upper case.  Needless
to say, this isn't such a good idea.

lisp/simple.el

index 738f12e7410dc605bf82311b96bdec7f1d65ccc1..909427aeb9676d37e6a04e7c46fae2bce3488522 100644 (file)
@@ -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)