emacs-diffs
[Top][All Lists]
Advanced

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

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


From: Stefan Monnier
Subject: [Emacs-diffs] Changes to emacs/lisp/progmodes/hideif.el
Date: Thu, 07 Jul 2005 00:31:18 -0400

Index: emacs/lisp/progmodes/hideif.el
diff -c emacs/lisp/progmodes/hideif.el:1.51 emacs/lisp/progmodes/hideif.el:1.52
*** emacs/lisp/progmodes/hideif.el:1.51 Mon Jul  4 16:59:19 2005
--- emacs/lisp/progmodes/hideif.el      Thu Jul  7 04:31:17 2005
***************
*** 960,966 ****
    "Set `hide-ifdef-env' to the define list specified by NAME."
    (interactive
     (list (completing-read "Use define list: "
!                         hide-ifdef-define-alist nil t)))
    (if (stringp name) (setq name (intern name)))
    (let ((define-list (assoc name hide-ifdef-define-alist)))
      (if define-list
--- 960,968 ----
    "Set `hide-ifdef-env' to the define list specified by NAME."
    (interactive
     (list (completing-read "Use define list: "
!                         (mapcar (lambda (x) (symbol-name (car x)))
!                                   hide-ifdef-define-alist)
!                           nil t)))
    (if (stringp name) (setq name (intern name)))
    (let ((define-list (assoc name hide-ifdef-define-alist)))
      (if define-list
***************
*** 972,976 ****
  
  (provide 'hideif)
  
! ;;; arch-tag: c6381d17-a59a-483a-b945-658f22277981
  ;;; hideif.el ends here
--- 974,978 ----
  
  (provide 'hideif)
  
! ;; arch-tag: c6381d17-a59a-483a-b945-658f22277981
  ;;; hideif.el ends here




reply via email to

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