dgnushack.el (define-compiler-macro): Add autoload for XEmacs 21.4 and SXEmacs
[gnus] / lisp / dgnushack.el
1 ;;; dgnushack.el --- a hack to set the load path for byte-compiling
2 ;; Copyright (C) 1994-2012 Free Software Foundation, Inc.
3
4 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
5 ;; Version: 4.19
6 ;; Keywords: news, path
7
8 ;; This file is part of GNU Emacs.
9
10 ;; GNU Emacs is free software; you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation; either version 3, or (at your option)
13 ;; any later version.
14
15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 ;; GNU General Public License for more details.
19
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
22
23 ;;; Commentary:
24
25 ;;; Code:
26
27 (defvar dgnushack-default-load-path (copy-sequence load-path))
28
29 (defalias 'facep 'ignore)
30
31 (require 'cl)
32 (require 'iswitchb)
33
34 (condition-case nil
35     (require 'org-entities)
36   (error nil))
37
38 (defvar srcdir (or (getenv "srcdir") "."))
39 (defvar loaddir (and load-file-name (file-name-directory load-file-name)))
40
41 (defun my-getenv (str)
42   (let ((val (getenv str)))
43     (if (equal val "no") nil val)))
44
45 (if (my-getenv "lispdir")
46     (push (my-getenv "lispdir") load-path))
47
48 (push (or (my-getenv "URLDIR") (expand-file-name "../../url/lisp/" loaddir))
49       load-path)
50
51 (push (or (my-getenv "W3DIR") (expand-file-name "../../w3/lisp/" loaddir))
52       load-path)
53
54 ;(push "/usr/share/emacs/site-lisp" load-path)
55
56 ;; If we are building w3 in a different directory than the source
57 ;; directory, we must read *.el from source directory and write *.elc
58 ;; into the building directory.  For that, we define this function
59 ;; before loading bytecomp.  Bytecomp doesn't overwrite this function.
60 (defun byte-compile-dest-file (filename)
61   "Convert an Emacs Lisp source file name to a compiled file name.
62  In addition, remove directory name part from FILENAME."
63   (setq filename (byte-compiler-base-file-name filename))
64   (setq filename (file-name-sans-versions filename))
65   (setq filename (file-name-nondirectory filename))
66   (if (eq system-type 'windows-nt)
67       (setq filename (downcase filename)))
68   (cond ((eq system-type 'vax-vms)
69          (concat (substring filename 0 (string-match ";" filename)) "c"))
70         ((string-match emacs-lisp-file-regexp filename)
71          (concat (substring filename 0 (match-beginning 0)) ".elc"))
72         (t (concat filename ".elc"))))
73
74 (require 'bytecomp)
75 ;; To avoid having defsubsts and inlines happen.
76 ;(if (featurep 'xemacs)
77 ;    (require 'byte-optimize)
78 ;  (require 'byte-opt))
79 ;(defun byte-optimize-inline-handler (form)
80 ;  "byte-optimize-handler for the `inline' special-form."
81 ;  (cons 'progn (cdr form)))
82 ;(defalias 'byte-compile-file-form-defsubst 'byte-compile-file-form-defun)
83
84 ;; Work around for an incompatibility (XEmacs 21.4 vs. 21.5), see the
85 ;; following threads:
86 ;;
87 ;; http://thread.gmane.org/gmane.emacs.gnus.general/56414
88 ;; Subject: attachment problems found but not fixed
89 ;;
90 ;; http://thread.gmane.org/gmane.emacs.gnus.general/56459
91 ;; Subject: Splitting mail -- XEmacs 21.4 vs 21.5
92 ;;
93 ;; http://thread.gmane.org/gmane.emacs.xemacs.beta/20519
94 ;; Subject: XEmacs 21.5 and Gnus fancy splitting.
95 ;;
96 ;; Should be fixed in XEmacs (March 2007).
97 ;; http://thread.gmane.org/gmane.emacs.xemacs.patches/8124
98 ;; When should we remove this workaround?
99 ;;
100 (when (and (featurep 'xemacs)
101            (let ((table (copy-syntax-table emacs-lisp-mode-syntax-table)))
102              (modify-syntax-entry ?= " " table)
103              (with-temp-buffer
104                (with-syntax-table table
105                  (insert "foo=bar")
106                  (goto-char (point-min))
107                  (forward-sexp 1)
108                  (eolp)))))
109   ;; The original `with-syntax-table' uses `copy-syntax-table' which
110   ;; doesn't seem to copy modified syntax entries in old XEmacs 21.5.
111   (defmacro with-syntax-table (syntab &rest body)
112     "Evaluate BODY with the SYNTAB as the current syntax table."
113     `(let ((stab (syntax-table)))
114        (unwind-protect
115            (progn
116              ;;(set-syntax-table (copy-syntax-table ,syntab))
117              (set-syntax-table ,syntab)
118              ,@body)
119          (set-syntax-table stab)))))
120
121 (push srcdir load-path)
122 (push loaddir load-path)
123 (load (expand-file-name "lpath.el" loaddir) nil t)
124
125 (defalias 'device-sound-enabled-p 'ignore)
126 (defalias 'play-sound-file 'ignore)
127 (defalias 'efs-re-read-dir 'ignore)
128 (defalias 'ange-ftp-re-read-dir 'ignore)
129 (defalias 'define-mail-user-agent 'ignore)
130 (defalias 'debbugs-gnu-summary-mode 'ignore)
131 (defvar debbugs-gnu-bug-number nil)
132
133 (eval-and-compile
134   (unless (featurep 'xemacs)
135     (defalias 'get-popup-menu-response 'ignore)
136     (defalias 'event-object 'ignore)
137     (autoload 'iswitchb-read-buffer "iswitchb")
138     (autoload 'netrc-credentials "netrc")
139     (defalias 'x-defined-colors 'ignore)
140     (defalias 'read-color 'ignore)))
141
142 (eval-and-compile
143   (when (featurep 'xemacs)
144     (defvar window-point-insertion-type nil)
145     (unless (fboundp 'defadvice)
146       (autoload 'defadvice "advice" nil nil 'macro))
147     (unless (boundp 'help-echo-owns-message)
148       (defvar help-echo-owns-message))
149     (unless (boundp 'gnus-registry-enabled)
150       (defvar gnus-registry-enabled nil))
151     (unless (boundp 'mail-dont-reply-to-names)
152       (defvar mail-dont-reply-to-names nil))
153     (unless (fboundp 'url-retrieve-synchronously)
154       (defalias 'url-retrieve-synchronously 'url-retrieve))
155     (unless (fboundp 'url-queue-retrieve)
156       (defun url-queue-retrieve (url callback &optional cbargs silent
157                                      inhibit-cookies)
158         (url-retrieve url callback cbargs)))
159     (autoload 'Info-directory "info" nil t)
160     (autoload 'Info-index "info" nil t)
161     (autoload 'Info-index-next "info" nil t)
162     (autoload 'Info-menu "info" nil t)
163     (autoload 'ad-add-advice "advice")
164     (unless (and (emacs-version>= 21 5)
165                  (not (featurep 'sxemacs)))
166       ;; calendar/auto-autoloads.el provides it.
167       (autoload 'add-to-invisibility-spec "dummy"))
168     (autoload 'annotations-at "annotations")
169     (autoload 'apropos "apropos" nil t)
170     (autoload 'apropos-command "apropos" nil t)
171     (autoload 'bbdb-complete-name "bbdb-com" nil t)
172     (autoload 'browse-url "browse-url" nil t)
173     (autoload 'browse-url-of-file "browse-url" nil t)
174     (autoload 'c-mode "cc-mode" nil t)
175     (autoload 'customize-apropos "cus-edit" nil t)
176     (autoload 'customize-group "cus-edit" nil t)
177     (autoload 'customize-save-variable "cus-edit" nil t)
178     (autoload 'customize-set-variable "cus-edit" nil t)
179     (autoload 'customize-variable "cus-edit" nil t)
180     (autoload 'debug "debug" nil t)
181     (autoload 'define-compiler-macro "cl-macs" nil nil 'macro)
182     (autoload 'sha1 "sha1")
183     (if (featurep 'mule)
184         (unless (locate-library "mule-ccl")
185           (autoload 'define-ccl-program "ccl" nil nil 'macro))
186       (defalias 'define-ccl-program 'ignore))
187     (autoload 'delete-annotation "annotations")
188     (autoload 'dolist "cl-macs" nil nil 'macro)
189     (autoload 'enriched-decode "enriched")
190     (autoload 'eudc-expand-inline "eudc" nil t)
191     (autoload 'executable-find "executable")
192     (autoload 'font-lock-fontify-buffer "font-lock" nil t)
193     (when (and (emacs-version>= 21 5)
194                (not (featurep 'sxemacs)))
195       (autoload 'get-display-table "disp-table")
196       (autoload 'put-display-table "disp-table"))
197     (autoload 'info "info" nil t)
198     (autoload 'mail-extract-address-components "mail-extr")
199     (autoload 'mail-fetch-field "mail-utils")
200     (autoload 'make-annotation "annotations")
201     (autoload 'make-display-table "disp-table")
202     (autoload 'pp "pp")
203     (autoload 'ps-despool "ps-print" nil t)
204     (autoload 'ps-spool-buffer "ps-print" nil t)
205     (autoload 'ps-spool-buffer-with-faces "ps-print" nil t)
206     (autoload 'read-passwd "passwd")
207     (autoload 'regexp-opt "regexp-opt")
208     (autoload 'reporter-submit-bug-report "reporter")
209     (if (condition-case nil
210             (progn
211               (require 'rot13)
212               (not (fboundp 'rot13-string)))
213           (error nil))
214         (defmacro rot13-string (string)
215           "Return ROT13 encryption of STRING."
216           `(let ((string ,string))
217              (with-temp-buffer
218                (insert string)
219                (translate-region (point-min) (point-max) ,rot13-display-table)
220                (buffer-string)))))
221     (if (and (emacs-version>= 21 5)
222              (not (featurep 'sxemacs)))
223         (autoload 'setenv "process" nil t)
224       (autoload 'setenv "env" nil t))
225     (autoload 'sgml-mode "psgml" nil t)
226     (autoload 'smtpmail-send-it "smtpmail")
227     (autoload 'sort-numeric-fields "sort" nil t)
228     (autoload 'sort-subr "sort")
229     (autoload 'thing-at-point "thingatpt")
230     (autoload 'toggle-truncate-lines "view-less" nil t)
231     (autoload 'trace-function-background "trace" nil t)
232     (autoload 'unmorse-region "morse" nil t)
233     (autoload 'w3-do-setup "w3")
234     (autoload 'w3-prepare-buffer "w3-display")
235     (autoload 'w3-region "w3-display" nil t)
236     (defalias 'frame-char-height 'frame-height)
237     (defalias 'frame-char-width 'frame-width)
238     (defalias 'frame-parameter 'frame-property)
239     (defalias 'make-overlay 'ignore)
240     (defalias 'overlay-end 'ignore)
241     (defalias 'overlay-get 'ignore)
242     (defalias 'overlay-put 'ignore)
243     (defalias 'overlay-start 'ignore)
244     (defalias 'overlays-in 'ignore)
245     (defalias 'replace-dehighlight 'ignore)
246     (defalias 'replace-highlight 'ignore)
247     (defalias 'gnutls-available-p 'ignore)
248     (defvar timer-list nil)
249     (defvar scroll-margin 0)
250     (defalias 'w3-coding-system-for-mime-charset 'ignore)))
251
252 (defun dgnushack-emacs-compile-defcustom-p ()
253   "Return non-nil if Emacs byte compiles `defcustom' forms.
254 Those Emacsen will warn against undefined variables and functions used
255 in `defcustom' forms."
256   (let ((outbuf (with-temp-buffer
257                   (insert "(defcustom foo (1+ (random)) \"\" :group 'emacs)\n")
258                   (byte-compile-from-buffer (current-buffer) "foo.el"))))
259     (when outbuf
260       (prog1
261           (with-current-buffer outbuf
262             (goto-char (point-min))
263             (search-forward " 'foo '(byte-code " nil t))
264         (kill-buffer outbuf)))))
265
266 (when (and (featurep 'xemacs)
267            (dgnushack-emacs-compile-defcustom-p))
268   (maybe-fbind '(defined-colors face-attribute))
269   (maybe-bind '(idna-program installation-directory)))
270
271 (when (featurep 'xemacs)
272   (defadvice byte-optimize-apply (before use-mapcan (form) activate)
273     "Replace (apply 'nconc (mapcar ...)) with (mapcan ...)."
274     (let ((last (nth (1- (length form)) form)))
275       (when (and (eq last (third form))
276                  (consp last)
277                  (eq 'mapcar (car last))
278                  (equal (nth 1 form) ''nconc))
279         (setq form (cons 'mapcan (cdr last)))))))
280
281 (defun dgnushack-compile-verbosely ()
282   "Call dgnushack-compile with warnings ENABLED.  If you are compiling
283 patches to gnus, you should consider modifying make.bat to call
284 dgnushack-compile-verbosely.  All other users should continue to use
285 dgnushack-compile."
286   (dgnushack-compile t))
287
288 (defun dgnushack-compile-error-on-warn ()
289   "Call dgnushack-compile with minimal warnings, but with error-on-warn ENABLED.
290 This means that every warning will be reported as an error."
291   (unless (dgnushack-compile nil t)
292     (error "Error during byte compilation (warnings were reported as errors!).")))
293
294 (defun dgnushack-compile (&optional warn error-on-warn)
295   ;;(setq byte-compile-dynamic t)
296   (unless warn
297     (setq byte-compile-warnings
298           '(free-vars unresolved callargs redefine suspicious)))
299   (let ((files (directory-files srcdir nil "^[^=].*\\.el$"))
300         (compilesuccess t)
301         ;;(byte-compile-generate-call-tree t)
302         file elc)
303     ;; Avoid barfing (from gnus-xmas) because the etc directory is not yet
304     ;; installed.
305     (when (featurep 'xemacs)
306       (setq gnus-xmas-glyph-directory "dummy"))
307     (dolist (file '(".dir-locals.el" "dgnushack.el" "lpath.el"))
308       (setq files (delete file files)))
309     (when (featurep 'base64)
310       (setq files (delete "base64.el" files)))
311     (condition-case code
312         (require 'w3-parse)
313       (error
314        (message "No w3: %s %s" (cadr code) (or (locate-library "w3-parse") ""))
315        (dolist (file '("webmail.el" "nnwfm.el"))
316          (setq files (delete file files)))))
317     (condition-case code
318         ;; Under XEmacs 21.4 this loads easy-mmode.elc that provides
319         ;; the Emacs functions `propertize' and `replace-regexp-in-string'.
320         (require 'mh-e)
321       (error
322        (message "No mh-e: %s %s" (cadr code) (or (locate-library "mh-e") ""))
323        (setq files (delete "gnus-mh.el" files))))
324     (condition-case code
325         (require 'xml)
326       (error
327        (message "No xml: %s %s" (cadr code) (or (locate-library "xml") ""))
328        (setq files (delete "nnrss.el" files))))
329     (dolist (file
330              (if (featurep 'xemacs)
331                  '("md5.el")
332                '("gnus-xmas.el" "messagexmas.el" "nnheaderxm.el")))
333       (setq files (delete file files)))
334     (unless (and (fboundp 'libxml-parse-html-region)
335                  ;; lpath.el binds it.
336                  (not (eq (symbol-function 'libxml-parse-html-region)
337                           'ignore)))
338       (dolist (file '("color.el" "shr-color.el" "shr.el"))
339         (setq files (delete file files))))
340     (unless (locate-library "epg")
341       (setq files (delete "plstore.el" files)))
342
343     (dolist (file files)
344       (setq file (expand-file-name file srcdir))
345       (when (and (file-exists-p
346                   (setq elc (concat (file-name-nondirectory file) "c")))
347                  (file-newer-than-file-p file elc))
348         (delete-file elc)))
349
350     (while (setq file (pop files))
351       (setq file (expand-file-name file srcdir))
352       (when (or (not (file-exists-p
353                       (setq elc (concat (file-name-nondirectory file) "c"))))
354                 (file-newer-than-file-p file elc))
355         (if error-on-warn
356             (let ((byte-compile-error-on-warn t))
357               (unless (ignore-errors
358                         (byte-compile-file file))
359                 (setq compilesuccess nil)))
360           (ignore-errors
361             (byte-compile-file file)))))
362     compilesuccess))
363
364 (defun dgnushack-recompile ()
365   (require 'gnus)
366   (byte-recompile-directory "." 0))
367
368 (defvar dgnushack-gnus-load-file
369   (if (featurep 'xemacs)
370       (expand-file-name "auto-autoloads.el")
371     (expand-file-name "gnus-load.el")))
372
373 (defvar dgnushack-cus-load-file
374   (if (featurep 'xemacs)
375       (expand-file-name "custom-load.el")
376     (expand-file-name "cus-load.el")))
377
378 (defun dgnushack-make-cus-load ()
379   (load "cus-dep")
380   (let ((cusload-base-file dgnushack-cus-load-file))
381     (defadvice directory-files (after exclude-dir-locals activate)
382       "Exclude .dir-locals.el file."
383       (dolist (file ad-return-value)
384         (if (string-match "\\(?:\\`\\|/\\)\\.dir-locals\\.el\\'" file)
385             (setq ad-return-value (delete file ad-return-value)))))
386     (unwind-protect
387         (if (fboundp 'custom-make-dependencies)
388             (custom-make-dependencies)
389           (Custom-make-dependencies))
390       (ad-unadvise 'directory-files))
391     (when (featurep 'xemacs)
392       (message "Compiling %s..." dgnushack-cus-load-file)
393       (byte-compile-file dgnushack-cus-load-file))))
394
395 (defun dgnushack-make-auto-load ()
396   (require 'autoload)
397   (let ((generated-autoload-file dgnushack-gnus-load-file)
398         (make-backup-files nil)
399         (autoload-package-name "gnus"))
400     (if (featurep 'xemacs)
401         (if (file-exists-p generated-autoload-file)
402             (delete-file generated-autoload-file))
403       (with-temp-file generated-autoload-file
404         (insert ?\014)))
405     (defadvice directory-files (after exclude-dir-locals activate)
406       "Exclude .dir-locals.el file."
407       (dolist (file ad-return-value)
408         (if (string-match "\\(?:\\`\\|/\\)\\.dir-locals\\.el\\'" file)
409             (setq ad-return-value (delete file ad-return-value)))))
410     (unwind-protect
411         (batch-update-autoloads)
412       (ad-unadvise 'directory-files))))
413
414 (defun dgnushack-make-load ()
415   (unless (featurep 'xemacs)
416     (message "Generating %s..." dgnushack-gnus-load-file)
417     (with-temp-file dgnushack-gnus-load-file
418       (insert-file-contents dgnushack-cus-load-file)
419       (delete-file dgnushack-cus-load-file)
420       (goto-char (point-min))
421       (search-forward ";;; Code:")
422       (forward-line)
423       (delete-region (point-min) (point))
424       (insert "\
425 ;;; gnus-load.el --- automatically extracted custom dependencies and autoload
426 ;;
427 ;;; Code:
428 ")
429       (goto-char (point-max))
430       (if (search-backward "custom-versions-load-alist" nil t)
431           (forward-line -1)
432         (forward-line -1)
433         (while (eq (char-after) ?\;)
434           (forward-line -1))
435         (forward-line))
436       (delete-region (point) (point-max))
437       (insert "\n")
438       ;; smiley-* are duplicated. Remove them all.
439       (let ((point (point)))
440         (insert-file-contents dgnushack-gnus-load-file)
441         (goto-char point)
442         (while (search-forward "smiley-" nil t)
443           (beginning-of-line)
444           (if (looking-at "(autoload ")
445               (delete-region (point) (progn (forward-sexp) (point)))
446             (forward-line))))
447       ;;
448       (goto-char (point-max))
449       (when (search-backward "\n(provide " nil t)
450         (forward-line -1)
451         (delete-region (point) (point-max)))
452       (insert "\
453
454 \(provide 'gnus-load)
455
456 ;;; Local Variables:
457 ;;; version-control: never
458 ;;; no-byte-compile: t
459 ;;; no-update-autoloads: t
460 ;;; End:
461 ;;; gnus-load.el ends here
462 ")
463       ))
464   (message "Compiling %s..." dgnushack-gnus-load-file)
465   (byte-compile-file dgnushack-gnus-load-file)
466   (when (featurep 'xemacs)
467     (message "Creating dummy gnus-load.el...")
468     (with-temp-file (expand-file-name "gnus-load.el")
469       (insert "\
470
471 \(provide 'gnus-load)
472
473 ;;; Local Variables:
474 ;;; version-control: never
475 ;;; no-byte-compile: t
476 ;;; no-update-autoloads: t
477 ;;; End:
478 ;;; gnus-load.el ends here"))))
479
480 (defun dgnushack-find-lisp-shadows (&optional lispdir)
481   "Return a list of directories in which other Gnus installations exist.
482 This function looks for the other Gnus installations which will shadow
483 the new Gnus Lisp modules which have been installed in LISPDIR, using
484 the default `load-path'.  The return value will make sense only when
485 LISPDIR is existent and is listed in the default `load-path'.  Assume
486 LISPDIR will be prepended to `load-path' by a user if the default
487 `load-path' does not contain it."
488   (unless lispdir
489     (setq lispdir (getenv "lispdir")))
490   (when (and lispdir (file-directory-p lispdir))
491     (setq lispdir (file-truename (directory-file-name lispdir)))
492     (let ((indices '("gnus.elc" "gnus.el" "gnus.el.bz2" "gnus.el.gz"
493                      "message.elc" "message.el" "message.el.bz2"
494                      "message.el.gz"))
495           (path (delq nil (mapcar
496                            (lambda (p)
497                              (condition-case nil
498                                  (when (and p (file-directory-p p))
499                                    (file-truename (directory-file-name p)))
500                                (error nil)))
501                            dgnushack-default-load-path)))
502           rest elcs)
503       (while path
504         (setq rest (cons (car path) rest)
505               path (delete (car rest) (cdr path))))
506       (setq path (nreverse (cdr (member lispdir rest)))
507             rest nil)
508       (while path
509         (setq elcs indices)
510         (while elcs
511           (when (file-exists-p (expand-file-name (pop elcs) (car path)))
512             (setq rest (cons (car path) rest)
513                   elcs nil)))
514         (setq path (cdr path)))
515       (prog1
516           (setq path (nreverse rest))
517         (when path
518           (let (print-level print-length)
519             (princ (concat "\n\
520 WARNING: The other Gnus installation" (if (cdr path) "s have" " has") "\
521  been detected in:\n\n  " (mapconcat 'identity path "\n  ") "\n\n\
522 You will need to modify the run-time `load-path', remove them manually,
523 or remove them using `make remove-installed-shadows'.\n\n"))))))))
524
525 (defun dgnushack-remove-lisp-shadows (&optional lispdir)
526   "Remove the other Gnus installations which shadow the recent one."
527   (let ((path (with-temp-buffer
528                 (let ((standard-output (current-buffer)))
529                   (dgnushack-find-lisp-shadows lispdir))))
530         elcs files shadows file)
531     (when path
532       (unless (setq elcs (directory-files srcdir nil "\\.elc\\'"))
533         (error "You should build .elc files first."))
534       (setq files
535             (apply
536              'append
537              (mapcar
538               (lambda (el)
539                 (list (concat el "c") el (concat el ".bz2") (concat el ".gz")))
540               (append
541                (list (file-name-nondirectory dgnushack-gnus-load-file)
542                      (file-name-nondirectory dgnushack-cus-load-file))
543                (mapcar (lambda (elc) (substring elc 0 -1)) elcs)))))
544       (while path
545         (setq shadows files)
546         (while shadows
547           (setq file (expand-file-name (pop shadows) (car path)))
548           (when (file-exists-p file)
549             (princ (concat "  Removing " file "..."))
550             (condition-case nil
551                 (progn
552                   (delete-file file)
553                   (princ "done\n"))
554               (error (princ "failed\n")))))
555         (setq path (cdr path))))))
556
557 (unless (fboundp 'with-demoted-errors)
558   (defmacro with-demoted-errors (&rest body)
559     "Run BODY and demote any errors to simple messages.
560 If `debug-on-error' is non-nil, run BODY without catching its errors.
561 This is to be used around code which is not expected to signal an error
562 but which should be robust in the unexpected case that an error is signaled."
563     (declare (debug t) (indent 0))
564     (let ((err (make-symbol "err")))
565       `(condition-case ,err
566            (progn ,@body)
567          (error (message "Error: %S" ,err) nil)))))
568
569 ;; XEmacs's `define-obsolete-variable-alias' takes only two arguments:
570 ;; (define-obsolete-variable-alias OLDVAR NEWVAR)
571 (condition-case nil
572     (progn
573       (defvar dgnushack-obsolete-name nil)
574       (defvar dgnushack-current-name nil)
575       (unwind-protect
576           (define-obsolete-variable-alias
577             'dgnushack-obsolete-name 'dgnushack-current-name "0")
578         (makunbound 'dgnushack-obsolete-name)
579         (makunbound 'dgnushack-current-name)))
580   (wrong-number-of-arguments
581    (defadvice define-obsolete-variable-alias (around ignore-rest-args
582                                                      (oldvar newvar &rest args)
583                                                      activate)
584      "Ignore arguments other than the 1st and the 2nd ones."
585      (ad-Orig-define-obsolete-variable-alias oldvar newvar))
586    (define-compiler-macro
587      define-obsolete-variable-alias (oldvar newvar &rest args)
588      `(funcall ,(symbol-function 'ad-Orig-define-obsolete-variable-alias)
589                ,oldvar ,newvar))))
590
591 ;;; dgnushack.el ends here