aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorRobin Templeton <[email protected]>2014-08-03 02:14:45 -0400
committerRobin Templeton <[email protected]>2015-04-20 00:29:02 -0400
commit3bf234fa520ff90db31fae85f306befdadb24532 (patch)
tree145ba69831ce7c7deacf2392a76414eb5332ac4c /lisp
parent4d3b8872ad53ef6352f769df84c26b0f835ede3a (diff)
remove `declare' macro
Diffstat (limited to 'lisp')
-rw-r--r--lisp/subr.el14
1 files changed, 0 insertions, 14 deletions
diff --git a/lisp/subr.el b/lisp/subr.el
index 0c1198a975..c6e92bf054 100644
--- a/lisp/subr.el
+++ b/lisp/subr.el
@@ -228,20 +228,6 @@ the return value (nil if RESULT is omitted).
(setq ,(car spec) (1+ ,(car spec))))
,@(cdr (cdr spec))))))
-(defmacro declare (&rest _specs)
- "Do not evaluate any arguments, and return nil.
-If a `declare' form appears as the first form in the body of a
-`defun' or `defmacro' form, SPECS specifies various additional
-information about the function or macro; these go into effect
-during the evaluation of the `defun' or `defmacro' form.
-
-The possible values of SPECS are specified by
-`defun-declarations-alist' and `macro-declarations-alist'.
-
-For more information, see info node `(elisp)Declare Form'."
- ;; FIXME: edebug spec should pay attention to defun-declarations-alist.
- nil)
-
(defmacro ignore-errors (&rest body)
"Execute BODY; if an error occurs, return nil.
Otherwise, return result of last form in BODY.