* gnus-compat.el (gnus-compat): Declare `declare-function' only here
[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     (autoload 'Info-directory "info" nil t)
157     (autoload 'Info-index "info" nil t)
158     (autoload 'Info-index-next "info" nil t)
159     (autoload 'Info-menu "info" nil t)
160     (autoload 'ad-add-advice "advice")
161     (unless (and (emacs-version>= 21 5)
162                  (not (featurep 'sxemacs)))
163       ;; calendar/auto-autoloads.el provides it.
164       (autoload 'add-to-invisibility-spec "dummy"))
165     (autoload 'annotations-at "annotations")
166     (autoload 'apropos "apropos" nil t)
167     (autoload 'apropos-command "apropos" nil t)
168     (autoload 'bbdb-complete-name "bbdb-com" nil t)
169     (autoload 'browse-url "browse-url" nil t)
170     (autoload 'browse-url-of-file "browse-url" nil t)
171     (autoload 'c-mode "cc-mode" nil t)
172     (autoload 'customize-apropos "cus-edit" nil t)
173     (autoload 'customize-group "cus-edit" nil t)
174     (autoload 'customize-save-variable "cus-edit" nil t)
175     (autoload 'customize-set-variable "cus-edit" nil t)
176     (autoload 'customize-variable "cus-edit" nil t)
177     (autoload 'debug "debug" nil t)
178     (autoload 'sha1 "sha1")
179     (if (featurep 'mule)
180         (unless (locate-library "mule-ccl")
181           (autoload 'define-ccl-program "ccl" nil nil 'macro))
182       (defalias 'define-ccl-program 'ignore))
183     (autoload 'delete-annotation "annotations")
184     (autoload 'dolist "cl-macs" nil nil 'macro)
185     (autoload 'enriched-decode "enriched")
186     (autoload 'eudc-expand-inline "eudc" nil t)
187     (autoload 'executable-find "executable")
188     (autoload 'font-lock-fontify-buffer "font-lock" nil t)
189     (when (and (emacs-version>= 21 5)
190                (not (featurep 'sxemacs)))
191       (autoload 'get-display-table "disp-table")
192       (autoload 'put-display-table "disp-table"))
193     (autoload 'info "info" nil t)
194     (autoload 'mail-extract-address-components "mail-extr")
195     (autoload 'mail-fetch-field "mail-utils")
196     (autoload 'make-annotation "annotations")
197     (autoload 'make-display-table "disp-table")
198     (autoload 'pp "pp")
199     (autoload 'ps-despool "ps-print" nil t)
200     (autoload 'ps-spool-buffer "ps-print" nil t)
201     (autoload 'ps-spool-buffer-with-faces "ps-print" nil t)
202     (autoload 'read-passwd "passwd")
203     (autoload 'regexp-opt "regexp-opt")
204     (autoload 'reporter-submit-bug-report "reporter")
205     (if (condition-case nil
206             (progn
207               (require 'rot13)
208               (not (fboundp 'rot13-string)))
209           (error nil))
210         (defmacro rot13-string (string)
211           "Return ROT13 encryption of STRING."
212           `(let ((string ,string))
213              (with-temp-buffer
214                (insert string)
215                (translate-region (point-min) (point-max) ,rot13-display-table)
216                (buffer-string)))))
217     (if (and (emacs-version>= 21 5)
218              (not (featurep 'sxemacs)))
219         (autoload 'setenv "process" nil t)
220       (autoload 'setenv "env" nil t))
221     (autoload 'sgml-mode "psgml" nil t)
222     (autoload 'smtpmail-send-it "smtpmail")
223     (autoload 'sort-numeric-fields "sort" nil t)
224     (autoload 'sort-subr "sort")
225     (autoload 'thing-at-point "thingatpt")
226     (autoload 'toggle-truncate-lines "view-less" nil t)
227     (autoload 'trace-function-background "trace" nil t)
228     (autoload 'unmorse-region "morse" nil t)
229     (defalias 'frame-char-height 'frame-height)
230     (defalias 'frame-char-width 'frame-width)
231     (defalias 'frame-parameter 'frame-property)
232     (defalias 'make-overlay 'ignore)
233     (defalias 'overlay-end 'ignore)
234     (defalias 'overlay-get 'ignore)
235     (defalias 'overlay-put 'ignore)
236     (defalias 'overlay-start 'ignore)
237     (defalias 'overlays-in 'ignore)
238     (defalias 'replace-dehighlight 'ignore)
239     (defalias 'replace-highlight 'ignore)
240     (defalias 'gnutls-available-p 'ignore)
241     (defvar timer-list nil)
242     (defvar scroll-margin 0)))
243
244 (defun dgnushack-emacs-compile-defcustom-p ()
245   "Return non-nil if Emacs byte compiles `defcustom' forms.
246 Those Emacsen will warn against undefined variables and functions used
247 in `defcustom' forms."
248   (let ((outbuf (with-temp-buffer
249                   (insert "(defcustom foo (1+ (random)) \"\" :group 'emacs)\n")
250                   (byte-compile-from-buffer (current-buffer) "foo.el"))))
251     (when outbuf
252       (prog1
253           (with-current-buffer outbuf
254             (goto-char (point-min))
255             (search-forward " 'foo '(byte-code " nil t))
256         (kill-buffer outbuf)))))
257
258 (when (and (featurep 'xemacs)
259            (dgnushack-emacs-compile-defcustom-p))
260   (maybe-fbind '(defined-colors face-attribute))
261   (maybe-bind '(idna-program installation-directory)))
262
263 (when (featurep 'xemacs)
264   (defadvice byte-optimize-apply (before use-mapcan (form) activate)
265     "Replace (apply 'nconc (mapcar ...)) with (mapcan ...)."
266     (let ((last (nth (1- (length form)) form)))
267       (when (and (eq last (third form))
268                  (consp last)
269                  (eq 'mapcar (car last))
270                  (equal (nth 1 form) ''nconc))
271         (setq form (cons 'mapcan (cdr last)))))))
272
273 (defun dgnushack-compile-verbosely ()
274   "Call dgnushack-compile with warnings ENABLED.  If you are compiling
275 patches to gnus, you should consider modifying make.bat to call
276 dgnushack-compile-verbosely.  All other users should continue to use
277 dgnushack-compile."
278   (dgnushack-compile t))
279
280 (defun dgnushack-compile-error-on-warn ()
281   "Call dgnushack-compile with minimal warnings, but with error-on-warn ENABLED.
282 This means that every warning will be reported as an error."
283   (unless (dgnushack-compile nil t)
284     (error "Error during byte compilation (warnings were reported as errors!).")))
285
286 (defun dgnushack-compile (&optional warn error-on-warn)
287   ;;(setq byte-compile-dynamic t)
288   (unless warn
289     (setq byte-compile-warnings
290           '(free-vars unresolved callargs redefine suspicious)))
291   (let ((files (directory-files srcdir nil "^[^=].*\\.el$"))
292         (compilesuccess t)
293         ;;(byte-compile-generate-call-tree t)
294         file elc)
295     ;; Avoid barfing (from gnus-xmas) because the etc directory is not yet
296     ;; installed.
297     (when (featurep 'xemacs)
298       (setq gnus-xmas-glyph-directory "dummy"))
299     (dolist (file '(".dir-locals.el" "dgnushack.el" "lpath.el"))
300       (setq files (delete file files)))
301     (when (featurep 'base64)
302       (setq files (delete "base64.el" files)))
303     (condition-case code
304         ;; Under XEmacs 21.4 this loads easy-mmode.elc that provides
305         ;; the Emacs functions `propertize' and `replace-regexp-in-string'.
306         (require 'mh-e)
307       (error
308        (message "No mh-e: %s %s" (cadr code) (or (locate-library "mh-e") ""))
309        (setq files (delete "gnus-mh.el" files))))
310     (condition-case code
311         (require 'xml)
312       (error
313        (message "No xml: %s %s" (cadr code) (or (locate-library "xml") ""))
314        (setq files (delete "nnrss.el" files))))
315     (dolist (file
316              (if (featurep 'xemacs)
317                  '("md5.el")
318                '("gnus-xmas.el" "messagexmas.el" "nnheaderxm.el")))
319       (setq files (delete file files)))
320     (unless (and (fboundp 'libxml-parse-html-region)
321                  ;; lpath.el binds it.
322                  (not (eq (symbol-function 'libxml-parse-html-region)
323                           'ignore)))
324       (dolist (file '("color.el"))
325         (setq files (delete file files))))
326     (unless (locate-library "epg")
327       (setq files (delete "plstore.el" files)))
328     ;; Temporary code until we fix pcase and defmethod stuff.
329     (when (or (featurep 'xemacs)
330               (or (< emacs-major-version 24)
331                   (< emacs-minor-version 3)))
332       (setq files (delete "gnus-icalendar.el" files)))
333     (dolist (file files)
334       (setq file (expand-file-name file srcdir))
335       (when (and (file-exists-p
336                   (setq elc (concat (file-name-nondirectory file) "c")))
337                  (file-newer-than-file-p file elc))
338         (delete-file elc)))
339
340     (while (setq file (pop files))
341       (setq file (expand-file-name file srcdir))
342       (when (or (not (file-exists-p
343                       (setq elc (concat (file-name-nondirectory file) "c"))))
344                 (file-newer-than-file-p file elc))
345         (if error-on-warn
346             (let ((byte-compile-error-on-warn t))
347               (unless (ignore-errors
348                         (byte-compile-file file))
349                 (setq compilesuccess nil)))
350           (ignore-errors
351             (byte-compile-file file)))))
352     compilesuccess))
353
354 (defun dgnushack-recompile ()
355   (require 'gnus)
356   (byte-recompile-directory "." 0))
357
358 (defvar dgnushack-gnus-load-file
359   (if (featurep 'xemacs)
360       (expand-file-name "auto-autoloads.el")
361     (expand-file-name "gnus-load.el")))
362
363 (defvar dgnushack-cus-load-file
364   (if (featurep 'xemacs)
365       (expand-file-name "custom-load.el")
366     (expand-file-name "cus-load.el")))
367
368 (defun dgnushack-make-cus-load ()
369   (load "cus-dep")
370   (let ((cusload-base-file dgnushack-cus-load-file))
371     (defadvice directory-files (after exclude-dir-locals activate)
372       "Exclude .dir-locals.el file."
373       (dolist (file ad-return-value)
374         (if (string-match "\\(?:\\`\\|/\\)\\.dir-locals\\.el\\'" file)
375             (setq ad-return-value (delete file ad-return-value)))))
376     (unwind-protect
377         (if (fboundp 'custom-make-dependencies)
378             (custom-make-dependencies)
379           (Custom-make-dependencies))
380       (ad-unadvise 'directory-files))
381     (when (featurep 'xemacs)
382       (message "Compiling %s..." dgnushack-cus-load-file)
383       (byte-compile-file dgnushack-cus-load-file))))
384
385 (defun dgnushack-make-auto-load ()
386   (require 'autoload)
387   (let ((generated-autoload-file dgnushack-gnus-load-file)
388         (make-backup-files nil)
389         (autoload-package-name "gnus"))
390     (if (featurep 'xemacs)
391         (if (file-exists-p generated-autoload-file)
392             (delete-file generated-autoload-file))
393       (with-temp-file generated-autoload-file
394         (insert ?\014)))
395     (defadvice directory-files (after exclude-dir-locals activate)
396       "Exclude .dir-locals.el file."
397       (dolist (file ad-return-value)
398         (if (string-match "\\(?:\\`\\|/\\)\\.dir-locals\\.el\\'" file)
399             (setq ad-return-value (delete file ad-return-value)))))
400     (unwind-protect
401         (batch-update-autoloads)
402       (ad-unadvise 'directory-files))))
403
404 (defun dgnushack-make-load ()
405   (unless (featurep 'xemacs)
406     (message "Generating %s..." dgnushack-gnus-load-file)
407     (with-temp-file dgnushack-gnus-load-file
408       (insert-file-contents dgnushack-cus-load-file)
409       (delete-file dgnushack-cus-load-file)
410       (goto-char (point-min))
411       (search-forward ";;; Code:")
412       (forward-line)
413       (delete-region (point-min) (point))
414       (insert "\
415 ;;; gnus-load.el --- automatically extracted custom dependencies and autoload
416 ;;
417 ;;; Code:
418 ")
419       (goto-char (point-max))
420       (if (search-backward "custom-versions-load-alist" nil t)
421           (forward-line -1)
422         (forward-line -1)
423         (while (eq (char-after) ?\;)
424           (forward-line -1))
425         (forward-line))
426       (delete-region (point) (point-max))
427       (insert "\n")
428       ;; smiley-* are duplicated. Remove them all.
429       (let ((point (point)))
430         (insert-file-contents dgnushack-gnus-load-file)
431         (goto-char point)
432         (while (search-forward "smiley-" nil t)
433           (beginning-of-line)
434           (if (looking-at "(autoload ")
435               (delete-region (point) (progn (forward-sexp) (point)))
436             (forward-line))))
437       ;;
438       (goto-char (point-max))
439       (when (search-backward "\n(provide " nil t)
440         (forward-line -1)
441         (delete-region (point) (point-max)))
442       (insert "\
443
444 \(provide 'gnus-load)
445
446 ;;; Local Variables:
447 ;;; version-control: never
448 ;;; no-byte-compile: t
449 ;;; no-update-autoloads: t
450 ;;; End:
451 ;;; gnus-load.el ends here
452 ")
453       ))
454   (message "Compiling %s..." dgnushack-gnus-load-file)
455   (byte-compile-file dgnushack-gnus-load-file)
456   (when (featurep 'xemacs)
457     (message "Creating dummy gnus-load.el...")
458     (with-temp-file (expand-file-name "gnus-load.el")
459       (insert "\
460
461 \(provide 'gnus-load)
462
463 ;;; Local Variables:
464 ;;; version-control: never
465 ;;; no-byte-compile: t
466 ;;; no-update-autoloads: t
467 ;;; End:
468 ;;; gnus-load.el ends here"))))
469
470 (defun dgnushack-find-lisp-shadows (&optional lispdir)
471   "Return a list of directories in which other Gnus installations exist.
472 This function looks for the other Gnus installations which will shadow
473 the new Gnus Lisp modules which have been installed in LISPDIR, using
474 the default `load-path'.  The return value will make sense only when
475 LISPDIR is existent and is listed in the default `load-path'.  Assume
476 LISPDIR will be prepended to `load-path' by a user if the default
477 `load-path' does not contain it."
478   (unless lispdir
479     (setq lispdir (getenv "lispdir")))
480   (when (and lispdir (file-directory-p lispdir))
481     (setq lispdir (file-truename (directory-file-name lispdir)))
482     (let ((indices '("gnus.elc" "gnus.el" "gnus.el.bz2" "gnus.el.gz"
483                      "message.elc" "message.el" "message.el.bz2"
484                      "message.el.gz"))
485           (path (delq nil (mapcar
486                            (lambda (p)
487                              (condition-case nil
488                                  (when (and p (file-directory-p p))
489                                    (file-truename (directory-file-name p)))
490                                (error nil)))
491                            dgnushack-default-load-path)))
492           rest elcs)
493       (while path
494         (setq rest (cons (car path) rest)
495               path (delete (car rest) (cdr path))))
496       (setq path (nreverse (cdr (member lispdir rest)))
497             rest nil)
498       (while path
499         (setq elcs indices)
500         (while elcs
501           (when (file-exists-p (expand-file-name (pop elcs) (car path)))
502             (setq rest (cons (car path) rest)
503                   elcs nil)))
504         (setq path (cdr path)))
505       (prog1
506           (setq path (nreverse rest))
507         (when path
508           (let (print-level print-length)
509             (princ (concat "\n\
510 WARNING: The other Gnus installation" (if (cdr path) "s have" " has") "\
511  been detected in:\n\n  " (mapconcat 'identity path "\n  ") "\n\n\
512 You will need to modify the run-time `load-path', remove them manually,
513 or remove them using `make remove-installed-shadows'.\n\n"))))))))
514
515 (defun dgnushack-remove-lisp-shadows (&optional lispdir)
516   "Remove the other Gnus installations which shadow the recent one."
517   (let ((path (with-temp-buffer
518                 (let ((standard-output (current-buffer)))
519                   (dgnushack-find-lisp-shadows lispdir))))
520         elcs files shadows file)
521     (when path
522       (unless (setq elcs (directory-files srcdir nil "\\.elc\\'"))
523         (error "You should build .elc files first."))
524       (setq files
525             (apply
526              'append
527              (mapcar
528               (lambda (el)
529                 (list (concat el "c") el (concat el ".bz2") (concat el ".gz")))
530               (append
531                (list (file-name-nondirectory dgnushack-gnus-load-file)
532                      (file-name-nondirectory dgnushack-cus-load-file))
533                (mapcar (lambda (elc) (substring elc 0 -1)) elcs)))))
534       (while path
535         (setq shadows files)
536         (while shadows
537           (setq file (expand-file-name (pop shadows) (car path)))
538           (when (file-exists-p file)
539             (princ (concat "  Removing " file "..."))
540             (condition-case nil
541                 (progn
542                   (delete-file file)
543                   (princ "done\n"))
544               (error (princ "failed\n")))))
545         (setq path (cdr path))))))
546
547 (unless (fboundp 'with-demoted-errors)
548   (defmacro with-demoted-errors (&rest body)
549     "Run BODY and demote any errors to simple messages.
550 If `debug-on-error' is non-nil, run BODY without catching its errors.
551 This is to be used around code which is not expected to signal an error
552 but which should be robust in the unexpected case that an error is signaled."
553     (declare (debug t) (indent 0))
554     (let ((err (make-symbol "err")))
555       `(condition-case ,err
556            (progn ,@body)
557          (error (message "Error: %S" ,err) nil)))))
558
559 ;; XEmacs's `define-obsolete-variable-alias' takes only two arguments:
560 ;; (define-obsolete-variable-alias OLDVAR NEWVAR)
561 (condition-case nil
562     (progn
563       (defvar dgnushack-obsolete-name nil)
564       (defvar dgnushack-current-name nil)
565       (unwind-protect
566           (define-obsolete-variable-alias
567             'dgnushack-obsolete-name 'dgnushack-current-name "0")
568         (makunbound 'dgnushack-obsolete-name)
569         (makunbound 'dgnushack-current-name)))
570   (wrong-number-of-arguments
571    (defadvice define-obsolete-variable-alias (around ignore-rest-args
572                                                      (oldvar newvar &rest args)
573                                                      activate)
574      "Ignore arguments other than the 1st and the 2nd ones."
575      ad-do-it)
576    (put 'define-obsolete-variable-alias 'byte-optimizer
577         (lambda (form)
578           (setcdr (nthcdr 2 form) nil)
579           form))))
580
581 ;;; dgnushack.el ends here