Update copyright notices for 2013.
[emacs.git] / lisp / mh-e / mh-compat.el
blob2ebe370205f13fe524e6a3c2e7eb1aa567f4252d
1 ;;; mh-compat.el --- make MH-E compatible with various versions of Emacs
3 ;; Copyright (C) 2006-2013 Free Software Foundation, Inc.
5 ;; Author: Bill Wohler <wohler@newt.com>
6 ;; Maintainer: Bill Wohler <wohler@newt.com>
7 ;; Keywords: mail
8 ;; See: mh-e.el
10 ;; This file is part of GNU Emacs.
12 ;; GNU Emacs is free software: you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation, either version 3 of the License, or
15 ;; (at your option) any later version.
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
25 ;;; Commentary:
27 ;;; Change Log:
29 ;;; Code:
31 ;; This is a good place to gather code that is used for compatibility
32 ;; between different versions of Emacs. Please document which versions
33 ;; of Emacs that the defsubst, defalias, or defmacro applies. That
34 ;; way, it's easy to occasionally go through this file and see which
35 ;; macros we can retire.
37 ;; Please use mh-gnus.el when providing compatibility with different
38 ;; versions of Gnus.
40 ;; Items are listed alphabetically (except for mh-require which is
41 ;; needed sooner it would normally appear).
43 (require 'mh-acros)
45 (mh-do-in-gnu-emacs
46 (defalias 'mh-require 'require))
48 (mh-do-in-xemacs
49 (defun mh-require (feature &optional filename noerror)
50 "If feature FEATURE is not loaded, load it from FILENAME.
51 If FEATURE is not a member of the list `features', then the feature
52 is not loaded; so load the file FILENAME.
53 If FILENAME is omitted, the printname of FEATURE is used as the file name.
54 If the optional third argument NOERROR is non-nil,
55 then return nil if the file is not found instead of signaling an error.
57 Simulate NOERROR argument in XEmacs which lacks it."
58 (if (not (featurep feature))
59 (if filename
60 (load filename noerror t)
61 (load (format "%s" feature) noerror t)))))
63 (defun-mh mh-assoc-string assoc-string (key list case-fold)
64 "Like `assoc' but specifically for strings.
65 Case is ignored if CASE-FOLD is non-nil.
66 This function is used by Emacs versions that lack `assoc-string',
67 introduced in Emacs 22."
68 (if case-fold
69 (assoc-ignore-case key list)
70 (assoc key list)))
72 ;; For XEmacs.
73 (defalias 'mh-cancel-timer
74 (if (fboundp 'cancel-timer)
75 'cancel-timer
76 'delete-itimer))
78 (defun mh-display-color-cells (&optional display)
79 "Return the number of color cells supported by DISPLAY.
80 This function is used by XEmacs to return 2 when `device-color-cells'
81 or `display-color-cells' returns nil. This happens when compiling or
82 running on a tty and causes errors since `display-color-cells' is
83 expected to return an integer."
84 (cond ((fboundp 'display-color-cells) ; GNU Emacs, XEmacs 21.5b28
85 (or (display-color-cells display) 2))
86 ((fboundp 'device-color-cells) ; XEmacs 21.4
87 (or (device-color-cells display) 2))
88 (t 2)))
90 (defmacro mh-display-completion-list (completions &optional common-substring)
91 "Display the list of COMPLETIONS.
92 See documentation for `display-completion-list' for a description of the
93 arguments COMPLETIONS and perhaps COMMON-SUBSTRING.
94 This macro is used by Emacs versions that lack a COMMON-SUBSTRING
95 argument, introduced in Emacs 22."
96 (if (< emacs-major-version 22)
97 `(display-completion-list ,completions)
98 `(display-completion-list ,completions ,common-substring)))
100 (defmacro mh-face-foreground (face &optional frame inherit)
101 "Return the foreground color name of FACE, or nil if unspecified.
102 See documentation for `face-foreground' for a description of the
103 arguments FACE, FRAME, and perhaps INHERIT.
104 This macro is used by Emacs versions that lack an INHERIT argument,
105 introduced in Emacs 22."
106 (if (< emacs-major-version 22)
107 `(face-foreground ,face ,frame)
108 `(face-foreground ,face ,frame ,inherit)))
110 (defmacro mh-face-background (face &optional frame inherit)
111 "Return the background color name of face, or nil if unspecified.
112 See documentation for `back-foreground' for a description of the
113 arguments FACE, FRAME, and INHERIT.
114 This macro is used by Emacs versions that lack an INHERIT argument,
115 introduced in Emacs 22."
116 (if (< emacs-major-version 22)
117 `(face-background ,face ,frame)
118 `(face-background ,face ,frame ,inherit)))
120 (defun-mh mh-font-lock-add-keywords font-lock-add-keywords
121 (mode keywords &optional how)
122 "XEmacs does not have `font-lock-add-keywords'.
123 This function returns nil on that system.")
125 (defun-mh mh-image-load-path-for-library
126 image-load-path-for-library (library image &optional path no-error)
127 "Return a suitable search path for images used by LIBRARY.
129 It searches for IMAGE in `image-load-path' (excluding
130 \"`data-directory'/images\") and `load-path', followed by a path
131 suitable for LIBRARY, which includes \"../../etc/images\" and
132 \"../etc/images\" relative to the library file itself, and then
133 in \"`data-directory'/images\".
135 Then this function returns a list of directories which contains
136 first the directory in which IMAGE was found, followed by the
137 value of `load-path'. If PATH is given, it is used instead of
138 `load-path'.
140 If NO-ERROR is non-nil and a suitable path can't be found, don't
141 signal an error. Instead, return a list of directories as before,
142 except that nil appears in place of the image directory.
144 Here is an example that uses a common idiom to provide
145 compatibility with versions of Emacs that lack the variable
146 `image-load-path':
148 ;; Shush compiler.
149 (defvar image-load-path)
151 (let* ((load-path (image-load-path-for-library \"mh-e\" \"mh-logo.xpm\"))
152 (image-load-path (cons (car load-path)
153 (when (boundp 'image-load-path)
154 image-load-path))))
155 (mh-tool-bar-folder-buttons-init))"
156 (unless library (error "No library specified"))
157 (unless image (error "No image specified"))
158 (let (image-directory image-directory-load-path)
159 ;; Check for images in image-load-path or load-path.
160 (let ((img image)
161 (dir (or
162 ;; Images in image-load-path.
163 (mh-image-search-load-path image)
164 ;; Images in load-path.
165 (locate-library image)))
166 parent)
167 ;; Since the image might be in a nested directory (for
168 ;; example, mail/attach.pbm), adjust `image-directory'
169 ;; accordingly.
170 (when dir
171 (setq dir (file-name-directory dir))
172 (while (setq parent (file-name-directory img))
173 (setq img (directory-file-name parent)
174 dir (expand-file-name "../" dir))))
175 (setq image-directory-load-path dir))
177 ;; If `image-directory-load-path' isn't Emacs's image directory,
178 ;; it's probably a user preference, so use it. Then use a
179 ;; relative setting if possible; otherwise, use
180 ;; `image-directory-load-path'.
181 (cond
182 ;; User-modified image-load-path?
183 ((and image-directory-load-path
184 (not (equal image-directory-load-path
185 (file-name-as-directory
186 (expand-file-name "images" data-directory)))))
187 (setq image-directory image-directory-load-path))
188 ;; Try relative setting.
189 ((let (library-name d1ei d2ei)
190 ;; First, find library in the load-path.
191 (setq library-name (locate-library library))
192 (if (not library-name)
193 (error "Cannot find library %s in load-path" library))
194 ;; And then set image-directory relative to that.
195 (setq
196 ;; Go down 2 levels.
197 d2ei (file-name-as-directory
198 (expand-file-name
199 (concat (file-name-directory library-name) "../../etc/images")))
200 ;; Go down 1 level.
201 d1ei (file-name-as-directory
202 (expand-file-name
203 (concat (file-name-directory library-name) "../etc/images"))))
204 (setq image-directory
205 ;; Set it to nil if image is not found.
206 (cond ((file-exists-p (expand-file-name image d2ei)) d2ei)
207 ((file-exists-p (expand-file-name image d1ei)) d1ei)))))
208 ;; Use Emacs's image directory.
209 (image-directory-load-path
210 (setq image-directory image-directory-load-path))
211 (no-error
212 (message "Could not find image %s for library %s" image library))
214 (error "Could not find image %s for library %s" image library)))
216 ;; Return an augmented `path' or `load-path'.
217 (nconc (list image-directory)
218 (delete image-directory (copy-sequence (or path load-path))))))
220 (defun-mh mh-image-search-load-path
221 image-search-load-path (file &optional path)
222 "Emacs 21 and XEmacs don't have `image-search-load-path'.
223 This function returns nil on those systems."
224 nil)
226 ;; For XEmacs.
227 (defalias 'mh-line-beginning-position
228 (if (fboundp 'line-beginning-position)
229 'line-beginning-position
230 'point-at-bol))
232 ;; For XEmacs.
233 (defalias 'mh-line-end-position
234 (if (fboundp 'line-end-position)
235 'line-end-position
236 'point-at-eol))
238 (mh-require 'mailabbrev nil t)
239 (defun-mh mh-mail-abbrev-make-syntax-table
240 mail-abbrev-make-syntax-table ()
241 "Emacs 21 and XEmacs don't have `mail-abbrev-make-syntax-table'.
242 This function returns nil on those systems."
243 nil)
245 (defun-mh mh-match-string-no-properties
246 match-string-no-properties (num &optional string)
247 "Return string of text matched by last search, without text properties.
248 This function is used by XEmacs that lacks `match-string-no-properties'.
249 The function `buffer-substring-no-properties' is used instead.
250 The argument STRING is ignored."
251 (buffer-substring-no-properties
252 (match-beginning num) (match-end num)))
254 (defun-mh mh-replace-regexp-in-string replace-regexp-in-string
255 (regexp rep string &optional fixedcase literal subexp start)
256 "Replace REGEXP with REP everywhere in STRING and return result.
257 This function is used by XEmacs that lacks `replace-regexp-in-string'.
258 The function `replace-in-string' is used instead.
259 The arguments FIXEDCASE, SUBEXP, and START, used by
260 `replace-in-string' are ignored."
261 (replace-in-string string regexp rep literal))
263 (defun-mh mh-test-completion
264 test-completion (string collection &optional predicate)
265 "Return non-nil if STRING is a valid completion.
266 XEmacs does not have `test-completion'. This function returns nil
267 on that system." nil)
269 ;; Copy of constant from url-util.el in Emacs 22; needed by Emacs 21.
270 (if (not (boundp 'url-unreserved-chars))
271 (defconst mh-url-unreserved-chars
273 ?a ?b ?c ?d ?e ?f ?g ?h ?i ?j ?k ?l ?m ?n ?o ?p ?q ?r ?s ?t ?u ?v ?w ?x ?y ?z
274 ?A ?B ?C ?D ?E ?F ?G ?H ?I ?J ?K ?L ?M ?N ?O ?P ?Q ?R ?S ?T ?U ?V ?W ?X ?Y ?Z
275 ?0 ?1 ?2 ?3 ?4 ?5 ?6 ?7 ?8 ?9
276 ?- ?_ ?. ?! ?~ ?* ?' ?\( ?\))
277 "A list of characters that are _NOT_ reserved in the URL spec.
278 This is taken from RFC 2396."))
280 (defun-mh mh-url-hexify-string url-hexify-string (str)
281 "Escape characters in a string.
282 This is a copy of `url-hexify-string' from url-util.el in Emacs
283 22; needed by Emacs 21."
284 (mapconcat
285 (lambda (char)
286 ;; Fixme: use a char table instead.
287 (if (not (memq char mh-url-unreserved-chars))
288 (if (> char 255)
289 (error "Hexifying multibyte character %s" str)
290 (format "%%%02X" char))
291 (char-to-string char)))
292 str ""))
294 (defun-mh mh-view-mode-enter
295 view-mode-enter (&optional return-to exit-action)
296 "Enter View mode.
297 This function is used by XEmacs that lacks `view-mode-enter'.
298 The function `view-mode' is used instead.
299 The arguments RETURN-TO and EXIT-ACTION are ignored."
300 ;; Shush compiler.
301 (if return-to nil)
302 (if exit-action nil)
303 (view-mode 1))
305 (defun-mh mh-window-full-height-p
306 window-full-height-p (&optional WINDOW)
307 "Return non-nil if WINDOW is not the result of a vertical split.
308 This function is defined in XEmacs as it lacks
309 `window-full-height-p'. The values of the functions
310 `window-height' and `frame-height' are compared instead. The
311 argument WINDOW is ignored."
312 (= (1+ (window-height))
313 (frame-height)))
315 (defmacro mh-write-file-functions ()
316 "Return `write-file-functions' if it exists.
317 Otherwise return `local-write-file-hooks'.
318 This macro exists purely for compatibility. The former symbol is used
319 in Emacs 22 onward while the latter is used in previous versions and
320 XEmacs."
321 (if (boundp 'write-file-functions)
322 ''write-file-functions ;Emacs 22 on
323 ''local-write-file-hooks)) ;XEmacs
325 (provide 'mh-compat)
327 ;; Local Variables:
328 ;; no-byte-compile: t
329 ;; indent-tabs-mode: nil
330 ;; sentence-end-double-space: nil
331 ;; End:
333 ;;; mh-compat.el ends here