emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/ido.el


From: Kim F. Storm
Subject: [Emacs-diffs] Changes to emacs/lisp/ido.el
Date: Sun, 07 Jul 2002 17:16:49 -0400

Index: emacs/lisp/ido.el
diff -c emacs/lisp/ido.el:1.2 emacs/lisp/ido.el:1.3
*** emacs/lisp/ido.el:1.2       Mon Jul  1 12:11:39 2002
--- emacs/lisp/ido.el   Sun Jul  7 17:16:23 2002
***************
*** 2871,2880 ****
            (if ido-xemacs 
                ;; XEmacs extents are put on by default, doesn't seem to be
                ;; any way of switching them off.
!               (display-completion-list completion-list
!                                        :help-string "ido "
!                                        :activate-callback 
!                                        '(lambda (x y z) (message "doesn't 
work yet, sorry!")))
              ;; else running Emacs
              ;;(add-hook 'completion-setup-hook 'completion-setup-function)
              (display-completion-list completion-list)))))))
--- 2871,2882 ----
            (if ido-xemacs 
                ;; XEmacs extents are put on by default, doesn't seem to be
                ;; any way of switching them off.
!               ;; This obscure code avoids a byte compiler warning in GNU 
emacs.
!               (let ((f 'display-completion-list))
!                 (funcall f completion-list
!                          :help-string "ido "
!                          :activate-callback 
!                          '(lambda (x y z) (message "doesn't work yet, 
sorry!"))))
              ;; else running Emacs
              ;;(add-hook 'completion-setup-hook 'completion-setup-function)
              (display-completion-list completion-list)))))))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]