mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-16 17:24:23 +00:00
* lisp/widget.el (define-widget-keywords): Use declare.
This commit is contained in:
parent
cf5aa2f39a
commit
28ba9d542c
1 changed files with 2 additions and 2 deletions
|
|
@ -35,7 +35,6 @@
|
|||
;; Doing this is unnecessary in Emacs 20. Kept as dummy in case
|
||||
;; external libraries call it. We save a kb or two of purespace by
|
||||
;; dummying-out such definitions generally.
|
||||
(make-obsolete 'define-widget-keywords nil "27.1")
|
||||
(defmacro define-widget-keywords (&rest _keys)
|
||||
;; ;; Don't use backquote, since that makes trouble trying to
|
||||
;; ;; re-bootstrap from just the .el files.
|
||||
|
|
@ -45,7 +44,8 @@
|
|||
;; (list 'or (list 'boundp (list 'car 'keywords))
|
||||
;; (list 'set (list 'car 'keywords) (list 'car 'keywords)))
|
||||
;; (list 'setq 'keywords (list 'cdr 'keywords)))))
|
||||
)
|
||||
(declare (obsolete nil "27.1"))
|
||||
nil)
|
||||
|
||||
;;(define-widget-keywords :documentation-indent
|
||||
;; :complete-function :complete :button-overlay
|
||||
|
|
|
|||
Loading…
Reference in a new issue