diff options
author | Werner LEMBERG <wl@gnu.org> | 2005-03-25 08:27:58 +0000 |
---|---|---|
committer | Werner LEMBERG <wl@gnu.org> | 2005-03-25 08:27:58 +0000 |
commit | 4920bd1ec414afb7acb3e3d8f057f78abe4a9fa6 (patch) | |
tree | 92a8604c6049425fbf4b2fea3f8521a34fed5f1b /lisp/emacs-lisp | |
parent | aaed846c01c90115574a8098dd1636ef1c866ab6 (diff) | |
download | emacs-4920bd1ec414afb7acb3e3d8f057f78abe4a9fa6.tar.gz emacs-4920bd1ec414afb7acb3e3d8f057f78abe4a9fa6.tar.bz2 emacs-4920bd1ec414afb7acb3e3d8f057f78abe4a9fa6.zip |
* emacs-lisp/cl-macs.el: Replace `illegal' with `invalid'.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/cl-macs.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/cl-macs.el b/lisp/emacs-lisp/cl-macs.el index 6a801703815..4a46801763a 100644 --- a/lisp/emacs-lisp/cl-macs.el +++ b/lisp/emacs-lisp/cl-macs.el @@ -1,6 +1,6 @@ ;;; cl-macs.el --- Common Lisp macros -*-byte-compile-dynamic: t;-*- -;; Copyright (C) 1993, 2003, 2004 Free Software Foundation, Inc. +;; Copyright (C) 1993, 2003, 2004, 2005 Free Software Foundation, Inc. ;; Author: Dave Gillespie <daveg@synaptics.com> ;; Version: 2.02 @@ -2219,7 +2219,7 @@ copier, a `NAME-p' predicate, and setf-able `NAME-SLOT' accessors. (if type (progn (or (memq type '(vector list)) - (error "Illegal :type specifier: %s" type)) + (error "Invalid :type specifier: %s" type)) (if named (setq tag name))) (setq type 'vector named 'true))) (or named (setq descs (delq (assq 'cl-tag-slot descs) descs))) |