comparison lisp/eshell/esh-io.el @ 60915:a72129314db4

* eshell/esh-io.el, eshell/esh-var.el: Replace `illegal' with `invalid'.
author Werner LEMBERG <wl@gnu.org>
date Fri, 25 Mar 2005 08:33:09 +0000
parents 8e3531a00902
children dc758ba35d6c 4da4a09e8b1b
comparison
equal deleted inserted replaced
60914:62dc372efbe1 60915:a72129314db4
1 ;;; esh-io.el --- I/O management 1 ;;; esh-io.el --- I/O management
2 2
3 ;; Copyright (C) 1999, 2000 Free Software Foundation 3 ;; Copyright (C) 1999, 2000, 2005 Free Software Foundation
4 4
5 ;; Author: John Wiegley <johnw@gnu.org> 5 ;; Author: John Wiegley <johnw@gnu.org>
6 6
7 ;; This file is part of GNU Emacs. 7 ;; This file is part of GNU Emacs.
8 8
375 ((or (eshell-processp target) 375 ((or (eshell-processp target)
376 (markerp target)) 376 (markerp target))
377 target) 377 target)
378 378
379 (t 379 (t
380 (error "Illegal redirection target: %s" 380 (error "Invalid redirection target: %s"
381 (eshell-stringify target))))) 381 (eshell-stringify target)))))
382 382
383 (eval-when-compile 383 (eval-when-compile
384 (defvar grep-null-device)) 384 (defvar grep-null-device))
385 385