diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2019-05-19 20:50:54 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2019-05-19 20:50:54 +0200 |
commit | 1b2b136a17d222892af9c25559e1b4c41de7831c (patch) | |
tree | f972f8408d0e0c5e1b40a1615c4a8a14140a3f97 /lisp/emacs-lisp | |
parent | a9c1e18517bbd4a49dd12c4bff085315e2d79083 (diff) | |
download | emacs-1b2b136a17d222892af9c25559e1b4c41de7831c.tar.gz |
cus-edit.el: Remove XEmacs compat code
* lisp/cus-edit.el (custom-browse-insert-prefix): Remove XEmacs
compat code and make obsolete.
(custom-group-value-create): Use `insert' directly.
* lisp/emacs-lisp/elint.el (elint-check-conditional-form): Don't
refer to function that doesn't have an if any more.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/elint.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/elint.el b/lisp/emacs-lisp/elint.el index 3f49b51acdd..4a539720168 100644 --- a/lisp/emacs-lisp/elint.el +++ b/lisp/emacs-lisp/elint.el @@ -937,7 +937,7 @@ Does basic handling of `featurep' tests." ((and (memq func '(unless or)) (equal test '(featurep (quote emacs))))) ((and (eq func 'if) - (or (null test) ; eg custom-browse-insert-prefix + (or (null test) (member test '((featurep (quote xemacs)) (not (featurep (quote emacs))))) (and (eq (car-safe test) 'and) |