comparison lisp/net/eudc-hotlist.el @ 85511:f873840f9fea

* emulation/edt-mapper.el (function-key-map): (edt-map-key): Make it a function instead of using fset. Inline edt-gnu-map-key and edt-lucid-map-key. Use featurep 'xemacs. (edt-gnu-map-key, edt-lucid-map-key): Remove. (edt-x-emacs-p): Remove. (edt-emacs-variant, edt-window-system, edt-xserver): Use featurep 'xemacs. * net/eudc.el: Use (featurep 'xemacs) instead of the string test. Replace eudc-xemacs-p with its definition. (eudc-xemacs-p, eudc-emacs-p, eudc-xemacs-mule-p) (eudc-emacs-mule-p): Remove. (eudc-install-menu, eudc-mode): Replace eudc-emacs-p and eudc-xemacs-p with feature tests. * net/eudc-bob.el (eudc-bob-generic-menu, eudc-bob-mail-keymap) (eudc-bob-url-keymap, eudc-bob-sound-keymap) (eudc-bob-generic-keymap, eudc-bob-popup-menu) (eudc-bob-toggle-inline-display): * net/eudc-hotlist.el (eudc-hotlist-emacs-menu): Replace eudc-emacs-p and eudc-xemacs-p with feature tests. * net/eudcb-ph.el (eudc-ph-open-session): Replace eudc-xemacs-mule-p with its former definition. * progmodes/octave-mod.el (octave-xemacs-p): Remove. (octave-abbrev-start): Replace octave-xemacs-p with (featurep 'xemacs). * progmodes/vera-mode.el (vera-xemacs): Remove. (vera-mode-syntax-table): Replace vera-xemacs with (featurep 'xemacs). * progmodes/vhdl-mode.el (vhdl-xemacs): Remove. (vhdl-doc-mode, vhdl-doc-variable, vhdl-compile-init) (vhdl-speedbar-initialize, vhdl-ps-print-init) (vhdl-forward-comment, vhdl-mode-map-init, vhdl-show-messages) (vhdl-emacs-22, vhdl-emacs-21): Replace vhdl-xemacs with (featurep 'xemacs). * progmodes/antlr-mode.el (cond-emacs-xemacs-macfn, defunx) (save-buffer-state-x): * obsolete/fast-lock.el (fast-lock-verbose): * emulation/viper-init.el (viper-xemacs-p) (viper-cond-compile-for-xemacs-or-emacs): * emacs-lisp/checkdoc.el (checkdoc-minor-mode-map): * ps-print.el (case-fold-search): * ediff-hook.el (ediff-cond-compile-for-xemacs-or-emacs): * calculator.el (calculator-help): Use featurep 'xemacs.
author Dan Nicolaescu <dann@ics.uci.edu>
date Sun, 21 Oct 2007 17:22:04 +0000
parents e2575abf895a
children 107ccd98fa12 4bc33ffdda1a
comparison
equal deleted inserted replaced
85510:e2eac01cf548 85511:f873840f9fea
188 ["Select Server" eudc-hotlist-select-server t] 188 ["Select Server" eudc-hotlist-select-server t]
189 ["Transpose Servers" eudc-hotlist-transpose-servers t] 189 ["Transpose Servers" eudc-hotlist-transpose-servers t]
190 ["Save and Quit" eudc-hotlist-quit-edit t] 190 ["Save and Quit" eudc-hotlist-quit-edit t]
191 ["Exit without Saving" kill-this-buffer t])) 191 ["Exit without Saving" kill-this-buffer t]))
192 192
193 (if eudc-emacs-p 193 (when (not (featurep 'xemacs))
194 (easy-menu-define eudc-hotlist-emacs-menu 194 (easy-menu-define eudc-hotlist-emacs-menu
195 eudc-hotlist-mode-map 195 eudc-hotlist-mode-map
196 "" 196 ""
197 eudc-hotlist-menu)) 197 eudc-hotlist-menu))
198 198
199 ;;; arch-tag: 9b633ab3-6a6e-4b46-b12e-d96739a7e0e8 199 ;;; arch-tag: 9b633ab3-6a6e-4b46-b12e-d96739a7e0e8
200 ;;; eudc-hotlist.el ends here 200 ;;; eudc-hotlist.el ends here