aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/emacs-lisp/elint.el
diff options
context:
space:
mode:
authorGlenn Morris <[email protected]>2009-02-24 03:32:19 +0000
committerGlenn Morris <[email protected]>2009-02-24 03:32:19 +0000
commit92bd667f241641d811cb81bee584f7aa3539edf5 (patch)
treebd66987d06b83da00121ee8294f35dc0292cf13c /lisp/emacs-lisp/elint.el
parent433c16523a52d5a64aab71723a9fcbc6162f7de8 (diff)
(elint-unknown-builtin-args): Fix encode-time spec. (Bug#2453)
(elint-find-builtin-args): Make the match more restrictive. Handle errors. Return a result actually containing the function name.
Diffstat (limited to 'lisp/emacs-lisp/elint.el')
-rw-r--r--lisp/emacs-lisp/elint.el24
1 files changed, 12 insertions, 12 deletions
diff --git a/lisp/emacs-lisp/elint.el b/lisp/emacs-lisp/elint.el
index a58cd3eae0..bc38abce25 100644
--- a/lisp/emacs-lisp/elint.el
+++ b/lisp/emacs-lisp/elint.el
@@ -1,7 +1,7 @@
;;; elint.el --- Lint Emacs Lisp
-;; Copyright (C) 1997, 2001, 2002, 2003, 2004, 2005,
-;; 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
+;; Copyright (C) 1997, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008,
+;; 2009 Free Software Foundation, Inc.
;; Author: Peter Liljenberg <[email protected]>
;; Created: May 1997
@@ -107,7 +107,7 @@
(if cond then &rest else)
(apply function &rest args)
(format string &rest args)
- (encode-time second minute hour day month year zone &rest args)
+ (encode-time second minute hour day month year &optional zone)
(min &rest args)
(logand &rest args)
(logxor &rest args)
@@ -506,6 +506,7 @@ Returns `unknown' if we couldn't find arguments."
(let ((fcode (indirect-function func)))
(if (subrp fcode)
(let ((args (get func 'elint-args)))
+ ;; FIXME builtins with no args have args = nil.
(if args args 'unknown))
(elint-find-args-in-code fcode)))
'undefined)
@@ -792,15 +793,14 @@ functions, otherwise use LIST.
Each functions is represented by a cons cell:
\(function-symbol . args)
If no documentation could be found args will be `unknown'."
-
- (mapcar (function (lambda (f)
- (let ((doc (documentation f t)))
- (if (and doc (string-match "\n\n\\((.*)\\)" doc))
- (read (match-string 1 doc))
- (cons f 'unknown))
- )))
- (if list list
- (elint-find-builtins))))
+ (mapcar (lambda (f)
+ (let ((doc (documentation f t)))
+ (or (and doc
+ (string-match "\n\n(fn\\(.*)\\)\\'" doc)
+ (ignore-errors
+ (read (format "(%s %s" f (match-string 1 doc)))))
+ (cons f 'unknown))))
+ (or list (elint-find-builtins))))
(provide 'elint)