diff options
| author | Werner LEMBERG | 2005-03-25 08:30:01 +0000 |
|---|---|---|
| committer | Werner LEMBERG | 2005-03-25 08:30:01 +0000 |
| commit | d00fa0a4b38917bf2b0d63c43864e4230d52b717 (patch) | |
| tree | 7f9c576268bfd6310aa2058d6ae6e526650c7f5b | |
| parent | 4920bd1ec414afb7acb3e3d8f057f78abe4a9fa6 (diff) | |
| download | emacs-d00fa0a4b38917bf2b0d63c43864e4230d52b717.tar.gz emacs-d00fa0a4b38917bf2b0d63c43864e4230d52b717.zip | |
* emulation/vip.el: Replace `illegal' with `invalid'.
| -rw-r--r-- | lisp/ChangeLog | 1 | ||||
| -rw-r--r-- | lisp/emulation/vip.el | 8 |
2 files changed, 5 insertions, 4 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index d568d7d0ca4..d8f672c7234 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -4,6 +4,7 @@ | |||
| 4 | `invalid'. | 4 | `invalid'. |
| 5 | * midnight.el, vc-cvs.el: Replace `illegal' with `invalid'. | 5 | * midnight.el, vc-cvs.el: Replace `illegal' with `invalid'. |
| 6 | * emacs-lisp/cl-macs.el: Replace `illegal' with `invalid'. | 6 | * emacs-lisp/cl-macs.el: Replace `illegal' with `invalid'. |
| 7 | * emulation/vip.el: Replace `illegal' with `invalid'. | ||
| 7 | 8 | ||
| 8 | 2005-03-24 Stefan Monnier <monnier@iro.umontreal.ca> | 9 | 2005-03-24 Stefan Monnier <monnier@iro.umontreal.ca> |
| 9 | 10 | ||
diff --git a/lisp/emulation/vip.el b/lisp/emulation/vip.el index cbb0aa55aa8..af878085ba8 100644 --- a/lisp/emulation/vip.el +++ b/lisp/emulation/vip.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; vip.el --- a VI Package for GNU Emacs | 1 | ;;; vip.el --- a VI Package for GNU Emacs |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 1986, 1987, 1988, 1992, 1993, 1998 | 3 | ;; Copyright (C) 1986, 1987, 1988, 1992, 1993, 1998, 2005 |
| 4 | ;; Free Software Foundation, Inc. | 4 | ;; Free Software Foundation, Inc. |
| 5 | 5 | ||
| 6 | ;; Author: Masahiko Sato <ms@sail.stanford.edu> | 6 | ;; Author: Masahiko Sato <ms@sail.stanford.edu> |
| @@ -2253,7 +2253,7 @@ a token has type \(command, address, end-mark\) and value." | |||
| 2253 | (setq ex-token-type "end-mark") | 2253 | (setq ex-token-type "end-mark") |
| 2254 | (setq ex-token "goto")) | 2254 | (setq ex-token "goto")) |
| 2255 | (t | 2255 | (t |
| 2256 | (error "illegal token"))))) | 2256 | (error "invalid token"))))) |
| 2257 | 2257 | ||
| 2258 | (defun vip-ex (&optional string) | 2258 | (defun vip-ex (&optional string) |
| 2259 | "ex commands within VIP." | 2259 | "ex commands within VIP." |
| @@ -2478,7 +2478,7 @@ a token has type \(command, address, end-mark\) and value." | |||
| 2478 | (setq ex-flag t) | 2478 | (setq ex-flag t) |
| 2479 | (forward-char 1))) | 2479 | (forward-char 1))) |
| 2480 | (if (not (looking-at "[\n|]")) | 2480 | (if (not (looking-at "[\n|]")) |
| 2481 | (error "Illegal extra characters")))) | 2481 | (error "Invalid extra characters")))) |
| 2482 | 2482 | ||
| 2483 | (defun vip-get-ex-count () | 2483 | (defun vip-get-ex-count () |
| 2484 | (setq ex-variant nil | 2484 | (setq ex-variant nil |
| @@ -2503,7 +2503,7 @@ a token has type \(command, address, end-mark\) and value." | |||
| 2503 | (setq ex-flag t) | 2503 | (setq ex-flag t) |
| 2504 | (forward-char 1))) | 2504 | (forward-char 1))) |
| 2505 | (if (not (looking-at "[\n|]")) | 2505 | (if (not (looking-at "[\n|]")) |
| 2506 | (error "Illegal extra characters")))) | 2506 | (error "Invalid extra characters")))) |
| 2507 | 2507 | ||
| 2508 | (defun vip-get-ex-file () | 2508 | (defun vip-get-ex-file () |
| 2509 | "get a file name and set ex-variant, ex-append and ex-offset if found" | 2509 | "get a file name and set ex-variant, ex-append and ex-offset if found" |