mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-12-24 10:38:38 +00:00
* lisp/ido.el (ido-completion-help): Fix up compiler warning.
This commit is contained in:
parent
241de2901e
commit
ad9dcd70d6
@ -1,3 +1,7 @@
|
|||||||
|
2013-08-09 Stefan Monnier <monnier@iro.umontreal.ca>
|
||||||
|
|
||||||
|
* ido.el (ido-completion-help): Fix up compiler warning.
|
||||||
|
|
||||||
2013-08-09 Juanma Barranquero <lekktu@gmail.com>
|
2013-08-09 Juanma Barranquero <lekktu@gmail.com>
|
||||||
|
|
||||||
* frameset.el (frameset-p): Add autoload cookie.
|
* frameset.el (frameset-p): Add autoload cookie.
|
||||||
|
11
lisp/ido.el
11
lisp/ido.el
@ -3972,12 +3972,11 @@ If `ido-change-word-sub' cannot be found in WORD, return nil."
|
|||||||
(if (featurep 'xemacs)
|
(if (featurep 'xemacs)
|
||||||
;; XEmacs extents are put on by default, doesn't seem to be
|
;; XEmacs extents are put on by default, doesn't seem to be
|
||||||
;; any way of switching them off.
|
;; any way of switching them off.
|
||||||
;; This obscure code avoids a byte compiler warning in Emacs.
|
(display-completion-list
|
||||||
(let ((f 'display-completion-list))
|
completion-list
|
||||||
(funcall f completion-list
|
:help-string "ido "
|
||||||
:help-string "ido "
|
:activate-callback
|
||||||
:activate-callback
|
(lambda (&rest _) (message "Doesn't work yet, sorry!")))
|
||||||
(lambda (x y z) (message "Doesn't work yet, sorry!"))))
|
|
||||||
;; else running Emacs
|
;; else running Emacs
|
||||||
;;(add-hook 'completion-setup-hook 'completion-setup-function)
|
;;(add-hook 'completion-setup-hook 'completion-setup-function)
|
||||||
(display-completion-list completion-list)))))))
|
(display-completion-list completion-list)))))))
|
||||||
|
Loading…
Reference in New Issue
Block a user