1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
|
;;; dgnushack-xemacs.el --- a version of dgnushack.el for XEmacs package
(defalias 'facep 'ignore)
(defalias 'device-sound-enabled-p 'ignore)
(defalias 'play-sound-file 'ignore)
(defalias 'nndb-request-article 'ignore)
(defalias 'efs-re-read-dir 'ignore)
(defalias 'ange-ftp-re-read-dir 'ignore)
(defalias 'define-mail-user-agent 'ignore)
(eval-and-compile
(when (featurep 'xemacs)
;; XEmacs 21.1 needs some extra hand holding
(when (eq emacs-minor-version 1)
(autoload 'custom-declare-face "cus-face" nil t)
(autoload 'cl-compile-time-init "cl-macs" nil t)
(autoload 'defadvice "advice" nil nil 'macro))
(unless (fboundp 'defadvice)
(autoload 'defadvice "advice" nil nil 'macro))
(autoload 'Info-directory "info" nil t)
(autoload 'Info-menu "info" nil t)
(autoload 'annotations-at "annotations")
(autoload 'apropos "apropos" nil t)
(autoload 'apropos-command "apropos" nil t)
(autoload 'bbdb-complete-name "bbdb-com" nil t)
(autoload 'browse-url "browse-url" nil t)
(autoload 'customize-apropos "cus-edit" nil t)
(autoload 'customize-save-variable "cus-edit" nil t)
(autoload 'customize-variable "cus-edit" nil t)
(autoload 'delete-annotation "annotations")
(autoload 'dolist "cl-macs" nil nil 'macro)
(autoload 'enriched-decode "enriched")
(autoload 'info "info" nil t)
(autoload 'make-annotation "annotations")
(autoload 'make-display-table "disp-table")
(autoload 'pp "pp")
(autoload 'ps-despool "ps-print" nil t)
(autoload 'ps-spool-buffer "ps-print" nil t)
(autoload 'ps-spool-buffer-with-faces "ps-print" nil t)
(autoload 'read-passwd "passwd")
(autoload 'regexp-opt "regexp-opt")
(autoload 'reporter-submit-bug-report "reporter")
(if (emacs-version>= 21 5)
(autoload 'setenv "process" nil t)
(autoload 'setenv "env" nil t))
(autoload 'smtpmail-send-it "smtpmail")
(autoload 'sort-numeric-fields "sort" nil t)
(autoload 'sort-subr "sort")
(autoload 'trace-function-background "trace" nil t)
(autoload 'w3-do-setup "w3")
(autoload 'w3-prepare-buffer "w3-display")
(autoload 'w3-region "w3-display" nil t)
(defalias 'match-string-no-properties 'match-string)
(defalias 'frame-char-height 'frame-height)
(defalias 'frame-char-width 'frame-width)
(defalias 'frame-parameter 'frame-property)
(defalias 'make-overlay 'ignore)
(defalias 'overlay-end 'ignore)
(defalias 'overlay-get 'ignore)
(defalias 'overlay-put 'ignore)
(defalias 'overlay-start 'ignore)
(defalias 'overlays-in 'ignore)
(defalias 'replace-dehighlight 'ignore)
(defalias 'replace-highlight 'ignore)
(defalias 'w3-coding-system-for-mime-charset 'ignore)))
;;; dgnushack-xemacs.el ends here
|