(convert-standard-filename): Rearrange.
[elisp/apel.git] / poe.el
1 ;;; poe.el --- Portable Outfit for Emacsen; -*-byte-compile-dynamic: t;-*-
2
3 ;; Copyright (C) 1995,1996,1997,1998,1999 Free Software Foundation, Inc.
4
5 ;; Author: MORIOKA Tomohiko <tomo@m17n.org>
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.
28 ;; MULE related features are supported by `poem'.
29
30 ;;; Code:
31
32 (provide 'poe)
33
34 (or (boundp 'current-load-list) (setq current-load-list nil))
35
36 (put 'defun-maybe 'lisp-indent-function 'defun)
37 (defmacro defun-maybe (name &rest everything-else)
38   "Define NAME as a function if NAME is not defined.
39 See also the function `defun'."
40   (or (and (fboundp name)
41            (not (get name 'defun-maybe)))
42       (` (or (fboundp (quote (, name)))
43              (prog1
44                  (defun (, name) (,@ everything-else))
45                ;; This `defun' will be compiled to `fset', which does
46                ;; not update `load-history'.
47                (setq current-load-list
48                      (cons (quote (, name)) current-load-list))
49                (put (quote (, name)) 'defun-maybe t))))))
50
51 (put 'defmacro-maybe 'lisp-indent-function 'defun)
52 (defmacro defmacro-maybe (name &rest everything-else)
53   "Define NAME as a macro if NAME is not defined.
54 See also the function `defmacro'."
55   (or (and (fboundp name)
56            (not (get name 'defmacro-maybe)))
57       (` (or (fboundp (quote (, name)))
58              (prog1
59                  (defmacro (, name) (,@ everything-else))
60                (setq current-load-list
61                      (cons (quote (, name)) current-load-list))
62                (put (quote (, name)) 'defmacro-maybe t))))))
63
64 (put 'defsubst-maybe 'lisp-indent-function 'defun)
65 (defmacro defsubst-maybe (name &rest everything-else)
66   "Define NAME as an inline function if NAME is not defined.
67 See also the macro `defsubst'."
68   (or (and (fboundp name)
69            (not (get name 'defsubst-maybe)))
70       (` (or (fboundp (quote (, name)))
71              (prog1
72                  (defsubst (, name) (,@ everything-else))
73                (setq current-load-list
74                      (cons (quote (, name)) current-load-list))
75                (put (quote (, name)) 'defsubst-maybe t))))))
76
77 (defmacro defalias-maybe (symbol definition)
78   "Define SYMBOL as an alias for DEFINITION if SYMBOL is not defined.
79 See also the function `defalias'."
80   (setq symbol (eval symbol))
81   (or (and (fboundp symbol)
82            (not (get symbol 'defalias-maybe)))
83       (` (or (fboundp (quote (, symbol)))
84              (prog1
85                  (defalias (quote (, symbol)) (, definition))
86                (setq current-load-list
87                      (cons (quote (, symbol)) current-load-list))
88                (put (quote (, symbol)) 'defalias-maybe t))))))
89
90 (defmacro defvar-maybe (name &rest everything-else)
91   "Define NAME as a variable if NAME is not defined.
92 See also the function `defvar'."
93   (or (and (boundp name)
94            (not (get name 'defvar-maybe)))
95       (` (or (boundp (quote (, name)))
96              (prog1
97                  (defvar (, name) (,@ everything-else))
98                ;; byte-compiler will generate code to update
99                ;; `load-history'.
100                (put (quote (, name)) 'defvar-maybe t))))))
101
102 (defmacro defconst-maybe (name &rest everything-else)
103   "Define NAME as a constant variable if NAME is not defined.
104 See also the function `defconst'."
105   (or (and (boundp name)
106            (not (get name 'defconst-maybe)))
107       (` (or (boundp (quote (, name)))
108              (prog1
109                  (defconst (, name) (,@ everything-else))
110                ;; byte-compiler will generate code to update
111                ;; `load-history'.
112                (put (quote (, name)) 'defconst-maybe t))))))
113
114 (defmacro defun-maybe-cond (name args &optional doc &rest everything-else)
115   (or (stringp doc)
116       (setq everything-else (cons doc everything-else)
117             doc nil))
118   (or (and (fboundp name)
119            (not (get name 'defun-maybe)))
120       (` (or (fboundp (quote (, name)))
121              (prog1
122                  (cond
123                   (,@ (mapcar
124                        (function
125                         (lambda (case)
126                           (list (car case)
127                                 (if doc
128                                     (` (defun (, name) (, args)
129                                          (, doc)
130                                          (,@ (cdr case))))
131                                   (` (defun (, name) (, args)
132                                        (,@ (cdr case))))))))
133                        everything-else)))
134                (setq current-load-list
135                      (cons (quote (, name)) current-load-list))
136                (put (quote (, name)) 'defun-maybe t))))))
137
138 (defmacro defmacro-maybe-cond (name args &optional doc &rest everything-else)
139   (or (stringp doc)
140       (setq everything-else (cons doc everything-else)
141             doc nil))
142   (or (and (fboundp name)
143            (not (get name 'defmacro-maybe)))
144       (` (or (fboundp (quote (, name)))
145              (prog1
146                  (cond
147                   (,@ (mapcar
148                        (function
149                         (lambda (case)
150                           (list (car case)
151                                 (if doc
152                                     (` (defmacro (, name) (, args)
153                                          (, doc)
154                                          (,@ (cdr case))))
155                                   (` (defmacro (, name) (, args)
156                                        (,@ (cdr case))))))))
157                        everything-else)))
158                (setq current-load-list
159                      (cons (quote (, name)) current-load-list))
160                (put (quote (, name)) 'defmacro-maybe t))))))
161
162 (defun subr-fboundp (symbol)
163   "Return t if SYMBOL's function definition is a built-in function."
164   (and (fboundp symbol)
165        (subrp (symbol-function symbol))))
166
167 (defconst-maybe emacs-major-version (string-to-int emacs-version))
168 (defconst-maybe emacs-minor-version
169   (string-to-int
170    (substring emacs-version
171               (string-match (format "%d\\." emacs-major-version)
172                             emacs-version))))
173
174 (cond ((featurep 'xemacs)
175        (require 'poe-xemacs)
176        )
177       ((string-match "XEmacs" emacs-version)
178        (provide 'xemacs)
179        (require 'poe-xemacs)
180        )
181       ((> emacs-major-version 20))
182       ((= emacs-major-version 20)
183        (cond ((subr-fboundp 'string)
184               ;; Emacs 20.3 or later
185               )
186              ((subr-fboundp 'concat-chars)
187               ;; Emacs 20.1 or later
188               (defalias 'string 'concat-chars)
189               ))
190        )
191       ((= emacs-major-version 19)
192        ;; XXX: should do compile-time and load-time check before loading
193        ;;      "localhook".  But, it is difficult since "localhook" is
194        ;;      already loaded via "install" at compile-time.  any idea?
195        (if (< emacs-minor-version 29)
196            (require 'localhook)))
197       (t
198        (require 'poe-18)
199        ;; XXX: should do compile-time and load-time check before loading
200        ;;      "localhook".  But, it is difficult since "localhook" is
201        ;;      already loaded via "install" at compile-time.  any idea?
202        (require 'localhook)))
203
204 ;;; `eval-when-compile' is defined in "poe-18" under v18 with old compiler.
205 (eval-when-compile (require 'static))
206
207 ;; imported from emacs-20.3/lisp/emacs-lisp/edebug.el.
208 ;; `def-edebug-spec' is an autoloaded macro in v19 and later.
209 (defmacro-maybe def-edebug-spec (symbol spec)
210   "Set the edebug-form-spec property of SYMBOL according to SPEC.
211 Both SYMBOL and SPEC are unevaluated. The SPEC can be 0, t, a symbol
212 \(naming a function\), or a list."
213   (` (put (quote (, symbol)) 'edebug-form-spec (quote (, spec)))))
214
215 (def-edebug-spec defun-maybe defun)
216 (def-edebug-spec defmacro-maybe defmacro)
217 (def-edebug-spec defsubst-maybe defun)
218
219 ;;; Emacs 20.1 emulation
220
221 ;; imported from emacs-20.3/lisp/subr.el.
222 (defmacro-maybe when (cond &rest body)
223   "If COND yields non-nil, do BODY, else return nil."
224   (list 'if cond (cons 'progn body)))
225 ;; (def-edebug-spec when (&rest form))
226
227 ;; imported from emacs-20.3/lisp/subr.el.
228 (defmacro-maybe unless (cond &rest body)
229   "If COND yields nil, do BODY, else return nil."
230   (cons 'if (cons cond (cons nil body))))
231 ;; (def-edebug-spec unless (&rest form))
232
233
234 ;;; @ Emacs 19.23 emulation
235 ;;;
236
237 (defun-maybe minibuffer-prompt-width ()
238   "Return the display width of the minibuffer prompt."
239   (save-excursion
240     (set-buffer (window-buffer (minibuffer-window)))
241     (current-column)))
242
243
244 ;;; @ Emacs 19.29 emulation
245 ;;;
246
247 (defvar-maybe path-separator ":"
248   "The directory separator in search paths, as a string.")
249
250 (defun-maybe buffer-substring-no-properties (start end)
251   "Return the characters of part of the buffer, without the text properties.
252 The two arguments START and END are character positions;
253 they can be in either order.
254 \[Emacs 19.29 emulating function]"
255   (let ((string (buffer-substring start end)))
256     (set-text-properties 0 (length string) nil string)
257     string))
258
259 ;; imported from emacs-19.34/lisp/subr.el.
260 (defun-maybe match-string (num &optional string)
261   "Return string of text matched by last search.
262 NUM specifies which parenthesized expression in the last regexp.
263  Value is nil if NUMth pair didn't match, or there were less than NUM pairs.
264 Zero means the entire text matched by the whole regexp or whole string.
265 STRING should be given if the last search was by `string-match' on STRING.
266 \[Emacs 19.29 emulating function]"
267   (if (match-beginning num)
268       (if string
269           (substring string (match-beginning num) (match-end num))
270         (buffer-substring (match-beginning num) (match-end num)))))
271
272 (static-unless (or (featurep 'xemacs)
273                    (>= emacs-major-version 20)
274                    (and (= emacs-major-version 19)
275                         (>= emacs-minor-version 29)))
276   ;; for Emacs 19.28 or earlier
277   (unless (fboundp 'si:read-string)
278     (fset 'si:read-string (symbol-function 'read-string))
279     (defun read-string (prompt &optional initial-input history)
280       "Read a string from the minibuffer, prompting with string PROMPT.
281 If non-nil, second arg INITIAL-INPUT is a string to insert before reading.
282 The third arg HISTORY, is dummy for compatibility.
283 See `read-from-minibuffer' for details of HISTORY argument."
284       (si:read-string prompt initial-input))
285     ))
286
287 (defun-maybe rassoc (key list)
288   "Return non-nil if KEY is `equal' to the cdr of an element of LIST.
289 The value is actually the element of LIST whose cdr equals KEY.
290 Elements of LIST that are not conses are ignored.
291 \[Emacs 19.29 emulating function]"
292   (catch 'found
293     (while list
294       (cond ((not (consp (car list))))
295             ((equal (cdr (car list)) key)
296              (throw 'found (car list)) ))
297       (setq list (cdr list)) )))
298
299 ;; imported from emacs-19.34/lisp/files.el.
300 (defun-maybe file-name-sans-extension (filename)
301   "Return FILENAME sans final \"extension\".
302 The extension, in a file name, is the part that follows the last `.'.
303 \[Emacs 19.29 emulating function]"
304   (save-match-data
305     (let ((file (file-name-sans-versions (file-name-nondirectory filename)))
306           directory)
307       (if (string-match "\\.[^.]*\\'" file)
308           (if (setq directory (file-name-directory filename))
309               (expand-file-name (substring file 0 (match-beginning 0))
310                                 directory)
311             (substring file 0 (match-beginning 0)))
312         filename))))
313
314
315 ;;; @ Emacs 19.30 emulation
316 ;;;
317
318 ;; imported from emacs-19.34/lisp/subr.el.
319 (defun-maybe add-to-list (list-var element)
320   "Add to the value of LIST-VAR the element ELEMENT if it isn't there yet.
321 The test for presence of ELEMENT is done with `equal'.
322 If you want to use `add-to-list' on a variable that is not defined
323 until a certain package is loaded, you should put the call to `add-to-list'
324 into a hook function that will be run only after loading the package.
325 `eval-after-load' provides one way to do this.  In some cases
326 other hooks, such as major mode hooks, can do the job.
327 \[Emacs 19.30 emulating function]"
328   (or (member element (symbol-value list-var))
329       (set list-var (cons element (symbol-value list-var)))))
330
331 (cond ((fboundp 'insert-file-contents-literally))
332       ((boundp 'file-name-handler-alist)
333        (defun insert-file-contents-literally
334          (filename &optional visit beg end replace)
335          "Like `insert-file-contents', q.v., but only reads in the file.
336 A buffer may be modified in several ways after reading into the buffer due
337 to advanced Emacs features, such as file-name-handlers, format decoding,
338 find-file-hooks, etc.
339   This function ensures that none of these modifications will take place.
340 \[Emacs 19.30 emulating function]"
341          (let (file-name-handler-alist)
342            (insert-file-contents filename visit beg end replace)))
343        )
344       (t
345        (defalias 'insert-file-contents-literally 'insert-file-contents)
346        ))
347
348
349 ;;; @ Emacs 19.31 emulation
350 ;;;
351
352 (defun-maybe buffer-live-p (object)
353   "Return non-nil if OBJECT is a buffer which has not been killed.
354 Value is nil if OBJECT is not a buffer or if it has been killed.
355 \[Emacs 19.31 emulating function]"
356   (and object
357        (get-buffer object)
358        (buffer-name (get-buffer object))
359        t))
360
361 ;; imported from emacs-19.34/lisp/window.el.
362 (defmacro-maybe save-selected-window (&rest body)
363   "Execute BODY, then select the window that was selected before BODY.
364 \[Emacs 19.31 emulating function]"
365   (list 'let
366         '((save-selected-window-window (selected-window)))
367         (list 'unwind-protect
368               (cons 'progn body)
369               (list 'select-window 'save-selected-window-window))))
370
371 (autoload (function filename-maybe-truncate-by-size) "filename")
372
373 (defun-maybe-cond convert-standard-filename (filename)
374   "Convert a standard file's name to something suitable for the current OS.
375 This function's standard definition is trivial; it just returns the argument.
376 However, on some systems, the function is redefined
377 with a definition that really does change some file names.
378 Under `windows-nt' or `ms-dos', it refers `filename-replacement-alist' and
379 `filename-limit-length' for the basic filename and each parent directory name.
380 \[Emacs 19.31 emulating function]"
381   ((memq system-type '(windows-nt ms-dos))
382    (let* ((names (split-string filename "/"))
383           (drive-name (car names))
384           (filter (function (lambda (string)
385                               (filename-maybe-truncate-by-size
386                                (filename-special-filter string))))))
387      (cond ((eq 1 (length names))
388             (funcall filter drive-name))
389            ((string-match "^[^/]:$" drive-name)
390             (concat drive-name "/" (mapconcat filter (cdr names) "/")))
391            (t (mapconcat filter names "/")))))
392   (t filename))
393
394
395 ;;; @ Emacs 20.1 emulation
396 ;;;
397
398 ;; imported from emacs-20.3/lisp/subr.el.
399 (defsubst-maybe caar (x)
400   "Return the car of the car of X."
401   (car (car x)))
402
403 ;; imported from emacs-20.3/lisp/subr.el.
404 (defsubst-maybe cadr (x)
405   "Return the car of the cdr of X."
406   (car (cdr x)))
407
408 ;; imported from emacs-20.3/lisp/subr.el.
409 (defsubst-maybe cdar (x)
410   "Return the cdr of the car of X."
411   (cdr (car x)))
412
413 ;; imported from emacs-20.3/lisp/subr.el.
414 (defsubst-maybe cddr (x)
415   "Return the cdr of the cdr of X."
416   (cdr (cdr x)))
417
418 ;; imported from emacs-20.3/lisp/subr.el.
419 (defun-maybe last (x &optional n)
420   "Return the last link of the list X.  Its car is the last element.
421 If X is nil, return nil.
422 If N is non-nil, return the Nth-to-last link of X.
423 If N is bigger than the length of X, return X."
424   (if n
425       (let ((m 0) (p x))
426         (while (consp p)
427           (setq m (1+ m) p (cdr p)))
428         (if (<= n 0) p
429           (if (< n m) (nthcdr (- m n) x) x)))
430     (while (cdr x)
431       (setq x (cdr x)))
432     x))
433
434 ;; In Emacs 20.3, save-current-buffer is defined in src/editfns.c.
435 (defmacro-maybe save-current-buffer (&rest body)
436   "Save the current buffer; execute BODY; restore the current buffer.
437 Executes BODY just like `progn'."
438   (` (let ((orig-buffer (current-buffer)))
439        (unwind-protect
440            (progn (,@ body))
441          (if (buffer-live-p orig-buffer)
442              (set-buffer orig-buffer))))))
443
444 ;; imported from emacs-20.3/lisp/subr.el. (with macro style change)
445 (defmacro-maybe with-current-buffer (buffer &rest body)
446   "Execute the forms in BODY with BUFFER as the current buffer.
447 The value returned is the value of the last form in BODY.
448 See also `with-temp-buffer'."
449   (` (save-current-buffer
450        (set-buffer (, buffer))
451        (,@ body))))
452
453 ;; imported from emacs-20.3/lisp/subr.el. (with macro style change)
454 (defmacro-maybe with-temp-file (file &rest forms)
455   "Create a new buffer, evaluate FORMS there, and write the buffer to FILE.
456 The value of the last form in FORMS is returned, like `progn'.
457 See also `with-temp-buffer'."
458   (let ((temp-file (make-symbol "temp-file"))
459         (temp-buffer (make-symbol "temp-buffer")))
460     (` (let (((, temp-file) (, file))
461              ((, temp-buffer)
462               (get-buffer-create (generate-new-buffer-name " *temp file*"))))
463          (unwind-protect
464              (prog1
465                  (with-current-buffer (, temp-buffer)
466                    (,@ forms))
467                (with-current-buffer (, temp-buffer)
468                  (widen)
469                  (write-region (point-min) (point-max) (, temp-file) nil 0)))
470            (and (buffer-name (, temp-buffer))
471                 (kill-buffer (, temp-buffer))))))))
472
473 ;; imported from emacs-20.3/lisp/subr.el. (with macro style change)
474 (defmacro-maybe with-temp-buffer (&rest forms)
475   "Create a temporary buffer, and evaluate FORMS there like `progn'.
476 See also `with-temp-file' and `with-output-to-string'."
477   (let ((temp-buffer (make-symbol "temp-buffer")))
478     (` (let (((, temp-buffer)
479               (get-buffer-create (generate-new-buffer-name " *temp*"))))
480          (unwind-protect
481              (with-current-buffer (, temp-buffer)
482                (,@ forms))
483            (and (buffer-name (, temp-buffer))
484                 (kill-buffer (, temp-buffer))))))))
485
486 (defmacro-maybe combine-after-change-calls (&rest body)
487   "Execute BODY."
488   (cons 'progn body))
489
490 ;; imported from emacs-20.3/lisp/subr.el.
491 (defun-maybe functionp (object)
492   "Non-nil if OBJECT is a type of object that can be called as a function."
493   (or (subrp object) (byte-code-function-p object)
494       (eq (car-safe object) 'lambda)
495       (and (symbolp object) (fboundp object))))
496
497 ;; imported from emacs-20.3/lisp/emacs-lisp/cl.el.
498 (defun-maybe butlast (x &optional n)
499   "Returns a copy of LIST with the last N elements removed."
500   (if (and n (<= n 0)) x
501     (nbutlast (copy-sequence x) n)))
502
503 ;; imported from emacs-20.3/lisp/emacs-lisp/cl.el.
504 (defun-maybe nbutlast (x &optional n)
505   "Modifies LIST to remove the last N elements."
506   (let ((m (length x)))
507     (or n (setq n 1))
508     (and (< n m)
509          (progn
510            (if (> n 0) (setcdr (nthcdr (- (1- m) n) x) nil))
511            x))))
512
513 ;; imported from XEmacs 21.
514 (defun-maybe split-string (string &optional pattern)
515   "Return a list of substrings of STRING which are separated by PATTERN.
516 If PATTERN is omitted, it defaults to \"[ \\f\\t\\n\\r\\v]+\"."
517   (or pattern
518       (setq pattern "[ \f\t\n\r\v]+"))
519   ;; The FSF version of this function takes care not to cons in case
520   ;; of infloop.  Maybe we should synch?
521   (let (parts (start 0))
522     (while (string-match pattern string start)
523       (setq parts (cons (substring string start (match-beginning 0)) parts)
524             start (match-end 0)))
525     (nreverse (cons (substring string start) parts))))
526
527 ;; emulating char-before of Emacs 20.
528 (static-condition-case nil
529     ;; compile-time check.
530     (progn
531       ;; XXX: this file is already loaded at compile-time,
532       ;; so this test will always success.
533       (char-before)
534       ;; If our definition is found at compile-time, signal an error.
535       ;; XXX: should signal more specific error. 
536       (if (get 'char-before 'defun-maybe)
537           (error "")))
538   (wrong-number-of-arguments            ; Mule 1.*, 2.*.
539    ;; load-time check.
540    (or (fboundp 'si:char-before)
541        (progn
542          (fset 'si:char-before (symbol-function 'char-before))
543          (put 'char-before 'defun-maybe t)
544          ;; takes IGNORED for backward compatibility.
545          (defun char-before (&optional pos ignored)
546            "\
547 Return character in current buffer preceding position POS.
548 POS is an integer or a buffer pointer.
549 If POS is out of range, the value is nil."
550            (si:char-before (or pos (point)))))))
551   (void-function                        ; non-Mule.
552    ;; load-time check.
553    (defun-maybe char-before (&optional pos)
554      "\
555 Return character in current buffer preceding position POS.
556 POS is an integer or a buffer pointer.
557 If POS is out of range, the value is nil."
558      (if pos
559          (save-excursion
560            (and (= (goto-char pos) (point))
561                 (not (bobp))
562                 (preceding-char)))
563        (and (not (bobp))
564             (preceding-char)))))
565   (error                                ; found our definition at compile-time.
566    ;; load-time check.
567    (condition-case nil
568        (char-before)
569      (wrong-number-of-arguments         ; Mule 1.*, 2.*.
570       (or (fboundp 'si:char-before)
571           (progn
572             (fset 'si:char-before (symbol-function 'char-before))
573             (put 'char-before 'defun-maybe t)
574             ;; takes IGNORED for backward compatibility.
575             (defun char-before (&optional pos ignored)
576               "\
577 Return character in current buffer preceding position POS.
578 POS is an integer or a buffer pointer.
579 If POS is out of range, the value is nil."
580               (si:char-before (or pos (point)))))))
581      (void-function                     ; non-Mule.
582       (defun-maybe char-before (&optional pos)
583         "\
584 Return character in current buffer preceding position POS.
585 POS is an integer or a buffer pointer.
586 If POS is out of range, the value is nil."
587         (if pos
588             (save-excursion
589               (and (= (goto-char pos) (point))
590                    (not (bobp))
591                    (preceding-char)))
592           (and (not (bobp))
593                (preceding-char))))))))
594
595 ;; emulating char-after of Emacs 20.
596 (static-condition-case nil
597     ;; compile-time check.
598     (progn
599       ;; XXX: this file is already loaded at compile-time,
600       ;; so this test will always success.
601       (char-after)
602       ;; If our definition is found at compile-time, signal an error.
603       ;; XXX: should signal more specific error. 
604       (if (get 'char-after 'defun-maybe)
605           (error "")))
606   (wrong-number-of-arguments            ; v18, v19
607    ;; load-time check.
608    (or (fboundp 'si:char-after)
609        (progn
610          (fset 'si:char-after (symbol-function 'char-after))
611          (put 'char-after 'defun-maybe t)
612          (defun char-after (&optional pos)
613            "\
614 Return character in current buffer at position POS.
615 POS is an integer or a buffer pointer.
616 If POS is out of range, the value is nil."
617            (si:char-after (or pos (point)))))))
618   (void-function                        ; NEVER happen?
619    ;; load-time check.
620    (defun-maybe char-after (&optional pos)
621      "\
622 Return character in current buffer at position POS.
623 POS is an integer or a buffer pointer.
624 If POS is out of range, the value is nil."
625      (if pos
626          (save-excursion
627            (and (= (goto-char pos) (point))
628                 (not (eobp))
629                 (following-char)))
630        (and (not (eobp))
631             (following-char)))))
632   (error                                ; found our definition at compile-time.
633    ;; load-time check.
634    (condition-case nil
635        (char-after)
636      (wrong-number-of-arguments         ; v18, v19
637       (or (fboundp 'si:char-after)
638           (progn
639             (fset 'si:char-after (symbol-function 'char-after))
640             (put 'char-after 'defun-maybe t)
641             (defun char-after (&optional pos)
642               "\
643 Return character in current buffer at position POS.
644 POS is an integer or a buffer pointer.
645 If POS is out of range, the value is nil."
646               (si:char-after (or pos (point)))))))
647      (void-function                     ; NEVER happen?
648       (defun-maybe char-after (&optional pos)
649         "\
650 Return character in current buffer at position POS.
651 POS is an integer or a buffer pointer.
652 If POS is out of range, the value is nil."
653         (if pos
654             (save-excursion
655               (and (= (goto-char pos) (point))
656                    (not (eobp))
657                    (following-char)))
658           (and (not (eobp))
659                (following-char))))))))
660
661
662 ;;; @ Emacs 20.3 emulation
663 ;;;
664
665 ;; imported from emacs-20.3/lisp/files.el.
666 (defvar-maybe temporary-file-directory
667   (file-name-as-directory
668    (cond ((memq system-type '(ms-dos windows-nt))
669           (or (getenv "TEMP") (getenv "TMPDIR") (getenv "TMP") "c:/temp"))
670          ((memq system-type '(vax-vms axp-vms))
671           (or (getenv "TMPDIR") (getenv "TMP") (getenv "TEMP") "SYS$SCRATCH:"))
672          (t
673           (or (getenv "TMPDIR") (getenv "TMP") (getenv "TEMP") "/tmp"))))
674   "The directory for writing temporary files.")
675
676 (defun-maybe line-beginning-position (&optional n)
677   "Return the character position of the first character on the current line.
678 With argument N not nil or 1, move forward N - 1 lines first.
679 If scan reaches end of buffer, return that position.
680 This function does not move point."
681   (save-excursion
682     (forward-line (1- (or n 1)))
683     (point)))
684
685 (defun-maybe line-end-position (&optional n)
686   "Return the character position of the last character on the current line.
687 With argument N not nil or 1, move forward N - 1 lines first.
688 If scan reaches end of buffer, return that position.
689 This function does not move point."
690   (save-excursion
691     (end-of-line (or n 1))
692     (point)))
693
694 (defun-maybe string (&rest chars)
695   "Concatenate all the argument characters and make the result a string."
696   (mapconcat (function char-to-string) chars ""))
697
698     
699 ;;; @ XEmacs emulation
700 ;;;
701
702 (defun-maybe find-face (face-or-name)
703   "Retrieve the face of the given name.
704 If FACE-OR-NAME is a face object, it is simply returned.
705 Otherwise, FACE-OR-NAME should be a symbol.  If there is no such face,
706 nil is returned.  Otherwise the associated face object is returned.
707 \[XEmacs emulating function]"
708   (car (memq face-or-name (face-list))))
709
710 (defun-maybe point-at-bol (&optional n buffer)
711   "Return the character position of the first character on the current line.
712 With argument N not nil or 1, move forward N - 1 lines first.
713 If scan reaches end of buffer, return that position.
714 This function does not move point.
715 \[XEmacs emulating function]"
716   (save-excursion
717     (if buffer (set-buffer buffer))
718     (forward-line (1- (or n 1)))
719     (point)))
720
721 (defun-maybe point-at-eol (&optional n buffer)
722   "Return the character position of the last character on the current line.
723 With argument N not nil or 1, move forward N - 1 lines first.
724 If scan reaches end of buffer, return that position.
725 This function does not move point.
726 \[XEmacs emulating function]"
727   (save-excursion
728     (if buffer (set-buffer buffer))
729     (end-of-line (or n 1))
730     (point)))
731
732 (defsubst-maybe define-obsolete-function-alias (oldfun newfun)
733   "Define OLDFUN as an obsolete alias for function NEWFUN.
734 This makes calling OLDFUN equivalent to calling NEWFUN and marks OLDFUN
735 as obsolete.
736 \[XEmacs emulating function]"
737   (defalias oldfun newfun)
738   (make-obsolete oldfun newfun))
739
740 (when (subr-fboundp 'read-event)
741   ;; for Emacs 19 or later
742
743   (defun-maybe-cond next-command-event (&optional event prompt)
744     "Read an event object from the input stream.
745 If EVENT is non-nil, it should be an event object and will be filled
746 in and returned; otherwise a new event object will be created and
747 returned.
748 If PROMPT is non-nil, it should be a string and will be displayed in
749 the echo area while this function is waiting for an event.
750 \[XEmacs emulating function]"
751     ((subr-fboundp 'string)
752      ;; for Emacs 20.3 or later
753      (read-event prompt t)
754      )
755     (t
756      (if prompt (message prompt))
757      (read-event)
758      ))
759
760   (defsubst-maybe character-to-event (ch)
761     "Convert keystroke CH into an event structure, replete with bucky bits.
762 Note that CH (the keystroke specifier) can be an integer, a character
763 or a symbol such as 'clear. [XEmacs emulating function]"
764     ch)
765
766   (defsubst-maybe event-to-character (event)
767     "Return the character approximation to the given event object.
768 If the event isn't a keypress, this returns nil.
769 \[XEmacs emulating function]"
770     (cond ((symbolp event)
771            ;; mask is (BASE-TYPE MODIFIER-BITS) or nil.
772            (let ((mask (get event 'event-symbol-element-mask)))
773              (if mask
774                  (let ((base (get (car mask) 'ascii-character)))
775                    (if base
776                        (logior base (car (cdr mask)))
777                      )))))
778           ((integerp event) event)))
779   )
780
781
782 ;;; @ MULE 2 emulation
783 ;;;
784
785 (defun-maybe-cond cancel-undo-boundary ()
786   "Cancel undo boundary. [MULE 2.3 emulating function]"
787   ((boundp 'buffer-undo-list)
788    ;; for Emacs 19.7 or later
789    (if (and (consp buffer-undo-list)
790             ;; if car is nil.
791             (null (car buffer-undo-list)))
792        (setq buffer-undo-list (cdr buffer-undo-list))
793      ))
794   (t
795    ;; for anything older than Emacs 19.7.    
796    ))
797
798
799 ;;; @ end
800 ;;;
801
802 ;;; poe.el ends here