]> git.eshelyaron.com Git - emacs.git/commitdiff
* eshell/esh-io.el, eshell/esh-var.el: Replace `illegal' with
authorWerner LEMBERG <wl@gnu.org>
Fri, 25 Mar 2005 08:33:09 +0000 (08:33 +0000)
committerWerner LEMBERG <wl@gnu.org>
Fri, 25 Mar 2005 08:33:09 +0000 (08:33 +0000)
`invalid'.

lisp/ChangeLog
lisp/eshell/esh-io.el
lisp/eshell/esh-var.el

index d8f672c7234ef9a36f87abd98098743ab6629b9c..f84420c6badc4e6e28260eda04952c13f36f1a22 100644 (file)
@@ -5,6 +5,8 @@
        * midnight.el, vc-cvs.el: Replace `illegal' with `invalid'.
        * emacs-lisp/cl-macs.el: Replace `illegal' with `invalid'.
        * emulation/vip.el: Replace `illegal' with `invalid'.
+       * eshell/esh-io.el, eshell/esh-var.el: Replace `illegal' with
+       `invalid'.
 
 2005-03-24  Stefan Monnier  <monnier@iro.umontreal.ca>
 
index d832fa9cd03b120970cd44f3ed8b56973dabd2dd..6944770dbc9ac1f514b6e761b3a7744f5ac08ee7 100644 (file)
@@ -1,6 +1,6 @@
 ;;; esh-io.el --- I/O management
 
-;; Copyright (C) 1999, 2000 Free Software Foundation
+;; Copyright (C) 1999, 2000, 2005 Free Software Foundation
 
 ;; Author: John Wiegley <johnw@gnu.org>
 
@@ -377,7 +377,7 @@ it defaults to `insert'."
     target)
 
    (t
-    (error "Illegal redirection target: %s"
+    (error "Invalid redirection target: %s"
           (eshell-stringify target)))))
 
 (eval-when-compile
index fabcf3670884ccd756adda3c9700ac439a1bb154..9ff9c1898a2ae133823a852b5df3e6b1347d9b5a 100644 (file)
@@ -1,6 +1,6 @@
 ;;; esh-var.el --- handling of variables
 
-;; Copyright (C) 1999, 2000 Free Software Foundation
+;; Copyright (C) 1999, 2000, 2005 Free Software Foundation
 
 ;; Author: John Wiegley <johnw@gnu.org>
 
@@ -568,7 +568,7 @@ For example, to retrieve the second element of a user's record in
                        (split-string value separator)))))
       (cond
        ((< (length refs) 0)
-       (error "Illegal array variable index: %s"
+       (error "Invalid array variable index: %s"
               (eshell-stringify refs)))
        ((= (length refs) 1)
        (setq value (eshell-index-value value (car refs))))