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