(defun-maybe-cond): New macro.
[elisp/apel.git] / poe.el
1 ;;; poe.el --- Portable Outfit for Emacsen; -*-byte-compile-dynamic: t;-*-
2
3 ;; Copyright (C) 1995,1996,1997,1998 Free Software Foundation, Inc.
4
5 ;; Author: MORIOKA Tomohiko <morioka@jaist.ac.jp>
6 ;; Keywords: emulation, compatibility, NEmacs, MULE, Emacs/mule, XEmacs
7
8 ;; This file is part of APEL (A Portable Emacs Library).
9
10 ;; This program is free software; you can redistribute it and/or
11 ;; modify it under the terms of the GNU General Public License as
12 ;; published by the Free Software Foundation; either version 2, or (at
13 ;; your option) any later version.
14
15 ;; This program is distributed in the hope that it will be useful, but
16 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18 ;; 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; see the file COPYING.  If not, write to the
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 ;; Boston, MA 02111-1307, USA.
24
25 ;;; Commentary:
26
27 ;; This modules does not includes MULE related features.  MULE related
28 ;; features are supported by `poem'.
29
30 ;;; Code:
31
32 (defmacro defun-maybe (name &rest everything-else)
33   (or (and (fboundp name)
34            (not (get name 'defun-maybe)))
35       (` (or (fboundp (quote (, name)))
36              (progn
37                (defun (, name) (,@ everything-else))
38                (put (quote (, name)) 'defun-maybe t)
39                ))
40          )))
41
42 (defmacro defsubst-maybe (name &rest everything-else)
43   (or (and (fboundp name)
44            (not (get name 'defsubst-maybe)))
45       (` (or (fboundp (quote (, name)))
46              (progn
47                (defsubst (, name) (,@ everything-else))
48                (put (quote (, name)) 'defsubst-maybe t)
49                ))
50          )))
51
52 (defmacro defmacro-maybe (name &rest everything-else)
53   (or (and (fboundp name)
54            (not (get name 'defmacro-maybe)))
55       (` (or (fboundp (quote (, name)))
56              (progn
57                (defmacro (, name) (,@ everything-else))
58                (put (quote (, name)) 'defmacro-maybe t)
59                ))
60          )))
61
62 (defmacro defalias-maybe (symbol definition)
63   (setq symbol (eval symbol))
64   (or (and (fboundp symbol)
65            (not (get symbol 'defalias-maybe)))
66       (` (or (fboundp (quote (, symbol)))
67              (progn
68                (defalias (quote (, symbol)) (, definition))
69                (put (quote (, symbol)) 'defalias-maybe t)
70                ))
71          )))
72
73 (put 'defun-maybe 'lisp-indent-function 'defun)
74 (put 'defsubst-maybe 'lisp-indent-function 'defun)
75 (put 'defmacro-maybe 'lisp-indent-function 'defun)
76
77 (defmacro defvar-maybe (name &rest everything-else)
78   (or (and (boundp name)
79            (not (get name 'defvar-maybe)))
80       (` (or (boundp (quote (, name)))
81              (progn
82                (defvar (, name) (,@ everything-else))
83                (put (quote (, name)) 'defvar-maybe t)
84                ))
85          )))
86
87 (defmacro defconst-maybe (name &rest everything-else)
88   (or (and (boundp name)
89            (not (get name 'defconst-maybe))
90            )
91       (` (or (boundp (quote (, name)))
92              (progn
93                (defconst (, name) (,@ everything-else))
94                (put (quote (, name)) 'defconst-maybe t)
95                ))
96          )))
97
98 (defmacro defun-maybe-cond (name args &optional doc &rest everything-else)
99   (unless (stringp doc)
100     (setq everything-else (cons doc everything-else)
101           doc nil)
102     )
103   (or (and (fboundp name)
104            (not (get name 'defun-maybe)))
105       (` (unless (fboundp (quote (, name)))
106            (cond (,@ (mapcar (lambda (case)
107                                (list (car case)
108                                      (if doc
109                                          (` (defun (, name) (, args)
110                                               (, doc)
111                                               (,@ (cdr case))))
112                                        (` (defun (, name) (, args)
113                                             (,@ (cdr case))))
114                                        )))
115                              everything-else)))
116            (put (quote (, name)) 'defun-maybe t)
117            ))))
118
119 (defsubst subr-fboundp (symbol)
120   "Return t if SYMBOL's function definition is a built-in function."
121   (and (fboundp symbol)
122        (subrp (symbol-function symbol))))
123
124 (defconst-maybe emacs-major-version (string-to-int emacs-version))
125 (defconst-maybe emacs-minor-version
126   (string-to-int
127    (substring emacs-version
128               (string-match (format "%d\\." emacs-major-version)
129                             emacs-version))))
130
131 (cond ((featurep 'xemacs)
132        (require 'poe-xemacs)
133        )
134       ((string-match "XEmacs" emacs-version)
135        (provide 'xemacs)
136        (require 'poe-xemacs)
137        )
138       ((> emacs-major-version 20))
139       ((= emacs-major-version 20)
140        (cond ((subr-fboundp 'string)
141               ;; Emacs 20.3 or later
142               )
143              ((subr-fboundp 'concat-chars)
144               ;; Emacs 20.1 or later
145               (defalias 'string 'concat-chars)
146               ))
147        )
148       ((= emacs-major-version 19))
149       (t
150        (require 'poe-18)
151        ))
152
153
154 ;;; @ Emacs 19 emulation
155 ;;;
156
157 (defmacro-maybe eval-and-compile (&rest body)
158   "Like `progn', but evaluates the body at compile time and at load time."
159   ;; Remember, it's magic.
160   (cons 'progn body))
161
162 (defun-maybe minibuffer-prompt-width ()
163   "Return the display width of the minibuffer prompt."
164   (save-excursion
165     (set-buffer (window-buffer (minibuffer-window)))
166     (current-column)))
167
168
169 ;;; @ Emacs 19.29 emulation
170 ;;;
171
172 (defvar-maybe path-separator ":"
173   "Character used to separate concatenated paths.")
174
175 (defun-maybe buffer-substring-no-properties (start end)
176   "Return the characters of part of the buffer, without the text properties.
177 The two arguments START and END are character positions;
178 they can be in either order. [Emacs 19.29 emulating function]"
179   (let ((string (buffer-substring start end)))
180     (set-text-properties 0 (length string) nil string)
181     string))
182
183 (defun-maybe match-string (num &optional string)
184   "Return string of text matched by last search.
185 NUM specifies which parenthesized expression in the last regexp.
186  Value is nil if NUMth pair didn't match, or there were less than NUM pairs.
187 Zero means the entire text matched by the whole regexp or whole string.
188 STRING should be given if the last search was by `string-match' on STRING.
189 \[Emacs 19.29 emulating function]"
190   (if (match-beginning num)
191       (if string
192           (substring string (match-beginning num) (match-end num))
193         (buffer-substring (match-beginning num) (match-end num)))))
194
195 (or (featurep 'xemacs)
196     (>= emacs-major-version 20)
197     (and (= emacs-major-version 19)
198          (>= emacs-minor-version 29))
199     ;; for Emacs 19.28 or earlier
200     (fboundp 'si:read-string)
201     (eval-and-compile
202       (fset 'si:read-string (symbol-function 'read-string))
203       (defun read-string (prompt &optional initial-input history)
204         "Read a string from the minibuffer, prompting with string PROMPT.
205 If non-nil, second arg INITIAL-INPUT is a string to insert before reading.
206 The third arg HISTORY, is dummy for compatibility.
207 See `read-from-minibuffer' for details of HISTORY argument."
208         (si:read-string prompt initial-input))
209       ))
210
211 (defun-maybe rassoc (key list)
212   "Return non-nil if KEY is `equal' to the cdr of an element of LIST.
213 The value is actually the element of LIST whose cdr equals KEY."
214   (catch 'found
215     (while list
216       (if (equal (cdr (car list)) key)
217           (throw 'found (car list))
218         )
219       (setq list (cdr list)))
220     ))
221
222 (defmacro-maybe make-local-hook (hook))
223
224 ;; They are not Emacs features
225
226 (defmacro-maybe add-local-hook (hook function &optional append)
227   (if (fboundp 'make-local-hook)
228       (list 'add-hook hook function append t)
229     (list 'add-hook hook function append)
230     ))
231
232 (defmacro-maybe remove-local-hook (hook function)
233   (if (fboundp 'make-local-hook)
234       (list 'remove-hook hook function t)
235     (list 'remove-hook hook function)
236     ))
237
238
239 ;;; @ Emacs 19.30 emulation
240 ;;;
241
242 ;; imported from Emacs 19.30.
243 (defun-maybe add-to-list (list-var element)
244   "Add to the value of LIST-VAR the element ELEMENT if it isn't there yet.
245 If you want to use `add-to-list' on a variable that is not defined
246 until a certain package is loaded, you should put the call to `add-to-list'
247 into a hook function that will be run only after loading the package.
248 \[Emacs 19.30 emulating function]"
249   (or (member element (symbol-value list-var))
250       (set list-var (cons element (symbol-value list-var)))))
251
252 (cond ((fboundp 'insert-file-contents-literally))
253       ((boundp 'file-name-handler-alist)
254        (defun insert-file-contents-literally
255          (filename &optional visit beg end replace)
256          "Like `insert-file-contents', q.v., but only reads in the file.
257 A buffer may be modified in several ways after reading into the buffer due
258 to advanced Emacs features, such as file-name-handlers, format decoding,
259 find-file-hooks, etc.
260   This function ensures that none of these modifications will take place.
261 \[Emacs 19.30 emulating function]"
262          (let (file-name-handler-alist)
263            (insert-file-contents filename visit beg end replace)))
264        )
265       (t
266        (defalias 'insert-file-contents-literally 'insert-file-contents)
267        ))
268
269
270 ;;; @ Emacs 19.31 emulation
271 ;;;
272
273 (defun-maybe buffer-live-p (object)
274   "Return non-nil if OBJECT is a buffer which has not been killed.
275 Value is nil if OBJECT is not a buffer or if it has been killed.
276 \[Emacs 19.31 emulating function]"
277   (and object
278        (get-buffer object)
279        (buffer-name (get-buffer object))))
280
281 ;; imported from Emacs 19.33.
282 (defmacro-maybe save-selected-window (&rest body)
283   "Execute BODY, then select the window that was selected before BODY.
284 \[Emacs 19.31 emulating function]"
285   (list 'let
286         '((save-selected-window-window (selected-window)))
287         (list 'unwind-protect
288               (cons 'progn body)
289               (list 'select-window 'save-selected-window-window))))
290
291
292 ;;; @ Emacs 20.1 emulation
293 ;;;
294
295 ;; imported from Emacs 20.2.
296 (defmacro-maybe when (cond &rest body)
297   "(when COND BODY...): if COND yields non-nil, do BODY, else return nil."
298   (list 'if cond (cons 'progn body)))
299
300 ;; imported from Emacs 20.3.
301 (defmacro-maybe unless (cond &rest body)
302   "(unless COND BODY...): if COND yields nil, do BODY, else return nil."
303   (cons 'if (cons cond (cons nil body))))
304
305 (defmacro-maybe save-current-buffer (&rest body)
306   "Save the current buffer; execute BODY; restore the current buffer.
307 Executes BODY just like `progn'."
308   (` (let ((orig-buffer (current-buffer)))
309        (unwind-protect
310            (progn (,@ body))
311          (set-buffer orig-buffer)))))
312
313 ;; imported from Emacs 20.2.
314 (defmacro-maybe with-current-buffer (buffer &rest body)
315   "Execute the forms in BODY with BUFFER as the current buffer.
316 The value returned is the value of the last form in BODY.
317 See also `with-temp-buffer'."
318   (` (save-current-buffer
319        (set-buffer (, buffer))
320        (,@ body))))
321
322 ;; imported from Emacs 20.2.
323 (defmacro-maybe with-temp-file (file &rest forms)
324   "Create a new buffer, evaluate FORMS there, and write the buffer to FILE.
325 The value of the last form in FORMS is returned, like `progn'.
326 See also `with-temp-buffer'."
327   (let ((temp-file (make-symbol "temp-file"))
328         (temp-buffer (make-symbol "temp-buffer")))
329     (` (let (((, temp-file) (, file))
330              ((, temp-buffer)
331               (get-buffer-create (generate-new-buffer-name " *temp file*"))))
332          (unwind-protect
333              (prog1
334                  (with-current-buffer (, temp-buffer)
335                    (,@ forms))
336                (with-current-buffer (, temp-buffer)
337                  (widen)
338                  (write-region (point-min) (point-max) (, temp-file) nil 0)))
339            (and (buffer-name (, temp-buffer))
340                 (kill-buffer (, temp-buffer))))))))
341
342 ;; imported from Emacs 20.2.
343 (defmacro-maybe with-temp-buffer (&rest forms)
344   "Create a temporary buffer, and evaluate FORMS there like `progn'.
345 See also `with-temp-file' and `with-output-to-string'."
346   (let ((temp-buffer (make-symbol "temp-buffer")))
347     (` (let (((, temp-buffer)
348               (get-buffer-create (generate-new-buffer-name " *temp*"))))
349          (unwind-protect
350              (with-current-buffer (, temp-buffer)
351                (,@ forms))
352            (and (buffer-name (, temp-buffer))
353                 (kill-buffer (, temp-buffer))))))))
354
355 ;; imported from Emacs 20.3.
356 (defun-maybe last (x &optional n)
357   "Return the last link of the list X.  Its car is the last element.
358 If X is nil, return nil.
359 If N is non-nil, return the Nth-to-last link of X.
360 If N is bigger than the length of X, return X."
361   (if n
362       (let ((m 0) (p x))
363         (while (consp p)
364           (setq m (1+ m) p (cdr p)))
365         (if (<= n 0) p
366           (if (< n m) (nthcdr (- m n) x) x)))
367     (while (cdr x)
368       (setq x (cdr x)))
369     x))
370
371 ;; imported from Emacs 20.3. (cl function)
372 (defun-maybe butlast (x &optional n)
373   "Returns a copy of LIST with the last N elements removed."
374   (if (and n (<= n 0)) x
375     (nbutlast (copy-sequence x) n)))
376
377 ;; imported from Emacs 20.3. (cl function)
378 (defun-maybe nbutlast (x &optional n)
379   "Modifies LIST to remove the last N elements."
380   (let ((m (length x)))
381     (or n (setq n 1))
382     (and (< n m)
383          (progn
384            (if (> n 0) (setcdr (nthcdr (- (1- m) n) x) nil))
385            x))))
386
387 ;; imported from XEmacs 21.
388 (defun-maybe split-string (string &optional pattern)
389   "Return a list of substrings of STRING which are separated by PATTERN.
390 If PATTERN is omitted, it defaults to \"[ \\f\\t\\n\\r\\v]+\"."
391   (or pattern
392       (setq pattern "[ \f\t\n\r\v]+"))
393   ;; The FSF version of this function takes care not to cons in case
394   ;; of infloop.  Maybe we should synch?
395   (let (parts (start 0))
396     (while (string-match pattern string start)
397       (setq parts (cons (substring string start (match-beginning 0)) parts)
398             start (match-end 0)))
399     (nreverse (cons (substring string start) parts))))
400
401
402 ;;; @ Emacs 20.3 emulation
403 ;;;
404
405 ;; imported from Emacs 20.3.91.
406 (defvar-maybe temporary-file-directory
407   (file-name-as-directory
408    (cond ((memq system-type '(ms-dos windows-nt))
409           (or (getenv "TEMP") (getenv "TMPDIR") (getenv "TMP") "c:/temp"))
410          ((memq system-type '(vax-vms axp-vms))
411           (or (getenv "TMPDIR") (getenv "TMP") (getenv "TEMP") "SYS$SCRATCH:"))
412          (t
413           (or (getenv "TMPDIR") (getenv "TMP") (getenv "TEMP") "/tmp"))))
414   "The directory for writing temporary files.")
415
416 (defun-maybe line-beginning-position (&optional n)
417   "Return the character position of the first character on the current line.
418 With argument N not nil or 1, move forward N - 1 lines first.
419 If scan reaches end of buffer, return that position.
420 This function does not move point."
421   (save-excursion
422     (if n
423         (forward-line (1- n))
424       )
425     (beginning-of-line)
426     (point)))
427
428 (defun-maybe line-end-position (&optional n)
429   "Return the character position of the last character on the current line.
430 With argument N not nil or 1, move forward N - 1 lines first.
431 If scan reaches end of buffer, return that position.
432 This function does not move point."
433   (save-excursion
434     (if n
435         (forward-line (1- n))
436       )
437     (end-of-line)
438     (point)))
439
440 (defun-maybe string (&rest chars)
441   "Concatenate all the argument characters and make the result a string."
442   (mapconcat (function char-to-string) chars "")
443   )
444
445     
446 ;;; @ XEmacs emulation
447 ;;;
448
449 (defun-maybe find-face (face-or-name)
450   "Retrieve the face of the given name.
451 If FACE-OR-NAME is a face object, it is simply returned.
452 Otherwise, FACE-OR-NAME should be a symbol.  If there is no such face,
453 nil is returned.  Otherwise the associated face object is returned.
454 \[XEmacs emulating function]"
455   (car (memq face-or-name (face-list)))
456   )
457
458 (defun-maybe point-at-bol (&optional n buffer)
459   "Return the character position of the first character on the current line.
460 With argument N not nil or 1, move forward N - 1 lines first.
461 If scan reaches end of buffer, return that position.
462 This function does not move point. [XEmacs emulating function]"
463   (save-excursion
464     (if buffer
465         (set-buffer buffer)
466       )
467     (line-beginning-position n)
468     ))
469
470 (defun-maybe point-at-eol (&optional n buffer)
471   "Return the character position of the last character on the current line.
472 With argument N not nil or 1, move forward N - 1 lines first.
473 If scan reaches end of buffer, return that position.
474 This function does not move point. [XEmacs emulating function]"
475   (save-excursion
476     (if buffer
477         (set-buffer buffer)
478       )
479     (line-end-position n)
480     ))
481
482 (defun-maybe functionp (obj)
483   "Returns t if OBJ is a function, nil otherwise.
484 \[XEmacs emulating function]"
485   (or (subrp obj)
486       (byte-code-function-p obj)
487       (and (symbolp obj)(fboundp obj))
488       (and (consp obj)(eq (car obj) 'lambda))
489       ))
490
491 (defsubst-maybe define-obsolete-function-alias (oldfun newfun)
492   "Define OLDFUN as an obsolete alias for function NEWFUN.
493 This makes calling OLDFUN equivalent to calling NEWFUN and marks OLDFUN
494 as obsolete. [XEmacs emulating function]"
495   (defalias oldfun newfun)
496   (make-obsolete oldfun newfun)
497   )
498
499 (when (subr-fboundp 'read-event)
500   ;; for Emacs 19 or later
501
502   (defun-maybe-cond next-command-event (&optional event prompt)
503     "Read an event object from the input stream.
504 If EVENT is non-nil, it should be an event object and will be filled
505 in and returned; otherwise a new event object will be created and
506 returned.
507 If PROMPT is non-nil, it should be a string and will be displayed in
508 the echo area while this function is waiting for an event.
509 \[XEmacs emulating function]"
510     ((subr-fboundp 'string)
511      ;; for Emacs 20.3 or later
512      (read-event prompt t)
513      )
514     (t
515      (if prompt (message prompt))
516      (read-event)
517      ))
518
519   (defsubst-maybe character-to-event (ch)
520     "Convert keystroke CH into an event structure, replete with bucky bits.
521 Note that CH (the keystroke specifier) can be an integer, a character
522 or a symbol such as 'clear. [XEmacs emulating function]"
523     ch)
524
525   (defun-maybe event-to-character (event)
526     "Return the character approximation to the given event object.
527 If the event isn't a keypress, this returns nil.
528 \[XEmacs emulating function]"
529     (cond ((symbolp event)
530            ;; mask is (BASE-TYPE MODIFIER-BITS) or nil.
531            (let ((mask (get event 'event-symbol-element-mask)))
532              (if mask
533                  (let ((base (get (car mask) 'ascii-character)))
534                    (if base
535                        (logior base (car (cdr mask)))
536                      )))))
537           ((integerp event) event)
538           ))
539   )
540
541
542 ;;; @ MULE 2 emulation
543 ;;;
544
545 (defun-maybe-cond cancel-undo-boundary ()
546   "Cancel undo boundary. [MULE 2.3 emulating function]"
547   ((boundp 'buffer-undo-list)
548    ;; for Emacs 19.7 or later
549    (if (and (consp buffer-undo-list)
550             ;; if car is nil.
551             (null (car buffer-undo-list)))
552        (setq buffer-undo-list (cdr buffer-undo-list))
553      ))
554   (t
555    ;; for anything older than Emacs 19.7.    
556    ))
557
558
559 ;;; @ end
560 ;;;
561
562 (provide 'poe)
563
564 ;;; poe.el ends here