From: Michael I. Bushnell Date: Thu, 3 Feb 1994 23:48:59 +0000 (+0000) Subject: Rms (in his change to comment-region on Feb 1) decided to make X-Git-Tag: emacs-19.34~10087 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=9e50756b47e27c3306f78f434758ef59f4949822;p=emacs.git 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. --- 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)