update.
[elisp/apel.git] / poe-18.el
1 ;;; poe-18.el --- poe API implementation for Emacs 18.*
2
3 ;; Copyright (C) 1995,1996,1997,1998,1999 Free Software Foundation, Inc.
4 ;; Copyright (C) 1999 Yuuichi Teranishi
5
6 ;; Author: MORIOKA Tomohiko <tomo@m17n.org>
7 ;;      Shuhei KOBAYASHI <shuhei@aqua.ocn.ne.jp>
8 ;;      Yuuichi Teranishi <teranisi@gohome.org>
9 ;; Keywords: emulation, compatibility
10
11 ;; This file is part of APEL (A Portable Emacs Library).
12
13 ;; This program is free software; you can redistribute it and/or
14 ;; modify it under the terms of the GNU General Public License as
15 ;; published by the Free Software Foundation; either version 2, or (at
16 ;; your option) any later version.
17
18 ;; This program is distributed in the hope that it will be useful, but
19 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
21 ;; General Public License for more details.
22
23 ;; You should have received a copy of the GNU General Public License
24 ;; along with this program; see the file COPYING.  If not, write to the
25 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
26 ;; Boston, MA 02111-1307, USA.
27
28 ;;; Commentary:
29
30 ;; Note to APEL developers and APEL programmers:
31 ;;
32 ;; If old (v18) compiler is used, top-level macros are expanded at
33 ;; *load-time*, not compile-time. Therefore,
34 ;;
35 ;; (1) Definitions with `*-maybe' won't be compiled.
36 ;;
37 ;; (2) you cannot use macros defined with `defmacro-maybe' within function
38 ;;     definitions in the same file.
39 ;;     (`defmacro-maybe' is evaluated at load-time, therefore byte-compiler
40 ;;      treats such use of macros as (unknown) functions and compiles them
41 ;;      into function calls, which will cause errors at run-time.)
42 ;;
43 ;; (3) `eval-when-compile' and `eval-and-compile' are evaluated at
44 ;;     load-time if used at top-level.
45
46 ;;; Code:
47
48 (require 'pym)
49
50
51 ;;; @ Compilation.
52 ;;;
53 (fset 'defalias 'fset)
54
55 (defun byte-code-function-p (object)
56   "Return t if OBJECT is a byte-compiled function object."
57   (and (consp object) (consp (cdr object))
58        (let ((rest (cdr (cdr object)))
59              elt)
60          (if (stringp (car rest))
61              (setq rest (cdr rest)))
62          (catch 'tag
63            (while rest
64              (setq elt (car rest))
65              (if (and (consp elt)
66                       (eq (car elt) 'byte-code))
67                  (throw 'tag t))
68              (setq rest (cdr rest)))))))
69
70 ;; (symbol-plist 'cyclic-function-indirection)
71 (put 'cyclic-function-indirection
72      'error-conditions
73      '(cyclic-function-indirection error))
74 (put 'cyclic-function-indirection
75      'error-message
76      "Symbol's chain of function indirections contains a loop")
77
78 ;; The following function definition is a direct translation of its
79 ;; C definition in emacs-20.4/src/data.c.
80 (defun indirect-function (object)
81   "Return the function at the end of OBJECT's function chain.
82 If OBJECT is a symbol, follow all function indirections and return the final
83 function binding.
84 If OBJECT is not a symbol, just return it.
85 Signal a void-function error if the final symbol is unbound.
86 Signal a cyclic-function-indirection error if there is a loop in the
87 function chain of symbols."
88   (let* ((hare object)
89          (tortoise hare))
90     (catch 'found
91       (while t
92         (or (symbolp hare) (throw 'found hare))
93         (or (fboundp hare) (signal 'void-function (cons object nil)))
94         (setq hare (symbol-function hare))
95         (or (symbolp hare) (throw 'found hare))
96         (or (fboundp hare) (signal 'void-function (cons object nil)))
97         (setq hare (symbol-function hare))
98
99         (setq tortoise (symbol-function tortoise))
100
101         (if (eq hare tortoise)
102             (signal 'cyclic-function-indirection (cons object nil)))))
103     hare))
104
105 ;;; Emulate all functions and macros of emacs-20.3/lisp/byte-run.el.
106 ;;; (note: jwz's original compiler and XEmacs compiler have some more
107 ;;;  macros; they are "nuked" by rms in FSF version.)
108
109 ;; Use `*-maybe' here because new byte-compiler may be installed.
110 (put 'inline 'lisp-indent-hook 0)
111 (defmacro-maybe inline (&rest body)
112   "Eval BODY forms sequentially and return value of last one.
113
114 This emulating macro does not support function inlining because old \(v18\)
115 compiler does not support inlining feature."
116   (cons 'progn body))
117
118 (put 'defsubst 'lisp-indent-hook 'defun)
119 (put 'defsubst 'edebug-form-spec 'defun)
120 (defmacro-maybe defsubst (name arglist &rest body)
121   "Define an inline function.  The syntax is just like that of `defun'.
122
123 This emulating macro does not support function inlining because old \(v18\)
124 compiler does not support inlining feature."
125   (cons 'defun (cons name (cons arglist body))))
126
127 (defun-maybe make-obsolete (fn new)
128   "Make the byte-compiler warn that FUNCTION is obsolete.
129 The warning will say that NEW should be used instead.
130 If NEW is a string, that is the `use instead' message.
131
132 This emulating function does nothing because old \(v18\) compiler does not
133 support this feature."
134   (interactive "aMake function obsolete: \nxObsoletion replacement: ")
135   fn)
136
137 (defun-maybe make-obsolete-variable (var new)
138   "Make the byte-compiler warn that VARIABLE is obsolete,
139 and NEW should be used instead.  If NEW is a string, then that is the
140 `use instead' message.
141
142 This emulating function does nothing because old \(v18\) compiler does not
143 support this feature."
144   (interactive "vMake variable obsolete: \nxObsoletion replacement: ")
145   var)
146
147 (put 'dont-compile 'lisp-indent-hook 0)
148 (defmacro-maybe dont-compile (&rest body)
149   "Like `progn', but the body always runs interpreted \(not compiled\).
150 If you think you need this, you're probably making a mistake somewhere."
151   (list 'eval (list 'quote (if (cdr body) (cons 'progn body) (car body)))))
152
153 (put 'eval-when-compile 'lisp-indent-hook 0)
154 (defmacro-maybe eval-when-compile (&rest body)
155   "Like progn, but evaluates the body at compile-time.
156
157 This emulating macro does not do compile-time evaluation at all because
158 of the limitation of old \(v18\) compiler."
159   (cons 'progn body))
160
161 (put 'eval-and-compile 'lisp-indent-hook 0)
162 (defmacro-maybe eval-and-compile (&rest body)
163   "Like progn, but evaluates the body at compile-time as well as at load-time.
164
165 This emulating macro does not do compile-time evaluation at all because
166 of the limitation of old \(v18\) compiler."
167   (cons 'progn body))
168
169
170 ;;; @ C primitives emulation.
171 ;;;
172
173 (defun member (elt list)
174   "Return non-nil if ELT is an element of LIST.  Comparison done with EQUAL.
175 The value is actually the tail of LIST whose car is ELT."
176   (while (and list (not (equal elt (car list))))
177     (setq list (cdr list)))
178   list)
179
180 (defun delete (elt list)
181   "Delete by side effect any occurrences of ELT as a member of LIST.
182 The modified LIST is returned.  Comparison is done with `equal'.
183 If the first member of LIST is ELT, deleting it is not a side effect;
184 it is simply using a different list.
185 Therefore, write `(setq foo (delete element foo))'
186 to be sure of changing the value of `foo'."
187   (if list
188       (if (equal elt (car list))
189           (cdr list)
190         (let ((rest list)
191               (rrest (cdr list)))
192           (while (and rrest (not (equal elt (car rrest))))
193             (setq rest rrest
194                   rrest (cdr rrest)))
195           (setcdr rest (cdr rrest))
196           list))))
197
198 (defun default-boundp (symbol)
199   "Return t if SYMBOL has a non-void default value.
200 This is the value that is seen in buffers that do not have their own values
201 for this variable."
202   (condition-case error
203       (progn
204         (default-value symbol)
205         t)
206     (void-variable nil)))
207
208 ;;; @@ current-time.
209 ;;;
210
211 (defvar current-time-world-timezones
212   '(("PST" .  -800)("PDT" .  -700)("MST" .  -700)
213     ("MDT" .  -600)("CST" .  -600)("CDT" .  -500)
214     ("EST" .  -500)("EDT" .  -400)("AST" .  -400)
215     ("NST" .  -330)("UT"  .  +000)("GMT" .  +000)
216     ("BST" .  +100)("MET" .  +100)("EET" .  +200)
217     ("JST" .  +900)("GMT+1"  .  +100)("GMT+2"  .  +200)
218     ("GMT+3"  .  +300)("GMT+4"  .  +400)("GMT+5"  .  +500)
219     ("GMT+6"  .  +600)("GMT+7"  .  +700)("GMT+8"  .  +800)
220     ("GMT+9"  .  +900)("GMT+10" . +1000)("GMT+11" . +1100)
221     ("GMT+12" . +1200)("GMT+13" . +1300)("GMT-1"  .  -100)
222     ("GMT-2"  .  -200)("GMT-3"  .  -300)("GMT-4"  .  -400)
223     ("GMT-5"  .  -500)("GMT-6"  .  -600)("GMT-7"  .  -700)
224     ("GMT-8"  .  -800)("GMT-9"  .  -900)("GMT-10" . -1000)
225     ("GMT-11" . -1100) ("GMT-12" . -1200))
226   "Time differentials of timezone from GMT in +-HHMM form.
227 Used in `current-time-zone' (Emacs 19 emulating function by APEL).")
228
229 (defvar current-time-local-timezone nil 
230   "*Local timezone name.
231 Used in `current-time-zone' (Emacs 19 emulating function by APEL).")
232
233 (defun set-time-zone-rule (tz)
234   "Set the local time zone using TZ, a string specifying a time zone rule.
235 If TZ is nil, use implementation-defined default time zone information.
236 If TZ is t, use Universal Time."
237   (cond
238    ((stringp tz)
239     (setq current-time-local-timezone tz))
240    (tz
241     (setq current-time-local-timezone "GMT"))
242    (t
243     (setq current-time-local-timezone
244           (with-temp-buffer
245             ;; We use `date' command to get timezone information.
246             (call-process "date" nil (current-buffer) t)
247             (goto-char (point-min))
248             (if (looking-at 
249                  "^.*\\([A-Z][A-Z][A-Z]\\([^ \n\t]*\\)\\).*$")
250                 (buffer-substring (match-beginning 1)
251                                   (match-end 1))))))))
252
253 (defun current-time-zone (&optional specified-time)
254   "Return the offset and name for the local time zone.
255 This returns a list of the form (OFFSET NAME).
256 OFFSET is an integer number of seconds ahead of UTC (east of Greenwich).
257     A negative value means west of Greenwich.
258 NAME is a string giving the name of the time zone.
259 Optional argument SPECIFIED-TIME is ignored in this implementation.
260 Some operating systems cannot provide all this information to Emacs;
261 in this case, `current-time-zone' returns a list containing nil for
262 the data it can't find."
263   (let ((local-timezone (or current-time-local-timezone
264                             (progn
265                               (set-time-zone-rule nil)
266                               current-time-local-timezone)))
267         timezone abszone seconds)
268     (setq timezone
269           (or (cdr (assoc (upcase local-timezone) 
270                           current-time-world-timezones))
271               ;; "+900" style or nil.
272               local-timezone))
273     (when timezone
274       (if (stringp timezone)
275           (setq timezone (string-to-int timezone)))
276       ;; Taking account of minute in timezone.
277       ;; HHMM -> MM
278       (setq abszone (abs timezone))
279       (setq seconds (* 60 (+ (* 60 (/ abszone 100)) (% abszone 100))))
280       (list (if (< timezone 0) (- seconds) seconds)
281             local-timezone))))
282
283 (or (fboundp 'si:current-time-string)
284     (fset 'si:current-time-string (symbol-function 'current-time-string)))
285 (defun current-time-string (&optional specified-time)
286   "Return the current time, as a human-readable string.
287 Programs can use this function to decode a time,
288 since the number of columns in each field is fixed.
289 The format is `Sun Sep 16 01:03:52 1973'.
290 If an argument SPECIFIED-TIME is given, it specifies a time to format
291 instead of the current time.  The argument should have the form:
292   (HIGH . LOW)
293 or the form:
294   (HIGH LOW . IGNORED).
295 Thus, you can use times obtained from `current-time'
296 and from `file-attributes'."
297   (if (null specified-time)
298       (si:current-time-string)
299     (or (consp specified-time)
300         (error "Wrong type argument %s" specified-time))
301     (let ((high (car specified-time))
302           (low  (cdr specified-time))
303           (offset (or (car (current-time-zone)) 0))
304           (mdays '(31 28 31 30 31 30 31 31 30 31 30 31))
305           (mnames '("Jan" "Feb" "Mar" "Apr" "May" "Jun" 
306                     "Jul" "Aug" "Sep" "Oct" "Nov" "Dec"))
307           (wnames '("Sun" "Mon" "Tue" "Wed" "Thu" "Fri" "Sat"))
308           days dd yyyy lyear mm HH MM SS)
309       (if (consp low)
310           (setq low (car low)))
311       (or (integerp high)
312           (error "Wrong type argument %s" high))
313       (or (integerp low)
314           (error "Wrong type argument %s" low))
315       (setq low (+ low offset))
316       (while (> low 65535)
317         (setq high (1+ high)
318               low (- low 65536)))
319       (setq yyyy 1970)
320       (while (or (> high 481)
321                  (and (= high 481)
322                       (>= low 13184)))
323         (if (and (> high 0)
324                  (< low 13184))
325             (setq high (1- high)
326                   low  (+ 65536 low)))
327         (setq high (- high 481)
328               low  (- low 13184))
329         (if (and (zerop (% yyyy 4))
330                  (or (not (zerop (% yyyy 100)))
331                      (zerop (% yyyy 400))))
332             (progn
333               (if (and (> high 0) 
334                        (< low 20864))
335                   (setq high (1- high)
336                         low  (+ 65536 low)))
337               (setq high (- high 1)
338                     low (- low 20864))))
339         (setq yyyy (1+ yyyy)))
340       (setq dd 1)
341       (while (or (> high 1)
342                  (and (= high 1)
343                       (>= low 20864)))
344         (if (and (> high 0)
345                  (< low 20864))
346             (setq high (1- high)
347                   low  (+ 65536 low)))
348         (setq high (- high 1)
349               low  (- low 20864)
350               dd (1+ dd)))
351       (setq days dd)
352       (if (= high 1)
353           (setq low (+ 65536 low)))
354       (setq mm 0)
355       (setq lyear (and (zerop (% yyyy 4))
356                        (or (not (zerop (% yyyy 100)))
357                            (zerop (% yyyy 400)))))
358       (while (> (- dd  (if (and lyear (= mm 1)) 29 (nth mm mdays))) 0)
359         (setq dd (- dd (if (and lyear (= mm 1)) 29 (nth mm mdays))))
360         (setq mm (1+ mm)))
361       (setq HH (/ low 3600)
362             low (% low 3600)
363             MM (/ low 60)
364             SS (% low 60))
365       (format "%s %s %2d %02d:%02d:%02d %4d"
366               (nth (% (+ days
367                          (- (+ (* (1- yyyy) 365) (/ (1- yyyy) 400) 
368                                (/ (1- yyyy) 4)) (/ (1- yyyy) 100))) 7)
369                    wnames)
370               (nth mm mnames)
371               dd HH MM SS yyyy))))
372
373 (defun current-time ()
374   "Return the current time, as the number of seconds since 1970-01-01 00:00:00.
375 The time is returned as a list of three integers.  The first has the
376 most significant 16 bits of the seconds, while the second has the
377 least significant 16 bits.  The third integer gives the microsecond
378 count.
379
380 The microsecond count is zero on systems that do not provide
381 resolution finer than a second."
382   (let* ((str (current-time-string))
383          (yyyy (string-to-int (substring str 20 24)))
384          (mm (length (member (substring str 4 7)
385                              '("Dec" "Nov" "Oct" "Sep" "Aug" "Jul"
386                                "Jun" "May" "Apr" "Mar" "Feb" "Jan"))))
387          (dd (string-to-int (substring str 8 10)))
388          (HH (string-to-int (substring str 11 13)))
389          (MM (string-to-int (substring str 14 16)))
390          (SS (string-to-int (substring str 17 19)))
391          (offset (or (car (current-time-zone)) 0))
392          dn ct1 ct2 i1 i2
393          year uru)
394     (setq ct1 0 ct2 0 i1 0 i2 0)
395     (setq year (- yyyy 1970))
396     (while (> year 0)
397       (setq year (1- year)
398             ct1 (+ ct1 481)
399             ct2 (+ ct2 13184))
400       (while (> ct2 65535)
401         (setq ct1 (1+ ct1)
402               ct2 (- ct2 65536))))
403     (setq year (- yyyy 1))
404     (setq uru (- (+ (- (/ year 4) (/ year 100)) 
405                     (/ year 400)) 477))
406     (while (> uru 0)
407       (setq uru (1- uru)
408             i1 (1+ i1)
409             i2 (+ i2 20864))
410       (if (> i2 65535)
411           (setq i1 (1+ i1)
412                 i2 (- i2 65536))))
413     (setq ct1 (+ ct1 i1)
414           ct2 (+ ct2 i2))
415     (while (> ct2 65535)
416       (setq ct1 (1+ ct1)
417             ct2 (- ct2 65536)))
418     (setq dn (+ dd (* 31 (1- mm))))
419     (if (> mm 2)
420         (setq dn (+ (- dn (/ (+ 23 (* 4 mm)) 10))
421                     (if (and (zerop (% yyyy 4))
422                              (or (not (zerop (% yyyy 100)))
423                                  (zerop (% yyyy 400))))
424                         1 0))))
425     (setq dn (1- dn)
426           i1 0 
427           i2 0)
428     (while (> dn 0)
429       (setq dn (1- dn)
430             i1 (1+ i1)
431             i2 (+ i2 20864))
432       (if (> i2 65535)
433           (setq i1 (1+ i1)
434                 i2 (- i2 65536))))
435     (setq ct1 (+ (+ (+ ct1 i1) (/ ct2 65536)) 
436                  (/ (+ (* HH 3600) (* MM 60) SS)
437                     65536))
438           ct2 (+ (+ i2 (% ct2 65536))
439                  (% (+ (* HH 3600) (* MM 60) SS)
440                     65536)))
441     (while (< (- ct2 offset) 0)
442       (setq ct1 (1- ct1)
443             ct2 (+ ct2 65536)))
444     (setq ct2 (- ct2 offset))
445     (while (> ct2 65535)
446       (setq ct1 (1+ ct1)
447             ct2 (- ct2 65536)))
448     (list ct1 ct2 0)))
449
450 ;;; @@ Floating point numbers.
451 ;;;
452
453 (defun abs (arg)
454   "Return the absolute value of ARG."
455   (if (< arg 0) (- arg) arg))
456
457 ;;; @ Basic lisp subroutines.
458 ;;;
459
460 (defmacro lambda (&rest cdr)
461   "Return a lambda expression.
462 A call of the form (lambda ARGS DOCSTRING INTERACTIVE BODY) is
463 self-quoting; the result of evaluating the lambda expression is the
464 expression itself.  The lambda expression may then be treated as a
465 function, i.e., stored as the function value of a symbol, passed to
466 funcall or mapcar, etc.
467
468 ARGS should take the same form as an argument list for a `defun'.
469 DOCSTRING is an optional documentation string.
470  If present, it should describe how to call the function.
471  But documentation strings are usually not useful in nameless functions.
472 INTERACTIVE should be a call to the function `interactive', which see.
473 It may also be omitted.
474 BODY should be a list of lisp expressions."
475   ;; Note that this definition should not use backquotes; subr.el should not
476   ;; depend on backquote.el.
477   (list 'function (cons 'lambda cdr)))
478
479 (defun force-mode-line-update (&optional all)
480   "Force the mode-line of the current buffer to be redisplayed.
481 With optional non-nil ALL, force redisplay of all mode-lines."
482   (if all (save-excursion (set-buffer (other-buffer))))
483   (set-buffer-modified-p (buffer-modified-p)))
484
485 (defalias 'set-match-data 'store-match-data)
486
487 (defvar save-match-data-internal)
488
489 ;; We use save-match-data-internal as the local variable because
490 ;; that works ok in practice (people should not use that variable elsewhere).
491 (defmacro save-match-data (&rest body)
492   "Execute the BODY forms, restoring the global value of the match data."
493   (` (let ((save-match-data-internal (match-data)))
494        (unwind-protect (progn (,@ body))
495          (set-match-data save-match-data-internal)))))
496
497
498 ;;; @ Basic editing commands.
499 ;;;
500
501 ;; 18.55 does not have these variables.
502 (defvar-maybe buffer-undo-list nil
503   "List of undo entries in current buffer.
504 APEL provides this as dummy for a compatibility.")
505
506 (defvar-maybe auto-fill-function nil
507   "Function called (if non-nil) to perform auto-fill.
508 APEL provides this as dummy for a compatibility.")
509
510 (defvar-maybe unread-command-event nil
511   "APEL provides this as dummy for a compatibility.")
512 (defvar-maybe unread-command-events nil
513   "List of events to be read as the command input.
514 APEL provides this as dummy for a compatibility.")
515
516 ;; (defvar-maybe minibuffer-setup-hook nil
517 ;;   "Normal hook run just after entry to minibuffer.")
518 ;; (defvar-maybe minibuffer-exit-hook nil
519 ;;   "Normal hook run just after exit from minibuffer.")
520
521 (defvar-maybe minor-mode-map-alist nil
522   "Alist of keymaps to use for minor modes.
523 APEL provides this as dummy for a compatibility.")
524
525 (defalias 'insert-and-inherit 'insert)
526 (defalias 'insert-before-markers-and-inherit 'insert-before-markers)
527 (defalias 'number-to-string 'int-to-string)
528
529 (defun generate-new-buffer-name (name &optional ignore)
530   "Return a string that is the name of no existing buffer based on NAME.
531 If there is no live buffer named NAME, then return NAME.
532 Otherwise modify name by appending `<NUMBER>', incrementing NUMBER
533 until an unused name is found, and then return that name.
534 Optional second argument IGNORE specifies a name that is okay to use
535 \(if it is in the sequence to be tried\)
536 even if a buffer with that name exists."
537   (if (get-buffer name)
538       (let ((n 2) new)
539         (while (get-buffer (setq new (format "%s<%d>" name n)))
540           (setq n (1+ n)))
541         new)
542     name))
543
544 (or (fboundp 'si:mark)
545     (fset 'si:mark (symbol-function 'mark)))
546 (defun mark (&optional force)
547   (si:mark))
548
549 (defun-maybe window-minibuffer-p (&optional window)
550 "Return non-nil if WINDOW is a minibuffer window."
551   (eq (or window (selected-window)) (minibuffer-window)))
552
553 (defun-maybe window-live-p (obj)
554   "Returns t if OBJECT is a window which is currently visible."
555   (and (windowp obj)
556        (or (eq obj (minibuffer-window))
557            (eq obj (get-buffer-window (window-buffer obj))))))
558
559 ;; Add optinal argument `hist'
560 (or (fboundp 'si:read-from-minibuffer)
561     (progn
562       (fset 'si:read-from-minibuffer (symbol-function 'read-from-minibuffer))
563       (defun read-from-minibuffer (prompt &optional
564                                           initial-contents keymap read hist)
565         
566         "Read a string from the minibuffer, prompting with string PROMPT.
567 If optional second arg INITIAL-CONTENTS is non-nil, it is a string
568   to be inserted into the minibuffer before reading input.
569   If INITIAL-CONTENTS is (STRING . POSITION), the initial input
570   is STRING, but point is placed at position POSITION in the minibuffer.
571 Third arg KEYMAP is a keymap to use whilst reading;
572   if omitted or nil, the default is `minibuffer-local-map'.
573 If fourth arg READ is non-nil, then interpret the result as a lisp object
574   and return that object:
575   in other words, do `(car (read-from-string INPUT-STRING))'
576 Fifth arg HIST is ignored in this implementation."
577         (si:read-from-minibuffer prompt initial-contents keymap read))))
578
579 ;; Add optional argument `frame'.
580 (or (fboundp 'si:get-buffer-window)
581     (progn
582       (fset 'si:get-buffer-window (symbol-function 'get-buffer-window))
583       (defun get-buffer-window (buffer &optional frame)
584         "Return a window currently displaying BUFFER, or nil if none.
585 Optional argument FRAME is ignored in this implementation."
586         (si:get-buffer-window buffer))))
587
588 (defun-maybe walk-windows (proc &optional minibuf all-frames)
589   "Cycle through all visible windows, calling PROC for each one.
590 PROC is called with a window as argument.
591
592 Optional second arg MINIBUF t means count the minibuffer window even
593 if not active.  MINIBUF nil or omitted means count the minibuffer iff
594 it is active.  MINIBUF neither t nor nil means not to count the
595 minibuffer even if it is active.
596 Optional third argument ALL-FRAMES is ignored in this implementation."
597   (if (window-minibuffer-p (selected-window))
598       (setq minibuf t))
599   (let* ((walk-windows-start (selected-window))
600          (walk-windows-current walk-windows-start))
601     (unwind-protect
602         (while (progn
603                  (setq walk-windows-current
604                        (next-window walk-windows-current minibuf))
605                  (funcall proc walk-windows-current)
606                  (not (eq walk-windows-current walk-windows-start))))
607       (select-window walk-windows-start))))
608
609 (defun buffer-disable-undo (&optional buffer)
610   "Make BUFFER stop keeping undo information.
611 No argument or nil as argument means do this for the current buffer."
612    (buffer-flush-undo (or buffer (current-buffer))))
613
614
615 ;;; @@ Frame (Emacs 18 cannot make frame)
616 ;;;
617 ;; The following four are frequently used for manipulating the current frame.
618 ;; frame.el has `screen-width', `screen-height', `set-screen-width' and
619 ;; `set-screen-height' for backward compatibility and declare them as obsolete.
620 (defun frame-width (&optional frame)
621   "Return number of columns available for display on FRAME.
622 If FRAME is omitted, describe the currently selected frame."
623   (screen-width))
624
625 (defun frame-height (&optional frame)
626   "Return number of lines available for display on FRAME.
627 If FRAME is omitted, describe the currently selected frame."
628   (screen-height))
629
630 (defun set-frame-width (frame cols &optional pretend)
631   "Specify that the frame FRAME has COLS columns.
632 Optional third arg non-nil means that redisplay should use COLS columns
633 but that the idea of the actual width of the frame should not be changed."
634   (set-screen-width cols pretend))
635
636 (defun set-frame-height (frame lines &optional pretend)
637   "Specify that the frame FRAME has LINES lines.
638 Optional third arg non-nil means that redisplay should use LINES lines
639 but that the idea of the actual height of the frame should not be changed."
640   (set-screen-height lines pretend))
641
642 ;;; @@ Environment variables.
643 ;;;
644
645 (autoload 'setenv "env"
646   "Set the value of the environment variable named VARIABLE to VALUE.
647 VARIABLE should be a string.  VALUE is optional; if not provided or is
648 `nil', the environment variable VARIABLE will be removed.
649 This function works by modifying `process-environment'."
650   t)
651
652
653 ;;; @ File input and output commands.
654 ;;;
655
656 (defvar data-directory exec-directory)
657
658 ;; In 18.55, `call-process' does not return exit status.
659 (defun file-executable-p (filename)
660   "Return t if FILENAME can be executed by you.
661 For a directory, this means you can access files in that directory."
662   (if (file-exists-p filename)
663       (let ((process (start-process "test" nil "test" "-x" filename)))
664         (while (eq 'run (process-status process)))
665         (zerop (process-exit-status process)))))
666
667 (defun make-directory-internal (dirname)
668   "Create a directory. One argument, a file name string."
669  (let ((dir (expand-file-name dirname)))
670    (if (file-exists-p dir)
671        (error "Creating directory: %s is already exist" dir)
672      (call-process "mkdir" nil nil nil dir))))
673
674 (defun make-directory (dir &optional parents)
675   "Create the directory DIR and any nonexistent parent dirs.
676 The second (optional) argument PARENTS says whether
677 to create parent directories if they don't exist."
678   (let ((len (length dir))
679         (p 0) p1 path)
680     (catch 'tag
681       (while (and (< p len) (string-match "[^/]*/?" dir p))
682         (setq p1 (match-end 0))
683         (if (= p1 len)
684             (throw 'tag nil))
685         (setq path (substring dir 0 p1))
686         (if (not (file-directory-p path))
687             (cond ((file-exists-p path)
688                    (error "Creating directory: %s is not directory" path))
689                   ((null parents)
690                    (error "Creating directory: %s is not exist" path))
691                   (t
692                    (make-directory-internal path))))
693         (setq p p1)))
694     (make-directory-internal dir)))
695
696 (defun parse-colon-path (cd-path)
697   "Explode a colon-separated list of paths into a string list."
698   (and cd-path
699        (let (cd-prefix cd-list (cd-start 0) cd-colon)
700          (setq cd-path (concat cd-path path-separator))
701          (while (setq cd-colon (string-match path-separator cd-path cd-start))
702            (setq cd-list
703                  (nconc cd-list
704                         (list (if (= cd-start cd-colon)
705                                   nil
706                                 (substitute-in-file-name
707                                  (file-name-as-directory
708                                   (substring cd-path cd-start cd-colon)))))))
709            (setq cd-start (+ cd-colon 1)))
710          cd-list)))
711
712 (defun file-relative-name (filename &optional directory)
713   "Convert FILENAME to be relative to DIRECTORY (default: default-directory)."
714   (setq filename (expand-file-name filename)
715         directory (file-name-as-directory (expand-file-name
716                                            (or directory default-directory))))
717   (let ((ancestor ""))
718     (while (not (string-match (concat "^" (regexp-quote directory)) filename))
719       (setq directory (file-name-directory (substring directory 0 -1))
720             ancestor (concat "../" ancestor)))
721     (concat ancestor (substring filename (match-end 0)))))
722
723 (or (fboundp 'si:directory-files)
724     (fset 'si:directory-files (symbol-function 'directory-files)))
725 (defun directory-files (directory &optional full match nosort)
726   "Return a list of names of files in DIRECTORY.
727 There are three optional arguments:
728 If FULL is non-nil, return absolute file names.  Otherwise return names
729  that are relative to the specified directory.
730 If MATCH is non-nil, mention only file names that match the regexp MATCH.
731 If NOSORT is dummy for compatibility."
732   (si:directory-files directory full match))
733
734 ;;; @ Process.
735 ;;; 
736 (or (fboundp 'si:accept-process-output)
737     (progn
738       (fset 'si:accept-process-output (symbol-function 'accept-process-output))
739       (defun accept-process-output (&optional process timeout timeout-msecs)
740         "Allow any pending output from subprocesses to be read by Emacs.
741 It is read into the process' buffers or given to their filter functions.
742 Non-nil arg PROCESS means do not return until some output has been received
743  from PROCESS. Nil arg PROCESS means do not return until some output has
744  been received from any process.
745 TIMEOUT and TIMEOUT-MSECS are ignored in this implementation."
746         (si:accept-process-output process))))
747
748 ;;; @ Text property.
749 ;;;
750
751 ;; In Emacs 20.4, these functions are defined in src/textprop.c.
752 (defun text-properties-at (position &optional object))
753 (defun get-text-property (position prop &optional object))
754 (defun get-char-property (position prop &optional object))
755 (defun next-property-change (position &optional object limit))
756 (defun next-single-property-change (position prop &optional object limit))
757 (defun previous-property-change (position &optional object limit))
758 (defun previous-single-property-change (position prop &optional object limit))
759 (defun add-text-properties (start end properties &optional object))
760 (defun put-text-property (start end property value &optional object))
761 (defun set-text-properties (start end properties &optional object))
762 (defun remove-text-properties (start end properties &optional object))
763 (defun text-property-any (start end property value &optional object))
764 (defun text-property-not-all (start end property value &optional object))
765 ;; the following two functions are new in v20.
766 (defun next-char-property-change (position &optional object))
767 (defun previous-char-property-change (position &optional object))
768 ;; the following two functions are obsolete.
769 ;; (defun erase-text-properties (start end &optional object)
770 ;; (defun copy-text-properties (start end src pos dest &optional prop)
771
772
773 ;;; @ Overlay.
774 ;;;
775
776 (defun overlayp (object))
777 (defun make-overlay (beg end &optional buffer front-advance rear-advance))
778 (defun move-overlay (overlay beg end &optional buffer))
779 (defun delete-overlay (overlay))
780 (defun overlay-start (overlay))
781 (defun overlay-end (overlay))
782 (defun overlay-buffer (overlay))
783 (defun overlay-properties (overlay))
784 (defun overlays-at (pos))
785 (defun overlays-in (beg end))
786 (defun next-overlay-change (pos))
787 (defun previous-overlay-change (pos))
788 (defun overlay-lists ())
789 (defun overlay-recenter (pos))
790 (defun overlay-get (overlay prop))
791 (defun overlay-put (overlay prop value))
792
793 ;;; @ End.
794 ;;;
795
796 (require 'product)
797 (product-provide (provide 'poe-18) (require 'apel-ver))
798
799 ;;; poe-18.el ends here