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