(error): Doc fix.
This commit is contained in:
parent
9542081161
commit
aa308ce238
1 changed files with 4 additions and 1 deletions
|
@ -704,7 +704,10 @@ This function accepts any number of arguments, but ignores them."
|
|||
nil)
|
||||
|
||||
(defun error (&rest args)
|
||||
"Signal an error, making error message by passing all args to `format'."
|
||||
"Signal an error, making error message by passing all args to `format'.
|
||||
In Emacs, the convention is that error messages start with a capital
|
||||
letter but *do not* end with a period. Please follow this convention
|
||||
for the sake of consistency."
|
||||
(while t
|
||||
(signal 'error (list (apply 'format args)))))
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue