Mercurial > emacs
changeset 5764:5726c18895e3
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.
author | Michael I. Bushnell <mib@gnu.org> |
---|---|
date | Thu, 03 Feb 1994 23:48:59 +0000 |
parents | ec298224882d |
children | 021bdb142040 |
files | lisp/simple.el |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/simple.el Thu Feb 03 19:51:07 1994 +0000 +++ b/lisp/simple.el Thu Feb 03 23:48:59 1994 +0000 @@ -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 @@ "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)