summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp/lisp-mode.el
diff options
context:
space:
mode:
authorStefan Monnier <monnier@iro.umontreal.ca>2012-05-26 11:52:27 -0400
committerStefan Monnier <monnier@iro.umontreal.ca>2012-05-26 11:52:27 -0400
commita179e3f7b472b3b5075a98e3b33852e9f223cd83 (patch)
tree485cea33c9ac5b8c398db14a7301557677dfba0a /lisp/emacs-lisp/lisp-mode.el
parent53a63be64de2c4a28ffcd275398255976a380fee (diff)
downloademacs-a179e3f7b472b3b5075a98e3b33852e9f223cd83.tar.gz
emacs-a179e3f7b472b3b5075a98e3b33852e9f223cd83.tar.bz2
emacs-a179e3f7b472b3b5075a98e3b33852e9f223cd83.zip
Use `declare' in `lambda' and mis minor changes.
* lisp/subr.el (lambda): Use declare. * lisp/emacs-lisp/lisp-mode.el (lambda): * lisp/emacs-lisp/edebug.el (lambda): Move properties to its definition. * lisp/gnus/legacy-gnus-agent.el (gnus-agent-unhook-expire-days): * lisp/gnus/gnus-demon.el (gnus-demon-init): Don't bother with type-of.
Diffstat (limited to 'lisp/emacs-lisp/lisp-mode.el')
-rw-r--r--lisp/emacs-lisp/lisp-mode.el2
1 files changed, 0 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/lisp-mode.el b/lisp/emacs-lisp/lisp-mode.el
index dfdac92ae32..d76c1ad3e72 100644
--- a/lisp/emacs-lisp/lisp-mode.el
+++ b/lisp/emacs-lisp/lisp-mode.el
@@ -140,7 +140,6 @@ It has `lisp-mode-abbrev-table' as its parent."
(put 'defvar 'doc-string-elt 3)
(put 'defconst 'doc-string-elt 3)
(put 'defmacro 'doc-string-elt 3)
-(put 'lambda 'doc-string-elt 2)
(put 'defalias 'doc-string-elt 3)
(put 'defvaralias 'doc-string-elt 3)
(put 'define-category 'doc-string-elt 2)
@@ -1213,7 +1212,6 @@ Lisp function does not specify a special indentation."
;; like defun if the first form is placed on the next line, otherwise
;; it is indented like any other form (i.e. forms line up under first).
-(put 'lambda 'lisp-indent-function 'defun)
(put 'autoload 'lisp-indent-function 'defun)
(put 'progn 'lisp-indent-function 0)
(put 'prog1 'lisp-indent-function 1)