XEmacs 21.2.20 "Yoko".
[chise/xemacs-chise.git.1] / lisp / simple.el
1 ;;; simple.el --- basic editing commands for XEmacs
2
3 ;; Copyright (C) 1985-7, 1993-5, 1997 Free Software Foundation, Inc.
4 ;; Copyright (C) 1995 Tinker Systems and INS Engineering Corp.
5
6 ;; Maintainer: XEmacs Development Team
7 ;; Keywords: lisp, extensions, internal, dumped
8
9 ;; This file is part of XEmacs.
10
11 ;; XEmacs is free software; you can redistribute it and/or modify it
12 ;; under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation; either version 2, or (at your option)
14 ;; any later version.
15
16 ;; XEmacs is distributed in the hope that it will be useful, but
17 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19 ;; General Public License for more details.
20
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with XEmacs; see the file COPYING.  If not, write to the Free
23 ;; Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
24 ;; 02111-1307, USA.
25
26 ;;; Synched up with: FSF 19.34 [But not very closely].
27
28 ;;; Commentary:
29
30 ;; This file is dumped with XEmacs.
31
32 ;; A grab-bag of basic XEmacs commands not specifically related to some
33 ;; major mode or to file-handling.
34
35 ;; Changes for zmacs-style active-regions:
36 ;;
37 ;; beginning-of-buffer, end-of-buffer, count-lines-region,
38 ;; count-lines-buffer, what-line, what-cursor-position, set-goal-column,
39 ;; set-fill-column, prefix-arg-internal, and line-move (which is used by
40 ;; next-line and previous-line) set zmacs-region-stays to t, so that they
41 ;; don't affect the current region-hilighting state.
42 ;;
43 ;; mark-whole-buffer, mark-word, exchange-point-and-mark, and
44 ;; set-mark-command (without an argument) call zmacs-activate-region.
45 ;;
46 ;; mark takes an optional arg like the new Fmark_marker() does.  When
47 ;; the region is not active, mark returns nil unless the optional arg is true.
48 ;;
49 ;; push-mark, pop-mark, exchange-point-and-mark, and set-marker, and
50 ;; set-mark-command use (mark t) so that they can access the mark whether
51 ;; the region is active or not.
52 ;;
53 ;; shell-command, shell-command-on-region, yank, and yank-pop (which all
54 ;; push a mark) have been altered to call exchange-point-and-mark with an
55 ;; argument, meaning "don't activate the region".  These commands  only use
56 ;; exchange-point-and-mark to position the newly-pushed mark correctly, so
57 ;; this isn't a user-visible change.  These functions have also been altered
58 ;; to use (mark t) for the same reason.
59
60 ;; 97/3/14 Jareth Hein (jhod@po.iijnet.or.jp) added kinsoku processing (support
61 ;; for filling of Asian text) into the fill code. This was ripped bleeding from
62 ;; Mule-2.3, and could probably use some feature additions (like additional wrap
63 ;; styles, etc)
64
65 ;; 97/06/11 Steve Baur (steve@altair.xemacs.org) Convert use of
66 ;;  (preceding|following)-char to char-(after|before).
67
68 ;;; Code:
69
70 (defgroup editing-basics nil
71   "Most basic editing variables."
72   :group 'editing)
73
74 (defgroup killing nil
75   "Killing and yanking commands."
76   :group 'editing)
77
78 (defgroup fill-comments nil
79   "Indenting and filling of comments."
80   :prefix "comment-"
81   :group 'fill)
82
83 (defgroup paren-matching nil
84   "Highlight (un)matching of parens and expressions."
85   :prefix "paren-"
86   :group 'matching)
87
88 (defgroup log-message nil
89   "Messages logging and display customizations."
90   :group 'minibuffer)
91
92 (defgroup warnings nil
93   "Warnings customizations."
94   :group 'minibuffer)
95
96
97 (defcustom search-caps-disable-folding t
98   "*If non-nil, upper case chars disable case fold searching.
99 This does not apply to \"yanked\" strings."
100   :type 'boolean
101   :group 'editing-basics)
102
103 ;; This is stolen (and slightly modified) from FSF emacs's
104 ;; `isearch-no-upper-case-p'.
105 (defun no-upper-case-p (string &optional regexp-flag)
106   "Return t if there are no upper case chars in STRING.
107 If REGEXP-FLAG is non-nil, disregard letters preceded by `\\' (but not `\\\\')
108 since they have special meaning in a regexp."
109   (let ((case-fold-search nil))
110     (not (string-match (if regexp-flag 
111                            "\\(^\\|\\\\\\\\\\|[^\\]\\)[A-Z]"
112                          "[A-Z]")
113                        string))
114     ))
115
116 (defmacro with-search-caps-disable-folding (string regexp-flag &rest body) "\
117 Eval BODY with `case-fold-search' let to nil if `search-caps-disable-folding' 
118 is non-nil, and if STRING (either a string or a regular expression according
119 to REGEXP-FLAG) contains uppercase letters."
120   `(let ((case-fold-search
121           (if (and case-fold-search search-caps-disable-folding)
122               (no-upper-case-p ,string ,regexp-flag)
123             case-fold-search)))
124      ,@body))
125 (put 'with-search-caps-disable-folding 'lisp-indent-function 2)
126 (put 'with-search-caps-disable-folding 'edebug-form-spec 
127      '(sexp sexp &rest form))
128
129 (defmacro with-interactive-search-caps-disable-folding (string regexp-flag 
130                                                                &rest body)
131   "Same as `with-search-caps-disable-folding', but only in the case of a
132 function called interactively."
133   `(let ((case-fold-search
134           (if (and (interactive-p) 
135                    case-fold-search search-caps-disable-folding)
136               (no-upper-case-p ,string ,regexp-flag)
137             case-fold-search)))
138      ,@body))
139 (put 'with-interactive-search-caps-disable-folding 'lisp-indent-function 2)
140 (put 'with-interactive-search-caps-disable-folding 'edebug-form-spec 
141      '(sexp sexp &rest form))
142
143 (defun newline (&optional arg)
144   "Insert a newline, and move to left margin of the new line if it's blank.
145 The newline is marked with the text-property `hard'.
146 With arg, insert that many newlines.
147 In Auto Fill mode, if no numeric arg, break the preceding line if it's long."
148   (interactive "*P")
149   (barf-if-buffer-read-only nil (point))
150   ;; Inserting a newline at the end of a line produces better redisplay in
151   ;; try_window_id than inserting at the beginning of a line, and the textual
152   ;; result is the same.  So, if we're at beginning of line, pretend to be at
153   ;; the end of the previous line.
154   ;; #### Does this have any relevance in XEmacs?
155   (let ((flag (and (not (bobp))
156                    (bolp)
157                    ;; Make sure the newline before point isn't intangible.
158                    (not (get-char-property (1- (point)) 'intangible))
159                    ;; Make sure the newline before point isn't read-only.
160                    (not (get-char-property (1- (point)) 'read-only))
161                    ;; Make sure the newline before point isn't invisible.
162                    (not (get-char-property (1- (point)) 'invisible))
163                    ;; This should probably also test for the previous char
164                    ;;  being the *last* character too.
165                    (not (get-char-property (1- (point)) 'end-open))
166                    ;; Make sure the newline before point has the same
167                    ;; properties as the char before it (if any).
168                    (< (or (previous-extent-change (point)) -2)
169                       (- (point) 2))))
170         (was-page-start (and (bolp)
171                              (looking-at page-delimiter)))
172         (beforepos (point)))
173     (if flag (backward-char 1))
174     ;; Call self-insert so that auto-fill, abbrev expansion etc. happens.
175     ;; Set last-command-char to tell self-insert what to insert.
176     (let ((last-command-char ?\n)
177           ;; Don't auto-fill if we have a numeric argument.
178           ;; Also not if flag is true (it would fill wrong line);
179           ;; there is no need to since we're at BOL.
180           (auto-fill-function (if (or arg flag) nil auto-fill-function)))
181       (unwind-protect
182           (self-insert-command (prefix-numeric-value arg))
183         ;; If we get an error in self-insert-command, put point at right place.
184         (if flag (forward-char 1))))
185     ;; If we did *not* get an error, cancel that forward-char.
186     (if flag (backward-char 1))
187     ;; Mark the newline(s) `hard'.
188     (if use-hard-newlines
189         (let* ((from (- (point) (if arg (prefix-numeric-value arg) 1)))
190                (sticky (get-text-property from 'end-open))) ; XEmacs
191           (put-text-property from (point) 'hard 't)
192           ;; If end-open is not "t", add 'hard to end-open list
193           (if (and (listp sticky) (not (memq 'hard sticky)))
194               (put-text-property from (point) 'end-open ; XEmacs
195                                  (cons 'hard sticky)))))
196     ;; If the newline leaves the previous line blank,
197     ;; and we have a left margin, delete that from the blank line.
198     (or flag
199         (save-excursion
200           (goto-char beforepos)
201           (beginning-of-line)
202           (and (looking-at "[ \t]$")
203                (> (current-left-margin) 0)
204                (delete-region (point) (progn (end-of-line) (point))))))
205     (if flag (forward-char 1))
206     ;; Indent the line after the newline, except in one case:
207     ;; when we added the newline at the beginning of a line
208     ;; which starts a page.
209     (or was-page-start
210         (move-to-left-margin nil t)))
211   nil)
212
213 (defun set-hard-newline-properties (from to)
214   (let ((sticky (get-text-property from 'rear-nonsticky)))
215     (put-text-property from to 'hard 't)
216     ;; If rear-nonsticky is not "t", add 'hard to rear-nonsticky list
217     (if (and (listp sticky) (not (memq 'hard sticky)))
218         (put-text-property from (point) 'rear-nonsticky
219                            (cons 'hard sticky)))))
220
221 (defun open-line (arg)
222   "Insert a newline and leave point before it.
223 If there is a fill prefix and/or a left-margin, insert them on the new line
224 if the line would have been blank.
225 With arg N, insert N newlines."
226   (interactive "*p")
227   (let* ((do-fill-prefix (and fill-prefix (bolp)))
228          (do-left-margin (and (bolp) (> (current-left-margin) 0)))
229          (loc (point)))
230     (newline arg)
231     (goto-char loc)
232     (while (> arg 0)
233       (cond ((bolp)
234              (if do-left-margin (indent-to (current-left-margin)))
235              (if do-fill-prefix (insert fill-prefix))))
236       (forward-line 1)
237       (setq arg (1- arg)))
238     (goto-char loc)
239     (end-of-line)))
240
241 (defun split-line ()
242   "Split current line, moving portion beyond point vertically down."
243   (interactive "*")
244   (skip-chars-forward " \t")
245   (let ((col (current-column))
246         (pos (point)))
247     (newline 1)
248     (indent-to col 0)
249     (goto-char pos)))
250
251 (defun quoted-insert (arg)
252   "Read next input character and insert it.
253 This is useful for inserting control characters.
254 You may also type up to 3 octal digits, to insert a character with that code.
255
256 In overwrite mode, this function inserts the character anyway, and
257 does not handle octal digits specially.  This means that if you use
258 overwrite as your normal editing mode, you can use this function to
259 insert characters when necessary.
260
261 In binary overwrite mode, this function does overwrite, and octal
262 digits are interpreted as a character code.  This is supposed to make
263 this function useful in editing binary files."
264   (interactive "*p")
265   (let ((char (if (or (not overwrite-mode)
266                       (eq overwrite-mode 'overwrite-mode-binary))
267                   (read-quoted-char)
268                 ;; read-char obeys C-g, so we should protect.  FSF
269                 ;; doesn't have the protection here, but it's a bug in
270                 ;; FSF.
271                 (let ((inhibit-quit t))
272                   (read-char)))))
273     (if (> arg 0)
274         (if (eq overwrite-mode 'overwrite-mode-binary)
275             (delete-char arg)))
276     (while (> arg 0)
277       (insert char)
278       (setq arg (1- arg)))))
279
280 (defun delete-indentation (&optional arg)
281   "Join this line to previous and fix up whitespace at join.
282 If there is a fill prefix, delete it from the beginning of this line.
283 With argument, join this line to following line."
284   (interactive "*P")
285   (beginning-of-line)
286   (if arg (forward-line 1))
287   (if (eq (char-before (point)) ?\n)
288       (progn
289         (delete-region (point) (1- (point)))
290         ;; If the second line started with the fill prefix,
291         ;; delete the prefix.
292         (if (and fill-prefix
293                  (<= (+ (point) (length fill-prefix)) (point-max))
294                  (string= fill-prefix
295                           (buffer-substring (point)
296                                             (+ (point) (length fill-prefix)))))
297             (delete-region (point) (+ (point) (length fill-prefix))))
298         (fixup-whitespace))))
299
300 (defun fixup-whitespace ()
301   "Fixup white space between objects around point.
302 Leave one space or none, according to the context."
303   (interactive "*")
304   (save-excursion
305     (delete-horizontal-space)
306     (if (or (looking-at "^\\|\\s)")
307             (save-excursion (forward-char -1)
308                             (looking-at "$\\|\\s(\\|\\s'")))
309         nil
310       (insert ?\ ))))
311
312 (defun delete-horizontal-space ()
313   "Delete all spaces and tabs around point."
314   (interactive "*")
315   (skip-chars-backward " \t")
316   (delete-region (point) (progn (skip-chars-forward " \t") (point))))
317
318 (defun just-one-space ()
319   "Delete all spaces and tabs around point, leaving one space."
320   (interactive "*")
321   (if abbrev-mode ; XEmacs
322       (expand-abbrev))
323   (skip-chars-backward " \t")
324   (if (eq (char-after (point)) ? ) ; XEmacs
325       (forward-char 1)
326     (insert ? ))
327   (delete-region (point) (progn (skip-chars-forward " \t") (point))))
328
329 (defun delete-blank-lines ()
330   "On blank line, delete all surrounding blank lines, leaving just one.
331 On isolated blank line, delete that one.
332 On nonblank line, delete any immediately following blank lines."
333   (interactive "*")
334   (let (thisblank singleblank)
335     (save-excursion
336       (beginning-of-line)
337       (setq thisblank (looking-at "[ \t]*$"))
338       ;; Set singleblank if there is just one blank line here.
339       (setq singleblank
340             (and thisblank
341                  (not (looking-at "[ \t]*\n[ \t]*$"))
342                  (or (bobp)
343                      (progn (forward-line -1)
344                             (not (looking-at "[ \t]*$")))))))
345     ;; Delete preceding blank lines, and this one too if it's the only one.
346     (if thisblank
347         (progn
348           (beginning-of-line)
349           (if singleblank (forward-line 1))
350           (delete-region (point)
351                          (if (re-search-backward "[^ \t\n]" nil t)
352                              (progn (forward-line 1) (point))
353                            (point-min)))))
354     ;; Delete following blank lines, unless the current line is blank
355     ;; and there are no following blank lines.
356     (if (not (and thisblank singleblank))
357         (save-excursion
358           (end-of-line)
359           (forward-line 1)
360           (delete-region (point)
361                          (if (re-search-forward "[^ \t\n]" nil t)
362                              (progn (beginning-of-line) (point))
363                            (point-max)))))
364     ;; Handle the special case where point is followed by newline and eob.
365     ;; Delete the line, leaving point at eob.
366     (if (looking-at "^[ \t]*\n\\'")
367         (delete-region (point) (point-max)))))
368
369 (defun back-to-indentation ()
370   "Move point to the first non-whitespace character on this line."
371   ;; XEmacs change
372   (interactive "_")
373   (beginning-of-line 1)
374   (skip-chars-forward " \t"))
375
376 (defun newline-and-indent ()
377   "Insert a newline, then indent according to major mode.
378 Indentation is done using the value of `indent-line-function'.
379 In programming language modes, this is the same as TAB.
380 In some text modes, where TAB inserts a tab, this command indents to the
381 column specified by the function `current-left-margin'."
382   (interactive "*")
383   (delete-region (point) (progn (skip-chars-backward " \t") (point)))
384   (newline)
385   (indent-according-to-mode))
386
387 (defun reindent-then-newline-and-indent ()
388   "Reindent current line, insert newline, then indent the new line.
389 Indentation of both lines is done according to the current major mode,
390 which means calling the current value of `indent-line-function'.
391 In programming language modes, this is the same as TAB.
392 In some text modes, where TAB inserts a tab, this indents to the
393 column specified by the function `current-left-margin'."
394   (interactive "*")
395   (save-excursion
396     (delete-region (point) (progn (skip-chars-backward " \t") (point)))
397     (indent-according-to-mode))
398   (newline)
399   (indent-according-to-mode))
400
401 ;; Internal subroutine of delete-char
402 (defun kill-forward-chars (arg)
403   (if (listp arg) (setq arg (car arg)))
404   (if (eq arg '-) (setq arg -1))
405   (kill-region (point) (+ (point) arg)))
406
407 ;; Internal subroutine of backward-delete-char
408 (defun kill-backward-chars (arg)
409   (if (listp arg) (setq arg (car arg)))
410   (if (eq arg '-) (setq arg -1))
411   (kill-region (point) (- (point) arg)))
412
413 (defun backward-delete-char-untabify (arg &optional killp)
414   "Delete characters backward, changing tabs into spaces.
415 Delete ARG chars, and kill (save in kill ring) if KILLP is non-nil.
416 Interactively, ARG is the prefix arg (default 1)
417 and KILLP is t if a prefix arg was specified."
418   (interactive "*p\nP")
419   (let ((count arg))
420     (save-excursion
421       (while (and (> count 0) (not (bobp)))
422         (if (eq (char-before (point)) ?\t) ; XEmacs
423             (let ((col (current-column)))
424               (forward-char -1)
425               (setq col (- col (current-column)))
426               (insert-char ?\ col)
427               (delete-char 1)))
428         (forward-char -1)
429         (setq count (1- count)))))
430   (delete-backward-char arg killp)
431   ;; XEmacs: In overwrite mode, back over columns while clearing them out,
432   ;; unless at end of line.
433   (and overwrite-mode (not (eolp))
434        (save-excursion (insert-char ?\  arg))))
435
436 (defcustom delete-key-deletes-forward t
437   "*If non-nil, the DEL key will erase one character forwards.
438 If nil, the DEL key will erase one character backwards."
439   :type 'boolean
440   :group 'editing-basics)
441
442 (defcustom backward-delete-function 'backward-delete-char
443   "*Function called to delete backwards on a delete keypress.
444 If `delete-key-deletes-forward' is nil, `backward-or-forward-delete-char'
445 calls this function to erase one character backwards.  Default value
446 is 'backward-delete-char, with 'backward-delete-char-untabify being a
447 popular alternate setting."
448   :type 'function
449   :group 'editing-basics)
450
451 ;; Trash me, baby.
452 (defsubst delete-forward-p ()
453   (and delete-key-deletes-forward
454        (or (not (eq (device-type) 'x))
455            (x-keysym-on-keyboard-sans-modifiers-p 'backspace))))
456
457 (defun backward-or-forward-delete-char (arg)
458   "Delete either one character backwards or one character forwards.
459 Controlled by the state of `delete-key-deletes-forward' and whether the
460 BackSpace keysym even exists on your keyboard.  If you don't have a
461 BackSpace keysym, the delete key should always delete one character
462 backwards."
463   (interactive "*p")
464   (if (delete-forward-p)
465       (delete-char arg)
466     (funcall backward-delete-function arg)))
467
468 (defun backward-or-forward-kill-word (arg)
469   "Delete either one word backwards or one word forwards.
470 Controlled by the state of `delete-key-deletes-forward' and whether the
471 BackSpace keysym even exists on your keyboard.  If you don't have a
472 BackSpace keysym, the delete key should always delete one character
473 backwards."
474   (interactive "*p")
475   (if (delete-forward-p)
476       (kill-word arg)
477     (backward-kill-word arg)))
478
479 (defun backward-or-forward-kill-sentence (arg)
480     "Delete either one sentence backwards or one sentence forwards.
481 Controlled by the state of `delete-key-deletes-forward' and whether the
482 BackSpace keysym even exists on your keyboard.  If you don't have a
483 BackSpace keysym, the delete key should always delete one character
484 backwards."
485   (interactive "*P")
486   (if (delete-forward-p)
487       (kill-sentence arg)
488     (backward-kill-sentence (prefix-numeric-value arg))))
489
490 (defun backward-or-forward-kill-sexp (arg)
491     "Delete either one sexpr backwards or one sexpr forwards.
492 Controlled by the state of `delete-key-deletes-forward' and whether the
493 BackSpace keysym even exists on your keyboard.  If you don't have a
494 BackSpace keysym, the delete key should always delete one character
495 backwards."
496   (interactive "*p")
497   (if (delete-forward-p)
498       (kill-sexp arg)
499     (backward-kill-sexp arg)))
500
501 (defun zap-to-char (arg char)
502   "Kill up to and including ARG'th occurrence of CHAR.
503 Goes backward if ARG is negative; error if CHAR not found."
504   (interactive "*p\ncZap to char: ")
505   (kill-region (point) (with-interactive-search-caps-disable-folding
506                            (char-to-string char) nil
507                          (search-forward (char-to-string char) nil nil arg)
508                          (point))))
509
510 (defun zap-up-to-char (arg char)
511   "Kill up to ARG'th occurrence of CHAR.
512 Goes backward if ARG is negative; error if CHAR not found."
513   (interactive "*p\ncZap up to char: ")
514   (kill-region (point) (with-interactive-search-caps-disable-folding
515                            (char-to-string char) nil
516                          (search-forward (char-to-string char) nil nil arg)
517                          (goto-char (if (> arg 0) (1- (point)) (1+ (point))))
518                          (point))))
519
520 (defun beginning-of-buffer (&optional arg)
521   "Move point to the beginning of the buffer; leave mark at previous position.
522 With arg N, put point N/10 of the way from the beginning.
523
524 If the buffer is narrowed, this command uses the beginning and size
525 of the accessible part of the buffer.
526
527 Don't use this command in Lisp programs!
528 \(goto-char (point-min)) is faster and avoids clobbering the mark."
529   ;; XEmacs change
530   (interactive "_P")
531   (push-mark)
532   (let ((size (- (point-max) (point-min))))
533     (goto-char (if arg
534                    (+ (point-min)
535                       (if (> size 10000)
536                           ;; Avoid overflow for large buffer sizes!
537                           (* (prefix-numeric-value arg)
538                              (/ size 10))
539                         (/ (+ 10 (* size (prefix-numeric-value arg))) 10)))
540                  (point-min))))
541   (if arg (forward-line 1)))
542
543 (defun end-of-buffer (&optional arg)
544   "Move point to the end of the buffer; leave mark at previous position.
545 With arg N, put point N/10 of the way from the end.
546
547 If the buffer is narrowed, this command uses the beginning and size
548 of the accessible part of the buffer.
549
550 Don't use this command in Lisp programs!
551 \(goto-char (point-max)) is faster and avoids clobbering the mark."
552   ;; XEmacs change
553   (interactive "_P")
554   (push-mark)
555   ;; XEmacs changes here.
556   (let ((scroll-to-end (not (pos-visible-in-window-p (point-max))))
557         (size (- (point-max) (point-min))))
558     (goto-char (if arg
559                    (- (point-max)
560                       (if (> size 10000)
561                           ;; Avoid overflow for large buffer sizes!
562                           (* (prefix-numeric-value arg)
563                              (/ size 10))
564                         (/ (* size (prefix-numeric-value arg)) 10)))
565                  (point-max)))
566     (cond (arg
567            ;; If we went to a place in the middle of the buffer,
568            ;; adjust it to the beginning of a line.
569            (forward-line 1))
570           ;; XEmacs change
571           (scroll-to-end
572            ;; If the end of the buffer is not already on the screen,
573            ;; then scroll specially to put it near, but not at, the bottom.
574            (recenter -3)))))
575
576 ;; XEmacs (not in FSF)
577 (defun mark-beginning-of-buffer (&optional arg)
578   "Push a mark at the beginning of the buffer; leave point where it is.
579 With arg N, push mark N/10 of the way from the true beginning."
580   (interactive "P")
581   (push-mark (if arg
582                  (if (> (buffer-size) 10000)
583                      ;; Avoid overflow for large buffer sizes!
584                      (* (prefix-numeric-value arg)
585                         (/ (buffer-size) 10))
586                    (/ (+ 10 (* (buffer-size) (prefix-numeric-value arg))) 10))
587                (point-min))
588              nil
589              t))
590 (define-function 'mark-bob 'mark-beginning-of-buffer)
591
592 ;; XEmacs (not in FSF)
593 (defun mark-end-of-buffer (&optional arg)
594   "Push a mark at the end of the buffer; leave point where it is.
595 With arg N, push mark N/10 of the way from the true end."
596   (interactive "P")
597   (push-mark (if arg
598                  (- (1+ (buffer-size))
599                     (if (> (buffer-size) 10000)
600                         ;; Avoid overflow for large buffer sizes!
601                         (* (prefix-numeric-value arg)
602                            (/ (buffer-size) 10))
603                       (/ (* (buffer-size) (prefix-numeric-value arg)) 10)))
604                  (point-max))
605              nil
606              t))
607 (define-function 'mark-eob 'mark-end-of-buffer)
608
609 (defun mark-whole-buffer ()
610   "Put point at beginning and mark at end of buffer.
611 You probably should not use this function in Lisp programs;
612 it is usually a mistake for a Lisp function to use any subroutine
613 that uses or sets the mark."
614   (interactive)
615   (push-mark (point))
616   (push-mark (point-max) nil t)
617   (goto-char (point-min)))
618
619 ;; XEmacs
620 (defun eval-current-buffer (&optional printflag)
621   "Evaluate the current buffer as Lisp code.
622 Programs can pass argument PRINTFLAG which controls printing of output:
623 nil means discard it; anything else is stream for print."
624   (interactive)
625   (eval-buffer (current-buffer) printflag))
626
627 ;; XEmacs
628 (defun count-words-buffer (&optional buffer)
629   "Print the number of words in BUFFER.
630 If called noninteractively, the value is returned rather than printed.
631 BUFFER defaults to the current buffer."
632   (interactive)
633   (let ((words (count-words-region (point-min) (point-max) buffer)))
634     (when (interactive-p)
635       (message "Buffer has %d words" words))
636     words))
637
638 ;; XEmacs
639 (defun count-words-region (start end &optional buffer)
640   "Print the number of words in region between START and END in BUFFER.
641 If called noninteractively, the value is returned rather than printed.
642 BUFFER defaults to the current buffer."
643   (interactive "_r")
644   (save-excursion
645     (set-buffer (or buffer (current-buffer)))
646     (let ((words 0))
647       (goto-char start)
648       (while (< (point) end)
649         (when (forward-word 1)
650           (incf words)))
651       (when  (interactive-p)
652         (message "Region has %d words" words))
653       words)))
654
655 (defun count-lines-region (start end)
656   "Print number of lines and characters in the region."
657   ;; XEmacs change
658   (interactive "_r")
659   (message "Region has %d lines, %d characters"
660            (count-lines start end) (- end start)))
661
662 ;; XEmacs
663 (defun count-lines-buffer (&optional buffer)
664   "Print number of lines and characters in BUFFER."
665   (interactive)
666   (with-current-buffer (or buffer (current-buffer))
667     (let ((cnt (count-lines (point-min) (point-max))))
668       (message "Buffer has %d lines, %d characters"
669                cnt (- (point-max) (point-min)))
670       cnt)))
671
672 ;;; Modified by Bob Weiner, 8/24/95, to print narrowed line number also.
673 ;;; Expanded by Bob Weiner, Altrasoft, on 02/12/1997
674 (defun what-line ()
675   "Print the following variants of the line number of point:
676      Region line     - displayed line within the active region
677      Collapsed line  - includes only selectively displayed lines;
678      Buffer line     - physical line in the buffer;
679      Narrowed line   - line number from the start of the buffer narrowing."
680   ;; XEmacs change
681   (interactive "_")
682   (let ((opoint (point)) start)
683     (save-excursion
684       (save-restriction
685         (if (region-active-p)
686             (goto-char (region-beginning))
687           (goto-char (point-min)))
688         (widen)
689         (beginning-of-line)
690         (setq start (point))
691         (goto-char opoint)
692         (beginning-of-line)
693         (let* ((buffer-line (1+ (count-lines 1 (point))))
694                (narrowed-p (or (/= start 1)
695                                (/= (point-max) (1+ (buffer-size)))))
696                (narrowed-line (if narrowed-p (1+ (count-lines start (point)))))
697                (selective-line (if selective-display
698                                    (1+ (count-lines start (point) t))))
699                (region-line (if (region-active-p)
700                                 (1+ (count-lines start (point) selective-display)))))
701           (cond (region-line
702                  (message "Region line %d; Buffer line %d"
703                           region-line buffer-line))
704                 ((and narrowed-p selective-line (/= selective-line narrowed-line))
705                  ;; buffer narrowed and some lines selectively displayed
706                  (message "Collapsed line %d; Buffer line %d; Narrowed line %d"
707                           selective-line buffer-line narrowed-line))
708                 (narrowed-p
709                  ;; buffer narrowed
710                  (message "Buffer line %d; Narrowed line %d"
711                           buffer-line narrowed-line))
712                 ((and selective-line (/= selective-line buffer-line))
713                  ;; some lines selectively displayed
714                  (message "Collapsed line %d; Buffer line %d"
715                           selective-line buffer-line))
716                 (t
717                  ;; give a basic line count
718                  (message "Line %d" buffer-line)))))))
719   (setq zmacs-region-stays t))
720
721 ;;; Bob Weiner, Altrasoft, 02/12/1998
722 ;;; Added the 3rd arg in `count-lines' to conditionalize the counting of
723 ;;; collapsed lines.
724 (defun count-lines (start end &optional ignore-invisible-lines-flag)
725   "Return number of lines between START and END.
726 This is usually the number of newlines between them,
727 but can be one more if START is not equal to END
728 and the greater of them is not at the start of a line.
729
730 With optional IGNORE-INVISIBLE-LINES-FLAG non-nil, lines collapsed with
731 selective-display are excluded from the line count."
732   (save-excursion
733     (save-restriction
734       (narrow-to-region start end)
735       (goto-char (point-min))
736       (if (and (not ignore-invisible-lines-flag) (eq selective-display t))
737           (save-match-data
738             (let ((done 0))
739               (while (re-search-forward "[\n\C-m]" nil t 40)
740                 (setq done (+ 40 done)))
741               (while (re-search-forward "[\n\C-m]" nil t 1)
742                 (setq done (+ 1 done)))
743               (goto-char (point-max))
744               (if (and (/= start end)
745                        (not (bolp)))
746                   (1+ done)
747                 done)))
748         (- (buffer-size) (forward-line (buffer-size)))))))
749
750 (defun what-cursor-position ()
751   "Print info on cursor position (on screen and within buffer)."
752   ;; XEmacs change
753   (interactive "_")
754   (let* ((char (char-after (point))) ; XEmacs
755          (beg (point-min))
756          (end (point-max))
757          (pos (point))
758          (total (buffer-size))
759          (percent (if (> total 50000)
760                       ;; Avoid overflow from multiplying by 100!
761                       (/ (+ (/ total 200) (1- pos)) (max (/ total 100) 1))
762                     (/ (+ (/ total 2) (* 100 (1- pos))) (max total 1))))
763          (hscroll (if (= (window-hscroll) 0)
764                       ""
765                     (format " Hscroll=%d" (window-hscroll))))
766          (col (+ (current-column) (if column-number-start-at-one 1 0))))
767     (if (= pos end)
768         (if (or (/= beg 1) (/= end (1+ total)))
769             (message "point=%d of %d(%d%%) <%d - %d>  column %d %s"
770                      pos total percent beg end col hscroll)
771           (message "point=%d of %d(%d%%)  column %d %s"
772                    pos total percent col hscroll))
773       ;; XEmacs: don't use single-key-description
774       (if (or (/= beg 1) (/= end (1+ total)))
775           (message "Char: %s (0%o, %d, 0x%x)  point=%d of %d(%d%%) <%d - %d>  column %d %s"
776                    (text-char-description char) char char char pos total
777                    percent beg end col hscroll)
778         (message "Char: %s (0%o, %d, 0x%x)  point=%d of %d(%d%%)  column %d %s"
779                  (text-char-description char) char char char pos total
780                  percent col hscroll)))))
781
782 (defun fundamental-mode ()
783   "Major mode not specialized for anything in particular.
784 Other major modes are defined by comparison with this one."
785   (interactive)
786   (kill-all-local-variables))
787
788 ;; XEmacs the following are declared elsewhere
789 ;(defvar read-expression-map (cons 'keymap minibuffer-local-map)
790 ;  "Minibuffer keymap used for reading Lisp expressions.")
791 ;(define-key read-expression-map "\M-\t" 'lisp-complete-symbol)
792
793 ;(put 'eval-expression 'disabled t)
794
795 ;(defvar read-expression-history nil)
796
797 ;; We define this, rather than making `eval' interactive,
798 ;; for the sake of completion of names like eval-region, eval-current-buffer.
799 (defun eval-expression (expression &optional eval-expression-insert-value)
800   "Evaluate EXPRESSION and print value in minibuffer.
801 Value is also consed on to front of the variable `values'.
802 With prefix argument, insert the result to the current buffer."
803   ;(interactive "xEval: ")
804   (interactive
805    (list (read-from-minibuffer "Eval: "
806                                nil read-expression-map t
807                                'read-expression-history)
808          current-prefix-arg))
809   (setq values (cons (eval expression) values))
810   (prin1 (car values)
811          (if eval-expression-insert-value (current-buffer) t)))
812
813 ;; XEmacs -- extra parameter (variant, but equivalent logic)
814 (defun edit-and-eval-command (prompt command &optional history)
815   "Prompting with PROMPT, let user edit COMMAND and eval result.
816 COMMAND is a Lisp expression.  Let user edit that expression in
817 the minibuffer, then read and evaluate the result."
818   (let ((command (read-expression prompt
819                                   ;; first try to format the thing readably;
820                                   ;; and if that fails, print it normally.
821                                   (condition-case ()
822                                       (let ((print-readably t))
823                                         (prin1-to-string command))
824                                     (error (prin1-to-string command)))
825                                   (or history '(command-history . 1)))))
826     (or history (setq history 'command-history))
827     (if (consp history)
828         (setq history (car history)))
829     (if (eq history t)
830         nil
831       ;; If command was added to the history as a string,
832       ;; get rid of that.  We want only evallable expressions there.
833       (if (stringp (car (symbol-value history)))
834           (set history (cdr (symbol-value history))))
835
836       ;; If command to be redone does not match front of history,
837       ;; add it to the history.
838       (or (equal command (car (symbol-value history)))
839           (set history (cons command (symbol-value history)))))
840     (eval command)))
841
842 (defun repeat-complex-command (arg)
843   "Edit and re-evaluate last complex command, or ARGth from last.
844 A complex command is one which used the minibuffer.
845 The command is placed in the minibuffer as a Lisp form for editing.
846 The result is executed, repeating the command as changed.
847 If the command has been changed or is not the most recent previous command
848 it is added to the front of the command history.
849 You can use the minibuffer history commands \\<minibuffer-local-map>\\[next-history-element] and \\[previous-history-element]
850 to get different commands to edit and resubmit."
851   (interactive "p")
852   ;; XEmacs: It looks like our version is better -sb
853   (let ((print-level nil))
854     (edit-and-eval-command "Redo: "
855                            (or (nth (1- arg) command-history)
856                                (error ""))
857                            (cons 'command-history arg))))
858
859 ;; XEmacs: Functions moved to minibuf.el
860 ;; previous-matching-history-element
861 ;; next-matching-history-element
862 ;; next-history-element
863 ;; previous-history-element
864 ;; next-complete-history-element
865 ;; previous-complete-history-element
866 \f
867 (defun goto-line (arg)
868   "Goto line ARG, counting from line 1 at beginning of buffer."
869   (interactive "NGoto line: ")
870   (setq arg (prefix-numeric-value arg))
871   (save-restriction
872     (widen)
873     (goto-char 1)
874     (if (eq selective-display t)
875         (re-search-forward "[\n\C-m]" nil 'end (1- arg))
876       (forward-line (1- arg)))))
877
878 ;Put this on C-x u, so we can force that rather than C-_ into startup msg
879 (define-function 'advertised-undo 'undo)
880
881 (defun undo (&optional arg)
882   "Undo some previous changes.
883 Repeat this command to undo more changes.
884 A numeric argument serves as a repeat count."
885   (interactive "*p")
886   ;; If we don't get all the way through, make last-command indicate that
887   ;; for the following command.
888   (setq this-command t)
889   (let ((modified (buffer-modified-p))
890         (recent-save (recent-auto-save-p)))
891     (or (eq (selected-window) (minibuffer-window))
892         (display-message 'command "Undo!"))
893     (or (and (eq last-command 'undo)
894              (eq (current-buffer) last-undo-buffer)) ; XEmacs
895         (progn (undo-start)
896                (undo-more 1)))
897     (undo-more (or arg 1))
898     ;; Don't specify a position in the undo record for the undo command.
899     ;; Instead, undoing this should move point to where the change is.
900     (let ((tail buffer-undo-list)
901           done)
902       (while (and tail (not done) (not (null (car tail))))
903         (if (integerp (car tail))
904             (progn
905               (setq done t)
906               (setq buffer-undo-list (delq (car tail) buffer-undo-list))))
907         (setq tail (cdr tail))))
908     (and modified (not (buffer-modified-p))
909          (delete-auto-save-file-if-necessary recent-save)))
910   ;; If we do get all the way through, make this-command indicate that.
911   (setq this-command 'undo))
912
913 (defvar pending-undo-list nil
914   "Within a run of consecutive undo commands, list remaining to be undone.")
915
916 (defvar last-undo-buffer nil)   ; XEmacs
917
918 (defun undo-start ()
919   "Set `pending-undo-list' to the front of the undo list.
920 The next call to `undo-more' will undo the most recently made change."
921   (if (eq buffer-undo-list t)
922       (error "No undo information in this buffer"))
923   (setq pending-undo-list buffer-undo-list))
924
925 (defun undo-more (count)
926   "Undo back N undo-boundaries beyond what was already undone recently.
927 Call `undo-start' to get ready to undo recent changes,
928 then call `undo-more' one or more times to undo them."
929   (or pending-undo-list
930       (error "No further undo information"))
931   (setq pending-undo-list (primitive-undo count pending-undo-list)
932         last-undo-buffer (current-buffer)))     ; XEmacs
933
934 ;; XEmacs
935 (defun call-with-transparent-undo (fn &rest args)
936   "Apply FN to ARGS, and then undo all changes made by FN to the current
937 buffer.  The undo records are processed even if FN returns non-locally.
938 There is no trace of the changes made by FN in the buffer's undo history.
939
940 You can use this in a write-file-hooks function with continue-save-buffer
941 to make the contents of a disk file differ from its in-memory buffer."
942   (let ((buffer-undo-list nil)
943         ;; Kludge to prevent undo list truncation:
944         (undo-high-threshold -1)
945         (undo-threshold -1)
946         (obuffer (current-buffer)))
947     (unwind-protect
948         (apply fn args)
949       ;; Go to the buffer we will restore and make it writable:
950       (set-buffer obuffer)
951       (save-excursion
952         (let ((buffer-read-only nil))
953           (save-restriction
954             (widen)
955             ;; Perform all undos, with further undo logging disabled:
956             (let ((tail buffer-undo-list))
957               (setq buffer-undo-list t)
958               (while tail
959                 (setq tail (primitive-undo (length tail) tail))))))))))
960
961 ;; XEmacs: The following are in other files
962 ;; shell-command-history
963 ;; shell-command-switch
964 ;; shell-command
965 ;; shell-command-sentinel
966
967 \f
968 (defconst universal-argument-map
969   (let ((map (make-sparse-keymap)))
970     (set-keymap-default-binding map 'universal-argument-other-key)
971     ;FSFmacs (define-key map [switch-frame] nil)
972     (define-key map [(t)] 'universal-argument-other-key)
973     (define-key map [(meta t)] 'universal-argument-other-key)
974     (define-key map [(control u)] 'universal-argument-more)
975     (define-key map [?-] 'universal-argument-minus)
976     (define-key map [?0] 'digit-argument)
977     (define-key map [?1] 'digit-argument)
978     (define-key map [?2] 'digit-argument)
979     (define-key map [?3] 'digit-argument)
980     (define-key map [?4] 'digit-argument)
981     (define-key map [?5] 'digit-argument)
982     (define-key map [?6] 'digit-argument)
983     (define-key map [?7] 'digit-argument)
984     (define-key map [?8] 'digit-argument)
985     (define-key map [?9] 'digit-argument)
986     map)
987   "Keymap used while processing \\[universal-argument].")
988
989 (defvar universal-argument-num-events nil
990   "Number of argument-specifying events read by `universal-argument'.
991 `universal-argument-other-key' uses this to discard those events
992 from (this-command-keys), and reread only the final command.")
993
994 (defun universal-argument ()
995   "Begin a numeric argument for the following command.
996 Digits or minus sign following \\[universal-argument] make up the numeric argument.
997 \\[universal-argument] following the digits or minus sign ends the argument.
998 \\[universal-argument] without digits or minus sign provides 4 as argument.
999 Repeating \\[universal-argument] without digits or minus sign
1000  multiplies the argument by 4 each time."
1001   (interactive)
1002   (setq prefix-arg (list 4))
1003   (setq zmacs-region-stays t)   ; XEmacs
1004   (setq universal-argument-num-events (length (this-command-keys)))
1005   (setq overriding-terminal-local-map universal-argument-map))
1006
1007 ;; A subsequent C-u means to multiply the factor by 4 if we've typed
1008 ;; nothing but C-u's; otherwise it means to terminate the prefix arg.
1009 (defun universal-argument-more (arg)
1010   (interactive "_P")                    ; XEmacs
1011   (if (consp arg)
1012       (setq prefix-arg (list (* 4 (car arg))))
1013     (setq prefix-arg arg)
1014     (setq overriding-terminal-local-map nil))
1015   (setq universal-argument-num-events (length (this-command-keys))))
1016
1017 (defun negative-argument (arg)
1018   "Begin a negative numeric argument for the next command.
1019 \\[universal-argument] following digits or minus sign ends the argument."
1020   (interactive "_P")                    ; XEmacs
1021   (cond ((integerp arg)
1022           (setq prefix-arg (- arg)))
1023          ((eq arg '-)
1024           (setq prefix-arg nil))
1025          (t
1026           (setq prefix-arg '-)))
1027   (setq universal-argument-num-events (length (this-command-keys)))
1028   (setq overriding-terminal-local-map universal-argument-map))
1029
1030 ;; XEmacs:  This function not synched with FSF
1031 (defun digit-argument (arg)
1032   "Part of the numeric argument for the next command.
1033 \\[universal-argument] following digits or minus sign ends the argument."
1034   (interactive "_P")                    ; XEmacs
1035   (let* ((event last-command-event)
1036          (key (and (key-press-event-p event)
1037                    (event-key event)))
1038          (digit (and key (characterp key) (>= key ?0) (<= key ?9)
1039                      (- key ?0))))
1040     (if (null digit)
1041         (universal-argument-other-key arg)
1042       (cond ((integerp arg)
1043              (setq prefix-arg (+ (* arg 10)
1044                                  (if (< arg 0) (- digit) digit))))
1045             ((eq arg '-)
1046              ;; Treat -0 as just -, so that -01 will work.
1047              (setq prefix-arg (if (zerop digit) '- (- digit))))
1048             (t
1049              (setq prefix-arg digit)))
1050       (setq universal-argument-num-events (length (this-command-keys)))
1051       (setq overriding-terminal-local-map universal-argument-map))))
1052
1053 ;; For backward compatibility, minus with no modifiers is an ordinary
1054 ;; command if digits have already been entered.
1055 (defun universal-argument-minus (arg)
1056   (interactive "_P") ; XEmacs
1057   (if (integerp arg)
1058       (universal-argument-other-key arg)
1059     (negative-argument arg)))
1060
1061 ;; Anything else terminates the argument and is left in the queue to be
1062 ;; executed as a command.
1063 (defun universal-argument-other-key (arg)
1064   (interactive "_P")                    ; XEmacs
1065   (setq prefix-arg arg)
1066   (let* ((key (this-command-keys))
1067          ;; FSF calls silly function `listify-key-sequence' here.
1068           (keylist (append key nil)))
1069     (setq unread-command-events
1070            (append (nthcdr universal-argument-num-events keylist)
1071                    unread-command-events)))
1072   (reset-this-command-lengths)
1073   (setq overriding-terminal-local-map nil))
1074
1075 \f
1076 ;; XEmacs -- keep zmacs-region active.
1077 (defun forward-to-indentation (arg)
1078   "Move forward ARG lines and position at first nonblank character."
1079   (interactive "_p")
1080   (forward-line arg)
1081   (skip-chars-forward " \t"))
1082
1083 (defun backward-to-indentation (arg)
1084   "Move backward ARG lines and position at first nonblank character."
1085   (interactive "_p")
1086   (forward-line (- arg))
1087   (skip-chars-forward " \t"))
1088
1089 (defcustom kill-whole-line nil
1090   "*If non-nil, `kill-line' with no arg at beg of line kills the whole line."
1091   :type 'boolean
1092   :group 'killing)
1093
1094 (defun kill-line (&optional arg)
1095   "Kill the rest of the current line; if no nonblanks there, kill thru newline.
1096 With prefix argument, kill that many lines from point.
1097 Negative arguments kill lines backward.
1098
1099 When calling from a program, nil means \"no arg\",
1100 a number counts as a prefix arg.
1101
1102 If `kill-whole-line' is non-nil, then kill the whole line
1103 when given no argument at the beginning of a line."
1104   (interactive "*P")
1105   (kill-region (point)
1106                ;; Don't shift point before doing the delete; that way,
1107                ;; undo will record the right position of point.
1108 ;; FSF
1109 ;              ;; It is better to move point to the other end of the kill
1110 ;              ;; before killing.  That way, in a read-only buffer, point
1111 ;              ;; moves across the text that is copied to the kill ring.
1112 ;              ;; The choice has no effect on undo now that undo records
1113 ;              ;; the value of point from before the command was run.
1114 ;              (progn
1115                (save-excursion
1116                  (if arg
1117                      (forward-line (prefix-numeric-value arg))
1118                    (if (eobp)
1119                        (signal 'end-of-buffer nil))
1120                    (if (or (looking-at "[ \t]*$") (and kill-whole-line (bolp)))
1121                        (forward-line 1)
1122                      (end-of-line)))
1123                  (point))))
1124
1125 ;; XEmacs
1126 (defun backward-kill-line nil
1127   "Kill back to the beginning of the line."
1128   (interactive)
1129   (let ((point (point)))
1130     (beginning-of-line nil)
1131     (kill-region (point) point)))
1132
1133 \f
1134 ;;;; Window system cut and paste hooks.
1135 ;;;
1136 ;;; I think that kill-hooks is a better name and more general mechanism
1137 ;;; than interprogram-cut-function (from FSFmacs).  I don't like the behavior
1138 ;;; of interprogram-paste-function: ^Y should always come from the kill ring,
1139 ;;; not the X selection.  But if that were provided, it should be called (and
1140 ;;; behave as) yank-hooks instead.  -- jwz
1141
1142 ;; [... code snipped ...]
1143
1144 (defcustom kill-hooks nil
1145   "*Functions run when something is added to the XEmacs kill ring.
1146 These functions are called with one argument, the string most recently
1147 cut or copied.  You can use this to, for example, make the most recent
1148 kill become the X Clipboard selection."
1149   :type 'hook
1150   :group 'killing)
1151
1152 ;;; `kill-hooks' seems not sufficient because
1153 ;;; `interprogram-cut-function' requires more variable about to rotate
1154 ;;; the cut buffers.  I'm afraid to change interface of `kill-hooks',
1155 ;;; so I add it. (1997-11-03 by MORIOKA Tomohiko)
1156
1157 (defvar interprogram-cut-function nil
1158   "Function to call to make a killed region available to other programs.
1159
1160 Most window systems provide some sort of facility for cutting and
1161 pasting text between the windows of different programs.
1162 This variable holds a function that Emacs calls whenever text
1163 is put in the kill ring, to make the new kill available to other
1164 programs.
1165
1166 The function takes one or two arguments.
1167 The first argument, TEXT, is a string containing
1168 the text which should be made available.
1169 The second, PUSH, if non-nil means this is a \"new\" kill;
1170 nil means appending to an \"old\" kill.")
1171
1172 (defvar interprogram-paste-function nil
1173   "Function to call to get text cut from other programs.
1174
1175 Most window systems provide some sort of facility for cutting and
1176 pasting text between the windows of different programs.
1177 This variable holds a function that Emacs calls to obtain
1178 text that other programs have provided for pasting.
1179
1180 The function should be called with no arguments.  If the function
1181 returns nil, then no other program has provided such text, and the top
1182 of the Emacs kill ring should be used.  If the function returns a
1183 string, that string should be put in the kill ring as the latest kill.
1184
1185 Note that the function should return a string only if a program other
1186 than Emacs has provided a string for pasting; if Emacs provided the
1187 most recent string, the function should return nil.  If it is
1188 difficult to tell whether Emacs or some other program provided the
1189 current string, it is probably good enough to return nil if the string
1190 is equal (according to `string=') to the last text Emacs provided.")
1191
1192 \f
1193 ;;;; The kill ring data structure.
1194
1195 (defvar kill-ring nil
1196   "List of killed text sequences.
1197 Since the kill ring is supposed to interact nicely with cut-and-paste
1198 facilities offered by window systems, use of this variable should
1199 interact nicely with `interprogram-cut-function' and
1200 `interprogram-paste-function'.  The functions `kill-new',
1201 `kill-append', and `current-kill' are supposed to implement this
1202 interaction; you may want to use them instead of manipulating the kill
1203 ring directly.")
1204
1205 (defcustom kill-ring-max 30
1206   "*Maximum length of kill ring before oldest elements are thrown away."
1207   :type 'integer
1208   :group 'killing)
1209
1210 (defvar kill-ring-yank-pointer nil
1211   "The tail of the kill ring whose car is the last thing yanked.")
1212
1213 (defun kill-new (string &optional replace)
1214   "Make STRING the latest kill in the kill ring.
1215 Set the kill-ring-yank pointer to point to it.
1216 Run `kill-hooks'.
1217 Optional second argument REPLACE non-nil means that STRING will replace
1218 the front of the kill ring, rather than being added to the list."
1219 ;  (and (fboundp 'menu-bar-update-yank-menu)
1220 ;       (menu-bar-update-yank-menu string (and replace (car kill-ring))))
1221   (if replace
1222       (setcar kill-ring string)
1223     (setq kill-ring (cons string kill-ring))
1224     (if (> (length kill-ring) kill-ring-max)
1225         (setcdr (nthcdr (1- kill-ring-max) kill-ring) nil)))
1226   (setq kill-ring-yank-pointer kill-ring)
1227   (if interprogram-cut-function
1228       (funcall interprogram-cut-function string (not replace)))
1229   (run-hook-with-args 'kill-hooks string))
1230
1231 (defun kill-append (string before-p)
1232   "Append STRING to the end of the latest kill in the kill ring.
1233 If BEFORE-P is non-nil, prepend STRING to the kill.
1234 Run `kill-hooks'."
1235   (kill-new (if before-p
1236                 (concat string (car kill-ring))
1237               (concat (car kill-ring) string)) t))
1238
1239 (defun current-kill (n &optional do-not-move)
1240   "Rotate the yanking point by N places, and then return that kill.
1241 If N is zero, `interprogram-paste-function' is set, and calling it
1242 returns a string, then that string is added to the front of the
1243 kill ring and returned as the latest kill.
1244 If optional arg DO-NOT-MOVE is non-nil, then don't actually move the
1245 yanking point\; just return the Nth kill forward."
1246   (let ((interprogram-paste (and (= n 0)
1247                                  interprogram-paste-function
1248                                  (funcall interprogram-paste-function))))
1249     (if interprogram-paste
1250         (progn
1251           ;; Disable the interprogram cut function when we add the new
1252           ;; text to the kill ring, so Emacs doesn't try to own the
1253           ;; selection, with identical text.
1254           (let ((interprogram-cut-function nil))
1255             (kill-new interprogram-paste))
1256           interprogram-paste)
1257       (or kill-ring (error "Kill ring is empty"))
1258       (let* ((tem (nthcdr (mod (- n (length kill-ring-yank-pointer))
1259                                (length kill-ring))
1260                           kill-ring)))
1261         (or do-not-move
1262             (setq kill-ring-yank-pointer tem))
1263         (car tem)))))
1264
1265
1266 \f
1267 ;;;; Commands for manipulating the kill ring.
1268
1269 ;; In FSF killing read-only text just pastes it into kill-ring.  Which
1270 ;; is a very bad idea -- see Jamie's comment below.
1271
1272 ;(defvar kill-read-only-ok nil
1273 ;  "*Non-nil means don't signal an error for killing read-only text.")
1274
1275 (defun kill-region (beg end &optional verbose) ; verbose is XEmacs addition
1276   "Kill between point and mark.
1277 The text is deleted but saved in the kill ring.
1278 The command \\[yank] can retrieve it from there.
1279 \(If you want to kill and then yank immediately, use \\[copy-region-as-kill].)
1280
1281 This is the primitive for programs to kill text (as opposed to deleting it).
1282 Supply two arguments, character numbers indicating the stretch of text
1283  to be killed.
1284 Any command that calls this function is a \"kill command\".
1285 If the previous command was also a kill command,
1286 the text killed this time appends to the text killed last time
1287 to make one entry in the kill ring."
1288   (interactive "*r\np")
1289 ;  (interactive
1290 ;   (let ((region-hack (and zmacs-regions (eq last-command 'yank))))
1291 ;     ;; This lets "^Y^W" work.  I think this is dumb, but zwei did it.
1292 ;     (if region-hack (zmacs-activate-region))
1293 ;     (prog1
1294 ;        (list (point) (mark) current-prefix-arg)
1295 ;       (if region-hack (zmacs-deactivate-region)))))
1296   ;; beg and end can be markers but the rest of this function is
1297   ;; written as if they are only integers
1298   (if (markerp beg) (setq beg (marker-position beg)))
1299   (if (markerp end) (setq end (marker-position end)))
1300   (or (and beg end) (if zmacs-regions ;; rewritten for I18N3 snarfing
1301                         (error "The region is not active now")
1302                       (error "The mark is not set now")))
1303   (if verbose (if buffer-read-only
1304                   (lmessage 'command "Copying %d characters"
1305                             (- (max beg end) (min beg end)))
1306                 (lmessage 'command "Killing %d characters"
1307                           (- (max beg end) (min beg end)))))
1308   (cond
1309
1310    ;; I don't like this large change in behavior -- jwz
1311    ;; Read-Only text means it shouldn't be deleted, so I'm restoring
1312    ;; this code, but only for text-properties and not full extents. -sb
1313    ;; If the buffer is read-only, we should beep, in case the person
1314    ;; just isn't aware of this.  However, there's no harm in putting
1315    ;; the region's text in the kill ring, anyway.
1316    ((or (and buffer-read-only (not inhibit-read-only))
1317         (text-property-not-all (min beg end) (max beg end) 'read-only nil))
1318    ;; This is redundant.
1319    ;; (if verbose (message "Copying %d characters"
1320    ;;                    (- (max beg end) (min beg end))))
1321     (copy-region-as-kill beg end)
1322    ;; ;; This should always barf, and give us the correct error.
1323    ;; (if kill-read-only-ok
1324    ;;     (message "Read only text copied to kill ring")
1325     (setq this-command 'kill-region)
1326     (barf-if-buffer-read-only)
1327     (signal 'buffer-read-only (list (current-buffer))))
1328
1329    ;; In certain cases, we can arrange for the undo list and the kill
1330    ;; ring to share the same string object.  This code does that.
1331    ((not (or (eq buffer-undo-list t)
1332              (eq last-command 'kill-region)
1333              ;; Use = since positions may be numbers or markers.
1334              (= beg end)))
1335     ;; Don't let the undo list be truncated before we can even access it.
1336     ;; FSF calls this `undo-strong-limit'
1337     (let ((undo-high-threshold (+ (- end beg) 100))
1338           ;(old-list buffer-undo-list)
1339           tail)
1340       (delete-region beg end)
1341       ;; Search back in buffer-undo-list for this string,
1342       ;; in case a change hook made property changes.
1343       (setq tail buffer-undo-list)
1344       (while (and tail
1345                   (not (stringp (car-safe (car-safe tail))))) ; XEmacs
1346         (pop tail))
1347       ;; Take the same string recorded for undo
1348       ;; and put it in the kill-ring.
1349       (and tail
1350            (kill-new (car (car tail))))))
1351
1352    (t
1353     ;; if undo is not kept, grab the string then delete it (which won't
1354     ;; add another string to the undo list).
1355     (copy-region-as-kill beg end)
1356     (delete-region beg end)))
1357   (setq this-command 'kill-region))
1358
1359 ;; copy-region-as-kill no longer sets this-command, because it's confusing
1360 ;; to get two copies of the text when the user accidentally types M-w and
1361 ;; then corrects it with the intended C-w.
1362 (defun copy-region-as-kill (beg end)
1363   "Save the region as if killed, but don't kill it.
1364 Run `kill-hooks'."
1365   (interactive "r")
1366   (if (eq last-command 'kill-region)
1367       (kill-append (buffer-substring beg end) (< end beg))
1368     (kill-new (buffer-substring beg end)))
1369   nil)
1370
1371 (defun kill-ring-save (beg end)
1372   "Save the region as if killed, but don't kill it.
1373 This command is similar to `copy-region-as-kill', except that it gives
1374 visual feedback indicating the extent of the region being copied."
1375   (interactive "r")
1376   (copy-region-as-kill beg end)
1377   ;; copy before delay, for xclipboard's benefit
1378   (if (interactive-p)
1379       (let ((other-end (if (= (point) beg) end beg))
1380             (opoint (point))
1381             ;; Inhibit quitting so we can make a quit here
1382             ;; look like a C-g typed as a command.
1383             (inhibit-quit t))
1384         (if (pos-visible-in-window-p other-end (selected-window))
1385             (progn
1386               ;; FSF (I'm not sure what this does -sb)
1387 ;             ;; Swap point and mark.
1388 ;             (set-marker (mark-marker) (point) (current-buffer))
1389               (goto-char other-end)
1390               (sit-for 1)
1391 ;             ;; Swap back.
1392 ;             (set-marker (mark-marker) other-end (current-buffer))
1393               (goto-char opoint)
1394               ;; If user quit, deactivate the mark
1395               ;; as C-g would as a command.
1396               (and quit-flag (mark)
1397                    (zmacs-deactivate-region)))
1398           ;; too noisy. -- jwz
1399 ;         (let* ((killed-text (current-kill 0))
1400 ;                (message-len (min (length killed-text) 40)))
1401 ;           (if (= (point) beg)
1402 ;               ;; Don't say "killed"; that is misleading.
1403 ;               (message "Saved text until \"%s\""
1404 ;                       (substring killed-text (- message-len)))
1405 ;             (message "Saved text from \"%s\""
1406 ;                     (substring killed-text 0 message-len))))
1407           ))))
1408
1409 (defun append-next-kill ()
1410   "Cause following command, if it kills, to append to previous kill."
1411   ;; XEmacs
1412   (interactive "_")
1413   (if (interactive-p)
1414       (progn
1415         (setq this-command 'kill-region)
1416         (display-message 'command
1417           "If the next command is a kill, it will append"))
1418     (setq last-command 'kill-region)))
1419
1420 (defun yank-pop (arg)
1421   "Replace just-yanked stretch of killed text with a different stretch.
1422 This command is allowed only immediately after a `yank' or a `yank-pop'.
1423 At such a time, the region contains a stretch of reinserted
1424 previously-killed text.  `yank-pop' deletes that text and inserts in its
1425 place a different stretch of killed text.
1426
1427 With no argument, the previous kill is inserted.
1428 With argument N, insert the Nth previous kill.
1429 If N is negative, this is a more recent kill.
1430
1431 The sequence of kills wraps around, so that after the oldest one
1432 comes the newest one."
1433   (interactive "*p")
1434   (if (not (eq last-command 'yank))
1435       (error "Previous command was not a yank"))
1436   (setq this-command 'yank)
1437   (let ((inhibit-read-only t)
1438         (before (< (point) (mark t))))
1439     (delete-region (point) (mark t))
1440     ;;(set-marker (mark-marker) (point) (current-buffer))
1441     (set-mark (point))
1442     (insert (current-kill arg))
1443     (if before
1444         ;; This is like exchange-point-and-mark, but doesn't activate the mark.
1445         ;; It is cleaner to avoid activation, even though the command
1446         ;; loop would deactivate the mark because we inserted text.
1447         (goto-char (prog1 (mark t)
1448                      (set-marker (mark-marker t) (point) (current-buffer))))))
1449   nil)
1450
1451
1452 (defun yank (&optional arg)
1453   "Reinsert the last stretch of killed text.
1454 More precisely, reinsert the stretch of killed text most recently
1455 killed OR yanked.  Put point at end, and set mark at beginning.
1456 With just C-u as argument, same but put point at beginning (and mark at end).
1457 With argument N, reinsert the Nth most recently killed stretch of killed
1458 text.
1459 See also the command \\[yank-pop]."
1460   (interactive "*P")
1461   ;; If we don't get all the way through, make last-command indicate that
1462   ;; for the following command.
1463   (setq this-command t)
1464   (push-mark (point))
1465   (insert (current-kill (cond
1466                          ((listp arg) 0)
1467                          ((eq arg '-) -1)
1468                          (t (1- arg)))))
1469   (if (consp arg)
1470       ;; This is like exchange-point-and-mark, but doesn't activate the mark.
1471       ;; It is cleaner to avoid activation, even though the command
1472       ;; loop would deactivate the mark because we inserted text.
1473       ;; (But it's an unnecessary kludge in XEmacs.)
1474       ;(goto-char (prog1 (mark t)
1475                    ;(set-marker (mark-marker) (point) (current-buffer)))))
1476       (exchange-point-and-mark t))
1477   ;; If we do get all the way thru, make this-command indicate that.
1478   (setq this-command 'yank)
1479   nil)
1480
1481 (defun rotate-yank-pointer (arg)
1482   "Rotate the yanking point in the kill ring.
1483 With argument, rotate that many kills forward (or backward, if negative)."
1484   (interactive "p")
1485   (current-kill arg))
1486
1487 \f
1488 (defun insert-buffer (buffer)
1489   "Insert after point the contents of BUFFER.
1490 Puts mark after the inserted text.
1491 BUFFER may be a buffer or a buffer name."
1492   (interactive
1493    (list
1494     (progn
1495       (barf-if-buffer-read-only)
1496       (read-buffer "Insert buffer: "
1497                    ;; XEmacs: we have different args
1498                    (other-buffer (current-buffer) nil t)
1499                    t))))
1500   (or (bufferp buffer)
1501       (setq buffer (get-buffer buffer)))
1502   (let (start end newmark)
1503     (save-excursion
1504       (save-excursion
1505         (set-buffer buffer)
1506         (setq start (point-min) end (point-max)))
1507       (insert-buffer-substring buffer start end)
1508       (setq newmark (point)))
1509     (push-mark newmark))
1510   nil)
1511
1512 (defun append-to-buffer (buffer start end)
1513   "Append to specified buffer the text of the region.
1514 It is inserted into that buffer before its point.
1515
1516 When calling from a program, give three arguments:
1517 BUFFER (or buffer name), START and END.
1518 START and END specify the portion of the current buffer to be copied."
1519   (interactive
1520    ;; XEmacs: we have different args to other-buffer
1521    (list (read-buffer "Append to buffer: " (other-buffer (current-buffer)
1522                                                          nil t))
1523          (region-beginning) (region-end)))
1524   (let ((oldbuf (current-buffer)))
1525     (save-excursion
1526       (set-buffer (get-buffer-create buffer))
1527       (insert-buffer-substring oldbuf start end))))
1528
1529 (defun prepend-to-buffer (buffer start end)
1530   "Prepend to specified buffer the text of the region.
1531 It is inserted into that buffer after its point.
1532
1533 When calling from a program, give three arguments:
1534 BUFFER (or buffer name), START and END.
1535 START and END specify the portion of the current buffer to be copied."
1536   (interactive "BPrepend to buffer: \nr")
1537   (let ((oldbuf (current-buffer)))
1538     (save-excursion
1539       (set-buffer (get-buffer-create buffer))
1540       (save-excursion
1541         (insert-buffer-substring oldbuf start end)))))
1542
1543 (defun copy-to-buffer (buffer start end)
1544   "Copy to specified buffer the text of the region.
1545 It is inserted into that buffer, replacing existing text there.
1546
1547 When calling from a program, give three arguments:
1548 BUFFER (or buffer name), START and END.
1549 START and END specify the portion of the current buffer to be copied."
1550   (interactive "BCopy to buffer: \nr")
1551   (let ((oldbuf (current-buffer)))
1552     (save-excursion
1553       (set-buffer (get-buffer-create buffer))
1554       (erase-buffer)
1555       (save-excursion
1556         (insert-buffer-substring oldbuf start end)))))
1557 \f
1558 ;FSFmacs
1559 ;(put 'mark-inactive 'error-conditions '(mark-inactive error))
1560 ;(put 'mark-inactive 'error-message "The mark is not active now")
1561
1562 (defun mark (&optional force buffer)
1563   "Return this buffer's mark value as integer, or nil if no mark.
1564
1565 If `zmacs-regions' is true, then this returns nil unless the region is
1566 currently in the active (highlighted) state.  With an argument of t, this
1567 returns the mark (if there is one) regardless of the active-region state.
1568 You should *generally* not use the mark unless the region is active, if
1569 the user has expressed a preference for the active-region model.
1570
1571 If you are using this in an editing command, you are most likely making
1572 a mistake; see the documentation of `set-mark'."
1573   (setq buffer (decode-buffer buffer))
1574 ;FSFmacs version:
1575 ;  (if (or force (not transient-mark-mode) mark-active mark-even-if-inactive)
1576 ;      (marker-position (mark-marker))
1577 ;    (signal 'mark-inactive nil)))
1578   (let ((m (mark-marker force buffer)))
1579     (and m (marker-position m))))
1580
1581 ;;;#### FSFmacs
1582 ;;; Many places set mark-active directly, and several of them failed to also
1583 ;;; run deactivate-mark-hook.  This shorthand should simplify.
1584 ;(defsubst deactivate-mark ()
1585 ;  "Deactivate the mark by setting `mark-active' to nil.
1586 ;\(That makes a difference only in Transient Mark mode.)
1587 ;Also runs the hook `deactivate-mark-hook'."
1588 ;  (if transient-mark-mode
1589 ;      (progn
1590 ;       (setq mark-active nil)
1591 ;       (run-hooks 'deactivate-mark-hook))))
1592
1593 (defun set-mark (pos &optional buffer)
1594   "Set this buffer's mark to POS.  Don't use this function!
1595 That is to say, don't use this function unless you want
1596 the user to see that the mark has moved, and you want the previous
1597 mark position to be lost.
1598
1599 Normally, when a new mark is set, the old one should go on the stack.
1600 This is why most applications should use push-mark, not set-mark.
1601
1602 Novice Emacs Lisp programmers often try to use the mark for the wrong
1603 purposes.  The mark saves a location for the user's convenience.
1604 Most editing commands should not alter the mark.
1605 To remember a location for internal use in the Lisp program,
1606 store it in a Lisp variable.  Example:
1607
1608    (let ((beg (point))) (forward-line 1) (delete-region beg (point)))."
1609
1610   (setq buffer (decode-buffer buffer))
1611   (set-marker (mark-marker t buffer) pos buffer))
1612 ;; FSF
1613 ;  (if pos
1614 ;     (progn
1615 ;       (setq mark-active t)
1616 ;       (run-hooks 'activate-mark-hook)
1617 ;       (set-marker (mark-marker) pos (current-buffer)))
1618 ;    ;; Normally we never clear mark-active except in Transient Mark mode.
1619 ;    ;; But when we actually clear out the mark value too,
1620 ;    ;; we must clear mark-active in any mode.
1621 ;    (setq mark-active nil)
1622 ;    (run-hooks 'deactivate-mark-hook)
1623 ;    (set-marker (mark-marker) nil)))
1624
1625 (defvar mark-ring nil
1626   "The list of former marks of the current buffer, most recent first.")
1627 (make-variable-buffer-local 'mark-ring)
1628 (put 'mark-ring 'permanent-local t)
1629
1630 (defcustom mark-ring-max 16
1631   "*Maximum size of mark ring.  Start discarding off end if gets this big."
1632   :type 'integer
1633   :group 'killing)
1634
1635 (defvar global-mark-ring nil
1636   "The list of saved global marks, most recent first.")
1637
1638 (defcustom global-mark-ring-max 16
1639   "*Maximum size of global mark ring.  \
1640 Start discarding off end if gets this big."
1641   :type 'integer
1642   :group 'killing)
1643
1644 (defun set-mark-command (arg)
1645   "Set mark at where point is, or jump to mark.
1646 With no prefix argument, set mark, push old mark position on local mark
1647 ring, and push mark on global mark ring.
1648 With argument, jump to mark, and pop a new position for mark off the ring
1649 \(does not affect global mark ring\).
1650
1651 Novice Emacs Lisp programmers often try to use the mark for the wrong
1652 purposes.  See the documentation of `set-mark' for more information."
1653   (interactive "P")
1654   (if (null arg)
1655       (push-mark nil nil t)
1656     (if (null (mark t))
1657         (error "No mark set in this buffer")
1658       (goto-char (mark t))
1659       (pop-mark))))
1660
1661 ;; XEmacs: Extra parameter
1662 (defun push-mark (&optional location nomsg activate-region buffer)
1663   "Set mark at LOCATION (point, by default) and push old mark on mark ring.
1664 If the last global mark pushed was not in the current buffer,
1665 also push LOCATION on the global mark ring.
1666 Display `Mark set' unless the optional second arg NOMSG is non-nil.
1667 Activate mark if optional third arg ACTIVATE-REGION non-nil.
1668
1669 Novice Emacs Lisp programmers often try to use the mark for the wrong
1670 purposes.  See the documentation of `set-mark' for more information."
1671   (setq buffer (decode-buffer buffer)) ; XEmacs
1672   (if (null (mark t buffer)) ; XEmacs
1673       nil
1674     ;; The save-excursion / set-buffer is necessary because mark-ring
1675     ;; is a buffer local variable
1676     (save-excursion
1677       (set-buffer buffer)
1678       (setq mark-ring (cons (copy-marker (mark-marker t buffer)) mark-ring))
1679       (if (> (length mark-ring) mark-ring-max)
1680           (progn
1681             (move-marker (car (nthcdr mark-ring-max mark-ring)) nil buffer)
1682             (setcdr (nthcdr (1- mark-ring-max) mark-ring) nil)))))
1683   (set-mark (or location (point buffer)) buffer)
1684 ; (set-marker (mark-marker) (or location (point)) (current-buffer)) ; FSF
1685   ;; Now push the mark on the global mark ring.
1686   (if (or (null global-mark-ring)
1687           (not (eq (marker-buffer (car global-mark-ring)) buffer)))
1688       ;; The last global mark pushed wasn't in this same buffer.
1689       (progn
1690         (setq global-mark-ring (cons (copy-marker (mark-marker t buffer))
1691                                      global-mark-ring))
1692         (if (> (length global-mark-ring) global-mark-ring-max)
1693             (progn
1694               (move-marker (car (nthcdr global-mark-ring-max global-mark-ring))
1695                            nil buffer)
1696               (setcdr (nthcdr (1- global-mark-ring-max) global-mark-ring) nil)))))
1697   (or nomsg executing-kbd-macro (> (minibuffer-depth) 0)
1698       (display-message 'command "Mark set"))
1699   (if activate-region
1700       (progn
1701         (setq zmacs-region-stays t)
1702         (zmacs-activate-region)))
1703 ; (if (or activate (not transient-mark-mode)) ; FSF
1704 ;     (set-mark (mark t))) ; FSF
1705   nil)
1706
1707 (defun pop-mark ()
1708   "Pop off mark ring into the buffer's actual mark.
1709 Does not set point.  Does nothing if mark ring is empty."
1710   (if mark-ring
1711       (progn
1712         (setq mark-ring (nconc mark-ring (list (copy-marker (mark-marker t)))))
1713         (set-mark (car mark-ring))
1714         (move-marker (car mark-ring) nil)
1715         (if (null (mark t)) (ding))
1716         (setq mark-ring (cdr mark-ring)))))
1717
1718 (define-function 'exchange-dot-and-mark 'exchange-point-and-mark)
1719 (defun exchange-point-and-mark (&optional dont-activate-region)
1720   "Put the mark where point is now, and point where the mark is now.
1721 The mark is activated unless DONT-ACTIVATE-REGION is non-nil."
1722   (interactive nil)
1723   (let ((omark (mark t)))
1724     (if (null omark)
1725         (error "No mark set in this buffer"))
1726     (set-mark (point))
1727     (goto-char omark)
1728     (or dont-activate-region (zmacs-activate-region)) ; XEmacs
1729     nil))
1730
1731 ;; XEmacs
1732 (defun mark-something (mark-fn movement-fn arg)
1733   "internal function used by mark-sexp, mark-word, etc."
1734   (let (newmark (pushp t))
1735     (save-excursion
1736       (if (and (eq last-command mark-fn) (mark))
1737           ;; Extend the previous state in the same direction:
1738           (progn
1739             (if (< (mark) (point)) (setq arg (- arg)))
1740             (goto-char (mark))
1741             (setq pushp nil)))
1742       (funcall movement-fn arg)
1743       (setq newmark (point)))
1744     (if pushp
1745         (push-mark newmark nil t)
1746       ;; Do not mess with the mark stack, but merely adjust the previous state:
1747       (set-mark newmark)
1748       (activate-region))))
1749
1750 ;(defun transient-mark-mode (arg)
1751 ;  "Toggle Transient Mark mode.
1752 ;With arg, turn Transient Mark mode on if arg is positive, off otherwise.
1753 ;
1754 ;In Transient Mark mode, when the mark is active, the region is highlighted.
1755 ;Changing the buffer \"deactivates\" the mark.
1756 ;So do certain other operations that set the mark
1757 ;but whose main purpose is something else--for example,
1758 ;incremental search, \\[beginning-of-buffer], and \\[end-of-buffer]."
1759 ;  (interactive "P")
1760 ;  (setq transient-mark-mode
1761 ;       (if (null arg)
1762 ;           (not transient-mark-mode)
1763 ;         (> (prefix-numeric-value arg) 0))))
1764
1765 (defun pop-global-mark ()
1766   "Pop off global mark ring and jump to the top location."
1767   (interactive)
1768   ;; Pop entries which refer to non-existent buffers.
1769   (while (and global-mark-ring (not (marker-buffer (car global-mark-ring))))
1770     (setq global-mark-ring (cdr global-mark-ring)))
1771   (or global-mark-ring
1772       (error "No global mark set"))
1773   (let* ((marker (car global-mark-ring))
1774          (buffer (marker-buffer marker))
1775          (position (marker-position marker)))
1776     (setq global-mark-ring (nconc (cdr global-mark-ring)
1777                                   (list (car global-mark-ring))))
1778     (set-buffer buffer)
1779     (or (and (>= position (point-min))
1780              (<= position (point-max)))
1781         (widen))
1782     (goto-char position)
1783     (switch-to-buffer buffer)))
1784
1785 \f
1786 (defcustom signal-error-on-buffer-boundary t
1787   "*Non-nil value causes XEmacs to beep or signal an error when certain interactive commands would move point past (point-min) or (point-max).
1788 The commands that honor this variable are
1789
1790 forward-char-command
1791 backward-char-command
1792 next-line
1793 previous-line
1794 scroll-up-command
1795 scroll-down-command"
1796   :type 'boolean
1797   :group 'editing-basics)
1798
1799 ;;; After 8 years of waiting ... -sb
1800 (defcustom next-line-add-newlines nil  ; XEmacs
1801   "*If non-nil, `next-line' inserts newline when the point is at end of buffer.
1802 This behavior used to be the default, and is still default in FSF Emacs.
1803 We think it is an unnecessary and unwanted side-effect."
1804   :type 'boolean
1805   :group 'editing-basics)
1806
1807 (defun forward-char-command (&optional arg buffer)
1808   "Move point right ARG characters (left if ARG negative) in BUFFER.
1809 On attempt to pass end of buffer, stop and signal `end-of-buffer'.
1810 On attempt to pass beginning of buffer, stop and signal `beginning-of-buffer'.
1811 Error signaling is suppressed if `signal-error-on-buffer-boundary'
1812 is nil.  If BUFFER is nil, the current buffer is assumed."
1813   (interactive "_p")
1814   (if signal-error-on-buffer-boundary
1815       (forward-char arg buffer)
1816     (condition-case nil
1817         (forward-char arg buffer)
1818       (beginning-of-buffer nil)
1819       (end-of-buffer nil))))
1820
1821 (defun backward-char-command (&optional arg buffer)
1822   "Move point left ARG characters (right if ARG negative) in BUFFER.
1823 On attempt to pass end of buffer, stop and signal `end-of-buffer'.
1824 On attempt to pass beginning of buffer, stop and signal `beginning-of-buffer'.
1825 Error signaling is suppressed if `signal-error-on-buffer-boundary'
1826 is nil.  If BUFFER is nil, the current buffer is assumed."
1827   (interactive "_p")
1828   (if signal-error-on-buffer-boundary
1829       (backward-char arg buffer)
1830     (condition-case nil
1831         (backward-char arg buffer)
1832       (beginning-of-buffer nil)
1833       (end-of-buffer nil))))
1834
1835 (defun scroll-up-command (&optional n)
1836   "Scroll text of current window upward ARG lines; or near full screen if no ARG.
1837 A near full screen is `next-screen-context-lines' less than a full screen.
1838 Negative ARG means scroll downward.
1839 When calling from a program, supply a number as argument or nil.
1840 On attempt to scroll past end of buffer, `end-of-buffer' is signaled.
1841 On attempt to scroll past beginning of buffer, `beginning-of-buffer' is
1842 signaled.
1843
1844 If `signal-error-on-buffer-boundary' is nil, attempts to scroll past buffer
1845 boundaries do not cause an error to be signaled."
1846   (interactive "_P")
1847   (if signal-error-on-buffer-boundary
1848       (scroll-up n)
1849     (condition-case nil
1850         (scroll-up n)
1851       (beginning-of-buffer nil)
1852       (end-of-buffer nil))))
1853
1854 (defun scroll-down-command (&optional n)
1855   "Scroll text of current window downward ARG lines; or near full screen if no ARG.
1856 A near full screen is `next-screen-context-lines' less than a full screen.
1857 Negative ARG means scroll upward.
1858 When calling from a program, supply a number as argument or nil.
1859 On attempt to scroll past end of buffer, `end-of-buffer' is signaled.
1860 On attempt to scroll past beginning of buffer, `beginning-of-buffer' is
1861 signaled.
1862
1863 If `signal-error-on-buffer-boundary' is nil, attempts to scroll past buffer
1864 boundaries do not cause an error to be signaled."
1865   (interactive "_P")
1866   (if signal-error-on-buffer-boundary
1867       (scroll-down n)
1868     (condition-case nil
1869         (scroll-down n)
1870       (beginning-of-buffer nil)
1871       (end-of-buffer nil))))
1872
1873 (defun next-line (arg)
1874   "Move cursor vertically down ARG lines.
1875 If there is no character in the target line exactly under the current column,
1876 the cursor is positioned after the character in that line which spans this
1877 column, or at the end of the line if it is not long enough.
1878
1879 If there is no line in the buffer after this one, behavior depends on the
1880 value of `next-line-add-newlines'.  If non-nil, it inserts a newline character
1881 to create a line, and moves the cursor to that line.  Otherwise it moves the
1882 cursor to the end of the buffer.
1883
1884 The command \\[set-goal-column] can be used to create
1885 a semipermanent goal column to which this command always moves.
1886 Then it does not try to move vertically.  This goal column is stored
1887 in `goal-column', which is nil when there is none.
1888
1889 If you are thinking of using this in a Lisp program, consider
1890 using `forward-line' instead.  It is usually easier to use
1891 and more reliable (no dependence on goal column, etc.)."
1892   (interactive "_p") ; XEmacs
1893   (if (and next-line-add-newlines (= arg 1))
1894       (let ((opoint (point)))
1895         (end-of-line)
1896         (if (eobp)
1897             (newline 1)
1898           (goto-char opoint)
1899           (line-move arg)))
1900     (if (interactive-p)
1901         ;; XEmacs:  Not sure what to do about this.  It's inconsistent. -sb
1902         (condition-case nil
1903             (line-move arg)
1904           ((beginning-of-buffer end-of-buffer)
1905            (when signal-error-on-buffer-boundary
1906              (ding nil 'buffer-bound))))
1907       (line-move arg)))
1908   nil)
1909
1910 (defun previous-line (arg)
1911   "Move cursor vertically up ARG lines.
1912 If there is no character in the target line exactly over the current column,
1913 the cursor is positioned after the character in that line which spans this
1914 column, or at the end of the line if it is not long enough.
1915
1916 The command \\[set-goal-column] can be used to create
1917 a semipermanent goal column to which this command always moves.
1918 Then it does not try to move vertically.
1919
1920 If you are thinking of using this in a Lisp program, consider using
1921 `forward-line' with a negative argument instead.  It is usually easier
1922 to use and more reliable (no dependence on goal column, etc.)."
1923   (interactive "_p") ; XEmacs
1924   (if (interactive-p)
1925       (condition-case nil
1926           (line-move (- arg))
1927         ((beginning-of-buffer end-of-buffer)
1928          (when signal-error-on-buffer-boundary ; XEmacs
1929            (ding nil 'buffer-bound))))
1930     (line-move (- arg)))
1931   nil)
1932
1933 (defcustom track-eol nil
1934   "*Non-nil means vertical motion starting at end of line keeps to ends of lines.
1935 This means moving to the end of each line moved onto.
1936 The beginning of a blank line does not count as the end of a line."
1937   :type 'boolean
1938   :group 'editing-basics)
1939
1940 (defcustom goal-column nil
1941   "*Semipermanent goal column for vertical motion, as set by \\[set-goal-column], or nil."
1942   :type '(choice integer (const :tag "None" nil))
1943   :group 'editing-basics)
1944 (make-variable-buffer-local 'goal-column)
1945
1946 (defvar temporary-goal-column 0
1947   "Current goal column for vertical motion.
1948 It is the column where point was
1949 at the start of current run of vertical motion commands.
1950 When the `track-eol' feature is doing its job, the value is 9999.")
1951 (make-variable-buffer-local 'temporary-goal-column)
1952
1953 ;XEmacs: not yet ported, so avoid compiler warnings
1954 (eval-when-compile
1955   (defvar inhibit-point-motion-hooks))
1956
1957 (defcustom line-move-ignore-invisible nil
1958   "*Non-nil means \\[next-line] and \\[previous-line] ignore invisible lines.
1959 Use with care, as it slows down movement significantly.  Outline mode sets this."
1960   :type 'boolean
1961   :group 'editing-basics)
1962
1963 ;; This is the guts of next-line and previous-line.
1964 ;; Arg says how many lines to move.
1965 (defun line-move (arg)
1966   ;; Don't run any point-motion hooks, and disregard intangibility,
1967   ;; for intermediate positions.
1968   (let ((inhibit-point-motion-hooks t)
1969         (opoint (point))
1970         new)
1971     (unwind-protect
1972         (progn
1973           (if (not (or (eq last-command 'next-line)
1974                        (eq last-command 'previous-line)))
1975               (setq temporary-goal-column
1976                     (if (and track-eol (eolp)
1977                              ;; Don't count beg of empty line as end of line
1978                              ;; unless we just did explicit end-of-line.
1979                              (or (not (bolp)) (eq last-command 'end-of-line)))
1980                         9999
1981                       (current-column))))
1982           (if (and (not (integerp selective-display))
1983                    (not line-move-ignore-invisible))
1984               ;; Use just newline characters.
1985               (or (if (> arg 0)
1986                       (progn (if (> arg 1) (forward-line (1- arg)))
1987                              ;; This way of moving forward ARG lines
1988                              ;; verifies that we have a newline after the last one.
1989                              ;; It doesn't get confused by intangible text.
1990                              (end-of-line)
1991                              (zerop (forward-line 1)))
1992                     (and (zerop (forward-line arg))
1993                          (bolp)))
1994                   (signal (if (< arg 0)
1995                               'beginning-of-buffer
1996                             'end-of-buffer)
1997                           nil))
1998             ;; Move by arg lines, but ignore invisible ones.
1999             (while (> arg 0)
2000               (end-of-line)
2001               (and (zerop (vertical-motion 1))
2002                    (signal 'end-of-buffer nil))
2003               ;; If the following character is currently invisible,
2004               ;; skip all characters with that same `invisible' property value.
2005               (while (and (not (eobp))
2006                           (let ((prop
2007                                  (get-char-property (point) 'invisible)))
2008                             (if (eq buffer-invisibility-spec t)
2009                                 prop
2010                               (or (memq prop buffer-invisibility-spec)
2011                                   (assq prop buffer-invisibility-spec)))))
2012                 (if (get-text-property (point) 'invisible)
2013                     (goto-char (next-single-property-change (point) 'invisible))
2014                   (goto-char (next-extent-change (point))))) ; XEmacs
2015               (setq arg (1- arg)))
2016             (while (< arg 0)
2017               (beginning-of-line)
2018               (and (zerop (vertical-motion -1))
2019                    (signal 'beginning-of-buffer nil))
2020               (while (and (not (bobp))
2021                           (let ((prop
2022                                  (get-char-property (1- (point)) 'invisible)))
2023                             (if (eq buffer-invisibility-spec t)
2024                                 prop
2025                               (or (memq prop buffer-invisibility-spec)
2026                                   (assq prop buffer-invisibility-spec)))))
2027                 (if (get-text-property (1- (point)) 'invisible)
2028                     (goto-char (previous-single-property-change (point) 'invisible))
2029                   (goto-char (previous-extent-change (point))))) ; XEmacs
2030               (setq arg (1+ arg))))
2031           (move-to-column (or goal-column temporary-goal-column)))
2032       ;; Remember where we moved to, go back home,
2033       ;; then do the motion over again
2034       ;; in just one step, with intangibility and point-motion hooks
2035       ;; enabled this time.
2036       (setq new (point))
2037       (goto-char opoint)
2038       (setq inhibit-point-motion-hooks nil)
2039       (goto-char new)))
2040   nil)
2041
2042 ;;; Many people have said they rarely use this feature, and often type
2043 ;;; it by accident.  Maybe it shouldn't even be on a key.
2044 ;; It's not on a key, as of 20.2.  So no need for this.
2045 ;(put 'set-goal-column 'disabled t)
2046
2047 (defun set-goal-column (arg)
2048   "Set the current horizontal position as a goal for \\[next-line] and \\[previous-line].
2049 Those commands will move to this position in the line moved to
2050 rather than trying to keep the same horizontal position.
2051 With a non-nil argument, clears out the goal column
2052 so that \\[next-line] and \\[previous-line] resume vertical motion.
2053 The goal column is stored in the variable `goal-column'."
2054   (interactive "_P") ; XEmacs
2055   (if arg
2056       (progn
2057         (setq goal-column nil)
2058         (display-message 'command "No goal column"))
2059     (setq goal-column (current-column))
2060     (lmessage 'command
2061         "Goal column %d (use %s with an arg to unset it)"
2062       goal-column
2063       (substitute-command-keys "\\[set-goal-column]")))
2064   nil)
2065 \f
2066 ;; deleted FSFmacs terminal randomness hscroll-point-visible stuff.
2067 ;; hscroll-step
2068 ;; hscroll-point-visible
2069 ;; hscroll-window-column
2070 ;; right-arrow
2071 ;; left-arrow
2072
2073 (defun scroll-other-window-down (lines)
2074   "Scroll the \"other window\" down.
2075 For more details, see the documentation for `scroll-other-window'."
2076   (interactive "P")
2077   (scroll-other-window
2078    ;; Just invert the argument's meaning.
2079    ;; We can do that without knowing which window it will be.
2080    (if (eq lines '-) nil
2081      (if (null lines) '-
2082        (- (prefix-numeric-value lines))))))
2083 ;(define-key esc-map [?\C-\S-v] 'scroll-other-window-down)
2084
2085 (defun beginning-of-buffer-other-window (arg)
2086   "Move point to the beginning of the buffer in the other window.
2087 Leave mark at previous position.
2088 With arg N, put point N/10 of the way from the true beginning."
2089   (interactive "P")
2090   (let ((orig-window (selected-window))
2091         (window (other-window-for-scrolling)))
2092     ;; We use unwind-protect rather than save-window-excursion
2093     ;; because the latter would preserve the things we want to change.
2094     (unwind-protect
2095         (progn
2096           (select-window window)
2097           ;; Set point and mark in that window's buffer.
2098           (beginning-of-buffer arg)
2099           ;; Set point accordingly.
2100           (recenter '(t)))
2101       (select-window orig-window))))
2102
2103 (defun end-of-buffer-other-window (arg)
2104   "Move point to the end of the buffer in the other window.
2105 Leave mark at previous position.
2106 With arg N, put point N/10 of the way from the true end."
2107   (interactive "P")
2108   ;; See beginning-of-buffer-other-window for comments.
2109   (let ((orig-window (selected-window))
2110         (window (other-window-for-scrolling)))
2111     (unwind-protect
2112         (progn
2113           (select-window window)
2114           (end-of-buffer arg)
2115           (recenter '(t)))
2116       (select-window orig-window))))
2117 \f
2118 (defun transpose-chars (arg)
2119   "Interchange characters around point, moving forward one character.
2120 With prefix arg ARG, effect is to take character before point
2121 and drag it forward past ARG other characters (backward if ARG negative).
2122 If no argument and at end of line, the previous two chars are exchanged."
2123   (interactive "*P")
2124   (and (null arg) (eolp) (forward-char -1))
2125   (transpose-subr 'forward-char (prefix-numeric-value arg)))
2126
2127 ;;; A very old implementation of transpose-chars from the old days ...
2128 (defun transpose-preceding-chars (arg)
2129   "Interchange characters before point.
2130 With prefix arg ARG, effect is to take character before point
2131 and drag it forward past ARG other characters (backward if ARG negative).
2132 If no argument and not at start of line, the previous two chars are exchanged."
2133   (interactive "*P")
2134   (and (null arg) (not (bolp)) (forward-char -1))
2135   (transpose-subr 'forward-char (prefix-numeric-value arg)))
2136
2137
2138 (defun transpose-words (arg)
2139   "Interchange words around point, leaving point at end of them.
2140 With prefix arg ARG, effect is to take word before or around point
2141 and drag it forward past ARG other words (backward if ARG negative).
2142 If ARG is zero, the words around or after point and around or after mark
2143 are interchanged."
2144   (interactive "*p")
2145   (transpose-subr 'forward-word arg))
2146
2147 (defun transpose-sexps (arg)
2148   "Like \\[transpose-words] but applies to sexps.
2149 Does not work on a sexp that point is in the middle of
2150 if it is a list or string."
2151   (interactive "*p")
2152   (transpose-subr 'forward-sexp arg))
2153
2154 (defun transpose-lines (arg)
2155   "Exchange current line and previous line, leaving point after both.
2156 With argument ARG, takes previous line and moves it past ARG lines.
2157 With argument 0, interchanges line point is in with line mark is in."
2158   (interactive "*p")
2159   (transpose-subr #'(lambda (arg)
2160                      (if (= arg 1)
2161                          (progn
2162                            ;; Move forward over a line,
2163                            ;; but create a newline if none exists yet.
2164                            (end-of-line)
2165                            (if (eobp)
2166                                (newline)
2167                              (forward-char 1)))
2168                        (forward-line arg)))
2169                   arg))
2170
2171 (eval-when-compile
2172   ;; avoid byte-compiler warnings...
2173   (defvar start1)
2174   (defvar start2)
2175   (defvar end1)
2176   (defvar end2))
2177
2178 ; start[12] and end[12] used in transpose-subr-1 below
2179 (defun transpose-subr (mover arg)
2180   (let (start1 end1 start2 end2)
2181     (if (= arg 0)
2182         (progn
2183           (save-excursion
2184             (funcall mover 1)
2185             (setq end2 (point))
2186             (funcall mover -1)
2187             (setq start2 (point))
2188             (goto-char (mark t)) ; XEmacs
2189             (funcall mover 1)
2190             (setq end1 (point))
2191             (funcall mover -1)
2192             (setq start1 (point))
2193             (transpose-subr-1))
2194           (exchange-point-and-mark t))) ; XEmacs
2195     (while (> arg 0)
2196       (funcall mover -1)
2197       (setq start1 (point))
2198       (funcall mover 1)
2199       (setq end1 (point))
2200       (funcall mover 1)
2201       (setq end2 (point))
2202       (funcall mover -1)
2203       (setq start2 (point))
2204       (transpose-subr-1)
2205       (goto-char end2)
2206       (setq arg (1- arg)))
2207     (while (< arg 0)
2208       (funcall mover -1)
2209       (setq start2 (point))
2210       (funcall mover -1)
2211       (setq start1 (point))
2212       (funcall mover 1)
2213       (setq end1 (point))
2214       (funcall mover 1)
2215       (setq end2 (point))
2216       (transpose-subr-1)
2217       (setq arg (1+ arg)))))
2218
2219 ; start[12] and end[12] used free
2220 (defun transpose-subr-1 ()
2221   (if (> (min end1 end2) (max start1 start2))
2222       (error "Don't have two things to transpose"))
2223   (let ((word1 (buffer-substring start1 end1))
2224         (word2 (buffer-substring start2 end2)))
2225     (delete-region start2 end2)
2226     (goto-char start2)
2227     (insert word1)
2228     (goto-char (if (< start1 start2) start1
2229                  (+ start1 (- (length word1) (length word2)))))
2230     (delete-char (length word1))
2231     (insert word2)))
2232 \f
2233 (defcustom comment-column 32
2234   "*Column to indent right-margin comments to.
2235 Setting this variable automatically makes it local to the current buffer.
2236 Each mode establishes a different default value for this variable; you
2237 can set the value for a particular mode using that mode's hook."
2238   :type 'integer
2239   :group 'fill-comments)
2240 (make-variable-buffer-local 'comment-column)
2241
2242 (defcustom comment-start nil
2243   "*String to insert to start a new comment, or nil if no comment syntax."
2244   :type '(choice (const :tag "None" nil)
2245                  string)
2246   :group 'fill-comments)
2247
2248 (defcustom comment-start-skip nil
2249   "*Regexp to match the start of a comment plus everything up to its body.
2250 If there are any \\(...\\) pairs, the comment delimiter text is held to begin
2251 at the place matched by the close of the first pair."
2252   :type '(choice (const :tag "None" nil)
2253                  regexp)
2254   :group 'fill-comments)
2255
2256 (defcustom comment-end ""
2257   "*String to insert to end a new comment.
2258 Should be an empty string if comments are terminated by end-of-line."
2259   :type 'string
2260   :group 'fill-comments)
2261
2262 (defconst comment-indent-hook nil
2263   "Obsolete variable for function to compute desired indentation for a comment.
2264 Use `comment-indent-function' instead.
2265 This function is called with no args with point at the beginning of
2266 the comment's starting delimiter.")
2267
2268 (defconst comment-indent-function
2269   ;; XEmacs - add at least one space after the end of the text on the
2270   ;; current line...
2271   (lambda ()
2272     (save-excursion
2273       (beginning-of-line)
2274       (let ((eol (save-excursion (end-of-line) (point))))
2275         (and comment-start-skip
2276              (re-search-forward comment-start-skip eol t)
2277              (setq eol (match-beginning 0)))
2278         (goto-char eol)
2279         (skip-chars-backward " \t")
2280         (max comment-column (1+ (current-column))))))
2281   "Function to compute desired indentation for a comment.
2282 This function is called with no args with point at the beginning of
2283 the comment's starting delimiter.")
2284
2285 (defcustom block-comment-start nil
2286   "*String to insert to start a new comment on a line by itself.
2287 If nil, use `comment-start' instead.
2288 Note that the regular expression `comment-start-skip' should skip this string
2289 as well as the `comment-start' string."
2290   :type '(choice (const :tag "Use `comment-start'" nil)
2291                  string)
2292   :group 'fill-comments)
2293
2294 (defcustom block-comment-end nil
2295   "*String to insert to end a new comment on a line by itself.
2296 Should be an empty string if comments are terminated by end-of-line.
2297 If nil, use `comment-end' instead."
2298   :type '(choice (const :tag "Use `comment-end'" nil)
2299                  string)
2300   :group 'fill-comments)
2301
2302 (defun indent-for-comment ()
2303   "Indent this line's comment to comment column, or insert an empty comment."
2304   (interactive "*")
2305   (let* ((empty (save-excursion (beginning-of-line)
2306                                 (looking-at "[ \t]*$")))
2307          (starter (or (and empty block-comment-start) comment-start))
2308          (ender (or (and empty block-comment-end) comment-end)))
2309     (if (null starter)
2310         (error "No comment syntax defined")
2311       (let* ((eolpos (save-excursion (end-of-line) (point)))
2312              cpos indent begpos)
2313         (beginning-of-line)
2314         (if (re-search-forward comment-start-skip eolpos 'move)
2315             (progn (setq cpos (point-marker))
2316                    ;; Find the start of the comment delimiter.
2317                    ;; If there were paren-pairs in comment-start-skip,
2318                    ;; position at the end of the first pair.
2319                    (if (match-end 1)
2320                        (goto-char (match-end 1))
2321                      ;; If comment-start-skip matched a string with
2322                      ;; internal whitespace (not final whitespace) then
2323                      ;; the delimiter start at the end of that
2324                      ;; whitespace.  Otherwise, it starts at the
2325                      ;; beginning of what was matched.
2326                      (skip-syntax-backward " " (match-beginning 0))
2327                      (skip-syntax-backward "^ " (match-beginning 0)))))
2328         (setq begpos (point))
2329         ;; Compute desired indent.
2330         (if (= (current-column)
2331                (setq indent (funcall comment-indent-function)))
2332             (goto-char begpos)
2333           ;; If that's different from current, change it.
2334           (skip-chars-backward " \t")
2335           (delete-region (point) begpos)
2336           (indent-to indent))
2337         ;; An existing comment?
2338         (if cpos
2339             (progn (goto-char cpos)
2340                    (set-marker cpos nil))
2341           ;; No, insert one.
2342           (insert starter)
2343           (save-excursion
2344             (insert ender)))))))
2345
2346 (defun set-comment-column (arg)
2347   "Set the comment column based on point.
2348 With no arg, set the comment column to the current column.
2349 With just minus as arg, kill any comment on this line.
2350 With any other arg, set comment column to indentation of the previous comment
2351  and then align or create a comment on this line at that column."
2352   (interactive "P")
2353   (if (eq arg '-)
2354       (kill-comment nil)
2355     (if arg
2356         (progn
2357           (save-excursion
2358             (beginning-of-line)
2359             (re-search-backward comment-start-skip)
2360             (beginning-of-line)
2361             (re-search-forward comment-start-skip)
2362             (goto-char (match-beginning 0))
2363             (setq comment-column (current-column))
2364             (lmessage 'command "Comment column set to %d" comment-column))
2365           (indent-for-comment))
2366       (setq comment-column (current-column))
2367       (lmessage 'command "Comment column set to %d" comment-column))))
2368
2369 (defun kill-comment (arg)
2370   "Kill the comment on this line, if any.
2371 With argument, kill comments on that many lines starting with this one."
2372   ;; this function loses in a lot of situations.  it incorrectly recognizes
2373   ;; comment delimiters sometimes (ergo, inside a string), doesn't work
2374   ;; with multi-line comments, can kill extra whitespace if comment wasn't
2375   ;; through end-of-line, et cetera.
2376   (interactive "*P")
2377   (or comment-start-skip (error "No comment syntax defined"))
2378   (let ((count (prefix-numeric-value arg)) endc)
2379     (while (> count 0)
2380       (save-excursion
2381         (end-of-line)
2382         (setq endc (point))
2383         (beginning-of-line)
2384         (and (string< "" comment-end)
2385              (setq endc
2386                    (progn
2387                      (re-search-forward (regexp-quote comment-end) endc 'move)
2388                      (skip-chars-forward " \t")
2389                      (point))))
2390         (beginning-of-line)
2391         (if (re-search-forward comment-start-skip endc t)
2392             (progn
2393               (goto-char (match-beginning 0))
2394               (skip-chars-backward " \t")
2395               (kill-region (point) endc)
2396               ;; to catch comments a line beginnings
2397               (indent-according-to-mode))))
2398       (if arg (forward-line 1))
2399       (setq count (1- count)))))
2400
2401 (defun comment-region (beg end &optional arg)
2402   "Comment or uncomment each line in the region.
2403 With just C-u prefix arg, uncomment each line in region.
2404 Numeric prefix arg ARG means use ARG comment characters.
2405 If ARG is negative, delete that many comment characters instead.
2406 Comments are terminated on each line, even for syntax in which newline does
2407 not end the comment.  Blank lines do not get comments."
2408   ;; if someone wants it to only put a comment-start at the beginning and
2409   ;; comment-end at the end then typing it, C-x C-x, closing it, C-x C-x
2410   ;; is easy enough.  No option is made here for other than commenting
2411   ;; every line.
2412   (interactive "r\nP")
2413   (or comment-start (error "No comment syntax is defined"))
2414   (if (> beg end) (let (mid) (setq mid beg beg end end mid)))
2415   (save-excursion
2416     (save-restriction
2417       (let ((cs comment-start) (ce comment-end)
2418             numarg)
2419         (if (consp arg) (setq numarg t)
2420           (setq numarg (prefix-numeric-value arg))
2421           ;; For positive arg > 1, replicate the comment delims now,
2422           ;; then insert the replicated strings just once.
2423           (while (> numarg 1)
2424             (setq cs (concat cs comment-start)
2425                   ce (concat ce comment-end))
2426             (setq numarg (1- numarg))))
2427         ;; Loop over all lines from BEG to END.
2428         (narrow-to-region beg end)
2429         (goto-char beg)
2430         (while (not (eobp))
2431           (if (or (eq numarg t) (< numarg 0))
2432               (progn
2433                 ;; Delete comment start from beginning of line.
2434                 (if (eq numarg t)
2435                     (while (looking-at (regexp-quote cs))
2436                       (delete-char (length cs)))
2437                   (let ((count numarg))
2438                     (while (and (> 1 (setq count (1+ count)))
2439                                 (looking-at (regexp-quote cs)))
2440                       (delete-char (length cs)))))
2441                 ;; Delete comment end from end of line.
2442                 (if (string= "" ce)
2443                     nil
2444                   (if (eq numarg t)
2445                       (progn
2446                         (end-of-line)
2447                         ;; This is questionable if comment-end ends in
2448                         ;; whitespace.  That is pretty brain-damaged,
2449                         ;; though.
2450                         (skip-chars-backward " \t")
2451                         (if (and (>= (- (point) (point-min)) (length ce))
2452                                  (save-excursion
2453                                    (backward-char (length ce))
2454                                    (looking-at (regexp-quote ce))))
2455                             (delete-char (- (length ce)))))
2456                     (let ((count numarg))
2457                       (while (> 1 (setq count (1+ count)))
2458                         (end-of-line)
2459                         ;; This is questionable if comment-end ends in
2460                         ;; whitespace.  That is pretty brain-damaged though
2461                         (skip-chars-backward " \t")
2462                         (save-excursion
2463                           (backward-char (length ce))
2464                           (if (looking-at (regexp-quote ce))
2465                               (delete-char (length ce))))))))
2466                 (forward-line 1))
2467             ;; Insert at beginning and at end.
2468             (if (looking-at "[ \t]*$") ()
2469               (insert cs)
2470               (if (string= "" ce) ()
2471                 (end-of-line)
2472                 (insert ce)))
2473             (search-forward "\n" nil 'move)))))))
2474
2475 ;; XEmacs
2476 (defun prefix-region (prefix)
2477   "Add a prefix string to each line between mark and point."
2478   (interactive "sPrefix string: ")
2479   (if prefix
2480       (let ((count (count-lines (mark) (point))))
2481         (goto-char (min (mark) (point)))
2482         (while (> count 0)
2483           (setq count (1- count))
2484           (beginning-of-line 1)
2485           (insert prefix)
2486           (end-of-line 1)
2487           (forward-char 1)))))
2488
2489 \f
2490 ;; XEmacs - extra parameter
2491 (defun backward-word (arg &optional buffer)
2492   "Move backward until encountering the end of a word.
2493 With argument, do this that many times.
2494 In programs, it is faster to call `forward-word' with negative arg."
2495   (interactive "_p") ; XEmacs
2496   (forward-word (- arg) buffer))
2497
2498 (defun mark-word (arg)
2499   "Set mark arg words away from point."
2500   (interactive "p")
2501   (mark-something 'mark-word 'forward-word arg))
2502
2503 ;; XEmacs modified
2504 (defun kill-word (arg)
2505   "Kill characters forward until encountering the end of a word.
2506 With argument, do this that many times."
2507   (interactive "*p")
2508   (kill-region (point) (save-excursion (forward-word arg) (point))))
2509
2510 (defun backward-kill-word (arg)
2511   "Kill characters backward until encountering the end of a word.
2512 With argument, do this that many times."
2513   (interactive "*p") ; XEmacs
2514   (kill-word (- arg)))
2515
2516 (defun current-word (&optional strict)
2517   "Return the word point is on (or a nearby word) as a string.
2518 If optional arg STRICT is non-nil, return nil unless point is within
2519 or adjacent to a word.
2520 If point is not between two word-constituent characters, but immediately
2521 follows one, move back first.
2522 Otherwise, if point precedes a word constituent, move forward first.
2523 Otherwise, move backwards until a word constituent is found and get that word;
2524 if you a newlines is reached first, move forward instead."
2525   (save-excursion
2526     (let ((oldpoint (point)) (start (point)) (end (point)))
2527       (skip-syntax-backward "w_") (setq start (point))
2528       (goto-char oldpoint)
2529       (skip-syntax-forward "w_") (setq end (point))
2530       (if (and (eq start oldpoint) (eq end oldpoint))
2531           ;; Point is neither within nor adjacent to a word.
2532           (and (not strict)
2533                (progn
2534                  ;; Look for preceding word in same line.
2535                  (skip-syntax-backward "^w_"
2536                                        (save-excursion
2537                                          (beginning-of-line) (point)))
2538                  (if (bolp)
2539                      ;; No preceding word in same line.
2540                      ;; Look for following word in same line.
2541                      (progn
2542                        (skip-syntax-forward "^w_"
2543                                             (save-excursion
2544                                               (end-of-line) (point)))
2545                        (setq start (point))
2546                        (skip-syntax-forward "w_")
2547                        (setq end (point)))
2548                      (setq end (point))
2549                      (skip-syntax-backward "w_")
2550                      (setq start (point)))
2551                  (buffer-substring start end)))
2552           (buffer-substring start end)))))
2553 \f
2554 (defcustom fill-prefix nil
2555   "*String for filling to insert at front of new line, or nil for none.
2556 Setting this variable automatically makes it local to the current buffer."
2557   :type '(choice (const :tag "None" nil)
2558                  string)
2559   :group 'fill)
2560 (make-variable-buffer-local 'fill-prefix)
2561
2562 (defcustom auto-fill-inhibit-regexp nil
2563   "*Regexp to match lines which should not be auto-filled."
2564   :type '(choice (const :tag "None" nil)
2565                  regexp)
2566   :group 'fill)
2567
2568 (defvar comment-line-break-function 'indent-new-comment-line
2569   "*Mode-specific function which line breaks and continues a comment.
2570
2571 This function is only called during auto-filling of a comment section.
2572 The function should take a single optional argument which is a flag
2573 indicating whether soft newlines should be inserted.")
2574
2575 ;; defined in mule-base/mule-category.el
2576 (defvar word-across-newline)
2577
2578 ;; This function is the auto-fill-function of a buffer
2579 ;; when Auto-Fill mode is enabled.
2580 ;; It returns t if it really did any work.
2581 ;; XEmacs:  This function is totally different.
2582 (defun do-auto-fill ()
2583   (let (give-up)
2584     (or (and auto-fill-inhibit-regexp
2585              (save-excursion (beginning-of-line)
2586                              (looking-at auto-fill-inhibit-regexp)))
2587         (while (and (not give-up) (> (current-column) fill-column))
2588           ;; Determine where to split the line.
2589           (let ((fill-prefix fill-prefix)
2590                 (fill-point
2591                  (let ((opoint (point))
2592                        bounce
2593                        ;; 97/3/14 jhod: Kinsoku
2594                        (re-break-point (if (featurep 'mule)
2595                                             (concat "[ \t\n]\\|" word-across-newline
2596                                                     ".\\|." word-across-newline)
2597                                         "[ \t\n]"))
2598                        ;; end patch
2599                        (first t))
2600                    (save-excursion
2601                      (move-to-column (1+ fill-column))
2602                      ;; Move back to a word boundary.
2603                      (while (or first
2604                                 ;; If this is after period and a single space,
2605                                 ;; move back once more--we don't want to break
2606                                 ;; the line there and make it look like a
2607                                 ;; sentence end.
2608                                 (and (not (bobp))
2609                                      (not bounce)
2610                                      sentence-end-double-space
2611                                      (save-excursion (forward-char -1)
2612                                                      (and (looking-at "\\. ")
2613                                                           (not (looking-at "\\.  "))))))
2614                        (setq first nil)
2615                        ;; 97/3/14 jhod: Kinsoku
2616                        ; (skip-chars-backward "^ \t\n"))
2617                        (fill-move-backward-to-break-point re-break-point)
2618                        ;; end patch
2619                        ;; If we find nowhere on the line to break it,
2620                        ;; break after one word.  Set bounce to t
2621                        ;; so we will not keep going in this while loop.
2622                        (if (bolp)
2623                            (progn
2624                              ;; 97/3/14 jhod: Kinsoku
2625                              ; (re-search-forward "[ \t]" opoint t)
2626                              (fill-move-forward-to-break-point re-break-point
2627                                                                opoint)
2628                              ;; end patch
2629                              (setq bounce t)))
2630                        (skip-chars-backward " \t"))
2631                      (if (and (featurep 'mule)
2632                               (or bounce (bolp))) (kinsoku-process)) ;; 97/3/14 jhod: Kinsoku
2633                      ;; Let fill-point be set to the place where we end up.
2634                      (point)))))
2635
2636             ;; I'm not sure why Stig made this change but it breaks
2637             ;; auto filling in at least C mode so I'm taking it back
2638             ;; out.  --cet
2639             ;; XEmacs - adaptive fill.
2640             ;;(maybe-adapt-fill-prefix
2641             ;; (or from (setq from (save-excursion (beginning-of-line)
2642             ;;                                   (point))))
2643             ;; (or to   (setq to (save-excursion (beginning-of-line 2)
2644             ;;                                 (point))))
2645             ;; t)
2646
2647             ;; If that place is not the beginning of the line,
2648             ;; break the line there.
2649             (if (save-excursion
2650                   (goto-char fill-point)
2651                   (not (or (bolp) (eolp)))) ; 97/3/14 jhod: during kinsoku processing it is possible to move beyond
2652                 (let ((prev-column (current-column)))
2653                   ;; If point is at the fill-point, do not `save-excursion'.
2654                   ;; Otherwise, if a comment prefix or fill-prefix is inserted,
2655                   ;; point will end up before it rather than after it.
2656                   (if (save-excursion
2657                         (skip-chars-backward " \t")
2658                         (= (point) fill-point))
2659                       ;; 1999-09-17 hniksic: turn off Kinsoku until
2660                       ;; it's debugged.
2661                       (indent-new-comment-line)
2662                       ;; 97/3/14 jhod: Kinsoku processing
2663 ;                     ;(indent-new-comment-line)
2664 ;                     (let ((spacep (memq (char-before (point)) '(?\  ?\t))))
2665 ;                       (funcall comment-line-break-function)
2666 ;                       ;; if user type space explicitly, leave SPC
2667 ;                       ;; even if there is no WAN.
2668 ;                       (if spacep
2669 ;                           (save-excursion
2670 ;                             (goto-char fill-point)
2671 ;                             ;; put SPC except that there is SPC
2672 ;                             ;; already or there is sentence end.
2673 ;                             (or (memq (char-after (point)) '(?\  ?\t))
2674 ;                                 (fill-end-of-sentence-p)
2675 ;                                 (insert ?\ )))))
2676                     (save-excursion
2677                       (goto-char fill-point)
2678                       (funcall comment-line-break-function)))
2679                   ;; If making the new line didn't reduce the hpos of
2680                   ;; the end of the line, then give up now;
2681                   ;; trying again will not help.
2682                   (if (>= (current-column) prev-column)
2683                       (setq give-up t)))
2684               ;; No place to break => stop trying.
2685               (setq give-up t)))))))
2686
2687 ;; Put FSF one in until I can one or the other working properly, then the
2688 ;; other one is history.
2689 ;(defun fsf:do-auto-fill ()
2690 ;  (let (fc justify
2691 ;          ;; bol
2692 ;          give-up
2693 ;          (fill-prefix fill-prefix))
2694 ;    (if (or (not (setq justify (current-justification)))
2695 ;           (null (setq fc (current-fill-column)))
2696 ;           (and (eq justify 'left)
2697 ;                (<= (current-column) fc))
2698 ;           (save-excursion (beginning-of-line)
2699 ;                           ;; (setq bol (point))
2700 ;                           (and auto-fill-inhibit-regexp
2701 ;                                (looking-at auto-fill-inhibit-regexp))))
2702 ;       nil ;; Auto-filling not required
2703 ;      (if (memq justify '(full center right))
2704 ;         (save-excursion (unjustify-current-line)))
2705
2706 ;      ;; Choose a fill-prefix automatically.
2707 ;      (if (and adaptive-fill-mode
2708 ;              (or (null fill-prefix) (string= fill-prefix "")))
2709 ;         (let ((prefix
2710 ;                (fill-context-prefix
2711 ;                 (save-excursion (backward-paragraph 1) (point))
2712 ;                 (save-excursion (forward-paragraph 1) (point))
2713 ;                 ;; Don't accept a non-whitespace fill prefix
2714 ;                 ;; from the first line of a paragraph.
2715 ;                 "^[ \t]*$")))
2716 ;           (and prefix (not (equal prefix ""))
2717 ;                (setq fill-prefix prefix))))
2718
2719 ;      (while (and (not give-up) (> (current-column) fc))
2720 ;       ;; Determine where to split the line.
2721 ;       (let ((fill-point
2722 ;              (let ((opoint (point))
2723 ;                    bounce
2724 ;                    (first t))
2725 ;                (save-excursion
2726 ;                  (move-to-column (1+ fc))
2727 ;                  ;; Move back to a word boundary.
2728 ;                  (while (or first
2729 ;                             ;; If this is after period and a single space,
2730 ;                             ;; move back once more--we don't want to break
2731 ;                             ;; the line there and make it look like a
2732 ;                             ;; sentence end.
2733 ;                             (and (not (bobp))
2734 ;                                  (not bounce)
2735 ;                                  sentence-end-double-space
2736 ;                                  (save-excursion (forward-char -1)
2737 ;                                                  (and (looking-at "\\. ")
2738 ;                                                       (not (looking-at "\\.  "))))))
2739 ;                    (setq first nil)
2740 ;                    (skip-chars-backward "^ \t\n")
2741 ;                    ;; If we find nowhere on the line to break it,
2742 ;                    ;; break after one word.  Set bounce to t
2743 ;                    ;; so we will not keep going in this while loop.
2744 ;                    (if (bolp)
2745 ;                        (progn
2746 ;                          (re-search-forward "[ \t]" opoint t)
2747 ;                          (setq bounce t)))
2748 ;                    (skip-chars-backward " \t"))
2749 ;                  ;; Let fill-point be set to the place where we end up.
2750 ;                  (point)))))
2751 ;         ;; If that place is not the beginning of the line,
2752 ;         ;; break the line there.
2753 ;         (if (save-excursion
2754 ;               (goto-char fill-point)
2755 ;               (not (bolp)))
2756 ;             (let ((prev-column (current-column)))
2757 ;               ;; If point is at the fill-point, do not `save-excursion'.
2758 ;               ;; Otherwise, if a comment prefix or fill-prefix is inserted,
2759 ;               ;; point will end up before it rather than after it.
2760 ;               (if (save-excursion
2761 ;                     (skip-chars-backward " \t")
2762 ;                     (= (point) fill-point))
2763 ;                   (funcall comment-line-break-function t)
2764 ;                 (save-excursion
2765 ;                   (goto-char fill-point)
2766 ;                   (funcall comment-line-break-function t)))
2767 ;               ;; Now do justification, if required
2768 ;               (if (not (eq justify 'left))
2769 ;                   (save-excursion
2770 ;                     (end-of-line 0)
2771 ;                     (justify-current-line justify nil t)))
2772 ;               ;; If making the new line didn't reduce the hpos of
2773 ;               ;; the end of the line, then give up now;
2774 ;               ;; trying again will not help.
2775 ;               (if (>= (current-column) prev-column)
2776 ;                   (setq give-up t)))
2777 ;           ;; No place to break => stop trying.
2778 ;           (setq give-up t))))
2779 ;      ;; Justify last line.
2780 ;      (justify-current-line justify t t)
2781 ;      t)))
2782
2783 (defvar normal-auto-fill-function 'do-auto-fill
2784   "The function to use for `auto-fill-function' if Auto Fill mode is turned on.
2785 Some major modes set this.")
2786
2787 (defun auto-fill-mode (&optional arg)
2788   "Toggle auto-fill mode.
2789 With arg, turn auto-fill mode on if and only if arg is positive.
2790 In Auto-Fill mode, inserting a space at a column beyond `current-fill-column'
2791 automatically breaks the line at a previous space.
2792
2793 The value of `normal-auto-fill-function' specifies the function to use
2794 for `auto-fill-function' when turning Auto Fill mode on."
2795   (interactive "P")
2796   (prog1 (setq auto-fill-function
2797                (if (if (null arg)
2798                        (not auto-fill-function)
2799                        (> (prefix-numeric-value arg) 0))
2800                    normal-auto-fill-function
2801                    nil))
2802     (redraw-modeline)))
2803
2804 ;; This holds a document string used to document auto-fill-mode.
2805 (defun auto-fill-function ()
2806   "Automatically break line at a previous space, in insertion of text."
2807   nil)
2808
2809 (defun turn-on-auto-fill ()
2810   "Unconditionally turn on Auto Fill mode."
2811   (auto-fill-mode 1))
2812
2813 (defun set-fill-column (arg)
2814   "Set `fill-column' to specified argument.
2815 Just \\[universal-argument] as argument means to use the current column
2816 The variable `fill-column' has a separate value for each buffer."
2817   (interactive "_P") ; XEmacs
2818   (cond ((integerp arg)
2819          (setq fill-column arg))
2820         ((consp arg)
2821          (setq fill-column (current-column)))
2822         ;; Disallow missing argument; it's probably a typo for C-x C-f.
2823         (t
2824          (error "set-fill-column requires an explicit argument")))
2825   (lmessage 'command "fill-column set to %d" fill-column))
2826 \f
2827 (defcustom comment-multi-line t ; XEmacs - this works well with adaptive fill
2828   "*Non-nil means \\[indent-new-comment-line] should continue same comment
2829 on new line, with no new terminator or starter.
2830 This is obsolete because you might as well use \\[newline-and-indent]."
2831   :type 'boolean
2832   :group 'fill-comments)
2833
2834 (defun indent-new-comment-line (&optional soft)
2835   "Break line at point and indent, continuing comment if within one.
2836 This indents the body of the continued comment
2837 under the previous comment line.
2838
2839 This command is intended for styles where you write a comment per line,
2840 starting a new comment (and terminating it if necessary) on each line.
2841 If you want to continue one comment across several lines, use \\[newline-and-indent].
2842
2843 If a fill column is specified, it overrides the use of the comment column
2844 or comment indentation.
2845
2846 The inserted newline is marked hard if `use-hard-newlines' is true,
2847 unless optional argument SOFT is non-nil."
2848   (interactive)
2849   (let (comcol comstart)
2850     (skip-chars-backward " \t")
2851     ;; 97/3/14 jhod: Kinsoku processing
2852     (if (featurep 'mule)
2853         (kinsoku-process))
2854     (delete-region (point)
2855                    (progn (skip-chars-forward " \t")
2856                           (point)))
2857     (if soft (insert ?\n) (newline 1))
2858     (if fill-prefix
2859         (progn
2860           (indent-to-left-margin)
2861           (insert fill-prefix))
2862     ;; #### - Eric Eide reverts to v18 semantics for this function in
2863     ;; fa-extras, which I'm not gonna do.  His changes are to (1) execute
2864     ;; the save-excursion below unconditionally, and (2) uncomment the check
2865     ;; for (not comment-multi-line) further below.  --Stig
2866       ;;#### jhod: probably need to fix this for kinsoku processing
2867       (if (not comment-multi-line)
2868           (save-excursion
2869             (if (and comment-start-skip
2870                      (let ((opoint (point)))
2871                        (forward-line -1)
2872                        (re-search-forward comment-start-skip opoint t)))
2873                 ;; The old line is a comment.
2874                 ;; Set WIN to the pos of the comment-start.
2875                 ;; But if the comment is empty, look at preceding lines
2876                 ;; to find one that has a nonempty comment.
2877
2878                 ;; If comment-start-skip contains a \(...\) pair,
2879                 ;; the real comment delimiter starts at the end of that pair.
2880                 (let ((win (or (match-end 1) (match-beginning 0))))
2881                   (while (and (eolp) (not (bobp))
2882                               (let (opoint)
2883                                 (beginning-of-line)
2884                                 (setq opoint (point))
2885                                 (forward-line -1)
2886                                 (re-search-forward comment-start-skip opoint t)))
2887                     (setq win (or (match-end 1) (match-beginning 0))))
2888                   ;; Indent this line like what we found.
2889                   (goto-char win)
2890                   (setq comcol (current-column))
2891                   (setq comstart
2892                         (buffer-substring (point) (match-end 0)))))))
2893       (if (and comcol (not fill-prefix))  ; XEmacs - (ENE) from fa-extras.
2894           (let ((comment-column comcol)
2895                 (comment-start comstart)
2896                 (block-comment-start comstart)
2897                 (comment-end comment-end))
2898             (and comment-end (not (equal comment-end ""))
2899   ;            (if (not comment-multi-line)
2900                      (progn
2901                        (forward-char -1)
2902                        (insert comment-end)
2903                        (forward-char 1))
2904   ;              (setq comment-column (+ comment-column (length comment-start))
2905   ;                    comment-start "")
2906   ;                )
2907                  )
2908             (if (not (eolp))
2909                 (setq comment-end ""))
2910             (insert ?\n)
2911             (forward-char -1)
2912             (indent-for-comment)
2913             (save-excursion
2914               ;; Make sure we delete the newline inserted above.
2915               (end-of-line)
2916               (delete-char 1)))
2917         (indent-according-to-mode)))))
2918
2919 \f
2920 (defun set-selective-display (arg)
2921   "Set `selective-display' to ARG; clear it if no arg.
2922 When the value of `selective-display' is a number > 0,
2923 lines whose indentation is >= that value are not displayed.
2924 The variable `selective-display' has a separate value for each buffer."
2925   (interactive "P")
2926   (if (eq selective-display t)
2927       (error "selective-display already in use for marked lines"))
2928   (let ((current-vpos
2929          (save-restriction
2930            (narrow-to-region (point-min) (point))
2931            (goto-char (window-start))
2932            (vertical-motion (window-height)))))
2933     (setq selective-display
2934           (and arg (prefix-numeric-value arg)))
2935     (recenter current-vpos))
2936   (set-window-start (selected-window) (window-start (selected-window)))
2937   ;; #### doesn't localize properly:
2938   (princ "selective-display set to " t)
2939   (prin1 selective-display t)
2940   (princ "." t))
2941
2942 ;; XEmacs
2943 (defun nuke-selective-display ()
2944   "Ensure that the buffer is not in selective-display mode.
2945 If `selective-display' is t, then restore the buffer text to its original
2946 state before disabling selective display."
2947   ;; by Stig@hackvan.com
2948   (interactive)
2949   (and (eq t selective-display)
2950        (save-excursion
2951          (save-restriction
2952            (widen)
2953            (goto-char (point-min))
2954            (let ((mod-p (buffer-modified-p))
2955                  (buffer-read-only nil))
2956              (while (search-forward "\r" nil t)
2957                (delete-char -1)
2958                (insert "\n"))
2959              (set-buffer-modified-p mod-p)
2960              ))))
2961   (setq selective-display nil))
2962
2963 (add-hook 'change-major-mode-hook 'nuke-selective-display)
2964
2965 (defconst overwrite-mode-textual (purecopy " Ovwrt")
2966   "The string displayed in the mode line when in overwrite mode.")
2967 (defconst overwrite-mode-binary (purecopy " Bin Ovwrt")
2968   "The string displayed in the mode line when in binary overwrite mode.")
2969
2970 (defun overwrite-mode (arg)
2971   "Toggle overwrite mode.
2972 With arg, turn overwrite mode on iff arg is positive.
2973 In overwrite mode, printing characters typed in replace existing text
2974 on a one-for-one basis, rather than pushing it to the right.  At the
2975 end of a line, such characters extend the line.  Before a tab,
2976 such characters insert until the tab is filled in.
2977 \\[quoted-insert] still inserts characters in overwrite mode; this
2978 is supposed to make it easier to insert characters when necessary."
2979   (interactive "P")
2980   (setq overwrite-mode
2981         (if (if (null arg) (not overwrite-mode)
2982               (> (prefix-numeric-value arg) 0))
2983             'overwrite-mode-textual))
2984   (redraw-modeline))
2985
2986 (defun binary-overwrite-mode (arg)
2987   "Toggle binary overwrite mode.
2988 With arg, turn binary overwrite mode on iff arg is positive.
2989 In binary overwrite mode, printing characters typed in replace
2990 existing text.  Newlines are not treated specially, so typing at the
2991 end of a line joins the line to the next, with the typed character
2992 between them.  Typing before a tab character simply replaces the tab
2993 with the character typed.
2994 \\[quoted-insert] replaces the text at the cursor, just as ordinary
2995 typing characters do.
2996
2997 Note that binary overwrite mode is not its own minor mode; it is a
2998 specialization of overwrite-mode, entered by setting the
2999 `overwrite-mode' variable to `overwrite-mode-binary'."
3000   (interactive "P")
3001   (setq overwrite-mode
3002         (if (if (null arg)
3003                 (not (eq overwrite-mode 'overwrite-mode-binary))
3004               (> (prefix-numeric-value arg) 0))
3005             'overwrite-mode-binary))
3006   (redraw-modeline))
3007 \f
3008 (defcustom line-number-mode nil
3009   "*Non-nil means display line number in modeline."
3010   :type 'boolean
3011   :group 'editing-basics)
3012
3013 (defun line-number-mode (arg)
3014   "Toggle Line Number mode.
3015 With arg, turn Line Number mode on iff arg is positive.
3016 When Line Number mode is enabled, the line number appears
3017 in the mode line."
3018   (interactive "P")
3019   (setq line-number-mode
3020         (if (null arg) (not line-number-mode)
3021           (> (prefix-numeric-value arg) 0)))
3022   (redraw-modeline))
3023
3024 (defcustom column-number-mode nil
3025   "*Non-nil means display column number in mode line."
3026   :type 'boolean
3027   :group 'editing-basics)
3028
3029 (defun column-number-mode (arg)
3030   "Toggle Column Number mode.
3031 With arg, turn Column Number mode on iff arg is positive.
3032 When Column Number mode is enabled, the column number appears
3033 in the mode line."
3034   (interactive "P")
3035   (setq column-number-mode
3036         (if (null arg) (not column-number-mode)
3037           (> (prefix-numeric-value arg) 0)))
3038   (redraw-modeline))
3039
3040 \f
3041 (defcustom blink-matching-paren t
3042   "*Non-nil means show matching open-paren when close-paren is inserted."
3043   :type 'boolean
3044   :group 'paren-blinking)
3045
3046 (defcustom blink-matching-paren-on-screen t
3047   "*Non-nil means show matching open-paren when it is on screen.
3048 nil means don't show it (but the open-paren can still be shown
3049 when it is off screen."
3050   :type 'boolean
3051   :group 'paren-blinking)
3052
3053 (defcustom blink-matching-paren-distance 12000
3054   "*If non-nil, is maximum distance to search for matching open-paren."
3055   :type '(choice integer (const nil))
3056   :group 'paren-blinking)
3057
3058 (defcustom blink-matching-delay 1
3059   "*The number of seconds that `blink-matching-open' will delay at a match."
3060   :type 'number
3061   :group 'paren-blinking)
3062
3063 (defcustom blink-matching-paren-dont-ignore-comments nil
3064   "*Non-nil means `blink-matching-paren' should not ignore comments."
3065   :type 'boolean
3066   :group 'paren-blinking)
3067
3068 (defun blink-matching-open ()
3069   "Move cursor momentarily to the beginning of the sexp before point."
3070   (interactive "_") ; XEmacs
3071   (and (> (point) (1+ (point-min)))
3072        blink-matching-paren
3073        ;; Verify an even number of quoting characters precede the close.
3074        (= 1 (logand 1 (- (point)
3075                          (save-excursion
3076                            (forward-char -1)
3077                            (skip-syntax-backward "/\\")
3078                            (point)))))
3079        (let* ((oldpos (point))
3080               (blinkpos)
3081               (mismatch))
3082          (save-excursion
3083            (save-restriction
3084              (if blink-matching-paren-distance
3085                  (narrow-to-region (max (point-min)
3086                                         (- (point) blink-matching-paren-distance))
3087                                    oldpos))
3088              (condition-case ()
3089                  (let ((parse-sexp-ignore-comments
3090                         (and parse-sexp-ignore-comments
3091                              (not blink-matching-paren-dont-ignore-comments))))
3092                    (setq blinkpos (scan-sexps oldpos -1)))
3093                (error nil)))
3094            (and blinkpos
3095                 (/= (char-syntax (char-after blinkpos))
3096                     ?\$)
3097                 (setq mismatch
3098                       (or (null (matching-paren (char-after blinkpos)))
3099                           (/= (char-after (1- oldpos))
3100                               (matching-paren (char-after blinkpos))))))
3101            (if mismatch (setq blinkpos nil))
3102            (if blinkpos
3103                (progn
3104                 (goto-char blinkpos)
3105                 (if (pos-visible-in-window-p)
3106                     (and blink-matching-paren-on-screen
3107                          (progn
3108                            (auto-show-make-point-visible)
3109                            (sit-for blink-matching-delay)))
3110                   (goto-char blinkpos)
3111                   (lmessage 'command "Matches %s"
3112                     ;; Show what precedes the open in its line, if anything.
3113                     (if (save-excursion
3114                           (skip-chars-backward " \t")
3115                           (not (bolp)))
3116                         (buffer-substring (progn (beginning-of-line) (point))
3117                                           (1+ blinkpos))
3118                       ;; Show what follows the open in its line, if anything.
3119                       (if (save-excursion
3120                             (forward-char 1)
3121                             (skip-chars-forward " \t")
3122                             (not (eolp)))
3123                           (buffer-substring blinkpos
3124                                             (progn (end-of-line) (point)))
3125                         ;; Otherwise show the previous nonblank line,
3126                         ;; if there is one.
3127                         (if (save-excursion
3128                               (skip-chars-backward "\n \t")
3129                               (not (bobp)))
3130                             (concat
3131                              (buffer-substring (progn
3132                                                  (skip-chars-backward "\n \t")
3133                                                  (beginning-of-line)
3134                                                  (point))
3135                                                (progn (end-of-line)
3136                                                       (skip-chars-backward " \t")
3137                                                       (point)))
3138                              ;; Replace the newline and other whitespace with `...'.
3139                              "..."
3140                              (buffer-substring blinkpos (1+ blinkpos)))
3141                           ;; There is nothing to show except the char itself.
3142                           (buffer-substring blinkpos (1+ blinkpos))))))))
3143              (cond (mismatch
3144                     (display-message 'no-log "Mismatched parentheses"))
3145                    ((not blink-matching-paren-distance)
3146                     (display-message 'no-log "Unmatched parenthesis"))))))))
3147
3148 ;Turned off because it makes dbx bomb out.
3149 (setq blink-paren-function 'blink-matching-open)
3150 \f
3151 (eval-when-compile (defvar myhelp))     ; suppress compiler warning
3152
3153 ;; XEmacs: Some functions moved to cmdloop.el:
3154 ;; keyboard-quit
3155 ;; buffer-quit-function
3156 ;; keyboard-escape-quit
3157
3158 (defun assoc-ignore-case (key alist)
3159   "Like `assoc', but assumes KEY is a string and ignores case when comparing."
3160   (setq key (downcase key))
3161   (let (element)
3162     (while (and alist (not element))
3163       (if (equal key (downcase (car (car alist))))
3164           (setq element (car alist)))
3165       (setq alist (cdr alist)))
3166     element))
3167
3168 \f
3169 (defcustom mail-user-agent 'sendmail-user-agent
3170   "*Your preference for a mail composition package.
3171 Various Emacs Lisp packages (e.g. reporter) require you to compose an
3172 outgoing email message.  This variable lets you specify which
3173 mail-sending package you prefer.
3174
3175 Valid values include:
3176
3177     sendmail-user-agent -- use the default Emacs Mail package
3178     mh-e-user-agent     -- use the Emacs interface to the MH mail system
3179     message-user-agent  -- use the GNUS mail sending package
3180
3181 Additional valid symbols may be available; check with the author of
3182 your package for details."
3183   :type '(radio (function-item :tag "Default Emacs mail"
3184                                :format "%t\n"
3185                                sendmail-user-agent)
3186                 (function-item :tag "Gnus mail sending package"
3187                                :format "%t\n"
3188                                message-user-agent)
3189                 (function :tag "Other"))
3190   :group 'mail)
3191
3192 (defun define-mail-user-agent (symbol composefunc sendfunc
3193                                       &optional abortfunc hookvar)
3194   "Define a symbol to identify a mail-sending package for `mail-user-agent'.
3195
3196 SYMBOL can be any Lisp symbol.  Its function definition and/or
3197 value as a variable do not matter for this usage; we use only certain
3198 properties on its property list, to encode the rest of the arguments.
3199
3200 COMPOSEFUNC is program callable function that composes an outgoing
3201 mail message buffer.  This function should set up the basics of the
3202 buffer without requiring user interaction.  It should populate the
3203 standard mail headers, leaving the `to:' and `subject:' headers blank
3204 by default.
3205
3206 COMPOSEFUNC should accept several optional arguments--the same
3207 arguments that `compose-mail' takes.  See that function's documentation.
3208
3209 SENDFUNC is the command a user would run to send the message.
3210
3211 Optional ABORTFUNC is the command a user would run to abort the
3212 message.  For mail packages that don't have a separate abort function,
3213 this can be `kill-buffer' (the equivalent of omitting this argument).
3214
3215 Optional HOOKVAR is a hook variable that gets run before the message
3216 is actually sent.  Callers that use the `mail-user-agent' may
3217 install a hook function temporarily on this hook variable.
3218 If HOOKVAR is nil, `mail-send-hook' is used.
3219
3220 The properties used on SYMBOL are `composefunc', `sendfunc',
3221 `abortfunc', and `hookvar'."
3222   (put symbol 'composefunc composefunc)
3223   (put symbol 'sendfunc sendfunc)
3224   (put symbol 'abortfunc (or abortfunc 'kill-buffer))
3225   (put symbol 'hookvar (or hookvar 'mail-send-hook)))
3226
3227 (define-mail-user-agent 'sendmail-user-agent
3228   'sendmail-user-agent-compose 'mail-send-and-exit)
3229
3230 (define-mail-user-agent 'message-user-agent
3231   'message-mail 'message-send-and-exit
3232   'message-kill-buffer 'message-send-hook)
3233
3234 (defun sendmail-user-agent-compose (&optional to subject other-headers continue
3235                                               switch-function yank-action
3236                                               send-actions)
3237   (if switch-function
3238       (let ((special-display-buffer-names nil)
3239             (special-display-regexps nil)
3240             (same-window-buffer-names nil)
3241             (same-window-regexps nil))
3242         (funcall switch-function "*mail*")))
3243   (let ((cc (cdr (assoc-ignore-case "cc" other-headers)))
3244         (in-reply-to (cdr (assoc-ignore-case "in-reply-to" other-headers))))
3245     (or (mail continue to subject in-reply-to cc yank-action send-actions)
3246         continue
3247         (error "Message aborted"))
3248     (save-excursion
3249       (goto-char (point-min))
3250       (search-forward mail-header-separator)
3251       (beginning-of-line)
3252       (while other-headers
3253         (if (not (member (car (car other-headers)) '("in-reply-to" "cc")))
3254             (insert (car (car other-headers)) ": "
3255                     (cdr (car other-headers)) "\n"))
3256         (setq other-headers (cdr other-headers)))
3257       t)))
3258
3259 (define-mail-user-agent 'mh-e-user-agent
3260   'mh-user-agent-compose 'mh-send-letter 'mh-fully-kill-draft
3261   'mh-before-send-letter-hook)
3262
3263 (defun compose-mail (&optional to subject other-headers continue
3264                                switch-function yank-action send-actions)
3265   "Start composing a mail message to send.
3266 This uses the user's chosen mail composition package
3267 as selected with the variable `mail-user-agent'.
3268 The optional arguments TO and SUBJECT specify recipients
3269 and the initial Subject field, respectively.
3270
3271 OTHER-HEADERS is an alist specifying additional
3272 header fields.  Elements look like (HEADER . VALUE) where both
3273 HEADER and VALUE are strings.
3274
3275 CONTINUE, if non-nil, says to continue editing a message already
3276 being composed.
3277
3278 SWITCH-FUNCTION, if non-nil, is a function to use to
3279 switch to and display the buffer used for mail composition.
3280
3281 YANK-ACTION, if non-nil, is an action to perform, if and when necessary,
3282 to insert the raw text of the message being replied to.
3283 It has the form (FUNCTION . ARGS).  The user agent will apply
3284 FUNCTION to ARGS, to insert the raw text of the original message.
3285 \(The user agent will also run `mail-citation-hook', *after* the
3286 original text has been inserted in this way.)
3287
3288 SEND-ACTIONS is a list of actions to call when the message is sent.
3289 Each action has the form (FUNCTION . ARGS)."
3290   (interactive
3291    (list nil nil nil current-prefix-arg))
3292   (let ((function (get mail-user-agent 'composefunc)))
3293     (funcall function to subject other-headers continue
3294              switch-function yank-action send-actions)))
3295
3296 (defun compose-mail-other-window (&optional to subject other-headers continue
3297                                             yank-action send-actions)
3298   "Like \\[compose-mail], but edit the outgoing message in another window."
3299   (interactive
3300    (list nil nil nil current-prefix-arg))
3301   (compose-mail to subject other-headers continue
3302                 'switch-to-buffer-other-window yank-action send-actions))
3303
3304
3305 (defun compose-mail-other-frame (&optional to subject other-headers continue
3306                                             yank-action send-actions)
3307   "Like \\[compose-mail], but edit the outgoing message in another frame."
3308   (interactive
3309    (list nil nil nil current-prefix-arg))
3310   (compose-mail to subject other-headers continue
3311                 'switch-to-buffer-other-frame yank-action send-actions))
3312
3313 \f
3314 (defun set-variable (var val)
3315   "Set VARIABLE to VALUE.  VALUE is a Lisp object.
3316 When using this interactively, supply a Lisp expression for VALUE.
3317 If you want VALUE to be a string, you must surround it with doublequotes.
3318 If VARIABLE is a specifier, VALUE is added to it as an instantiator in
3319 the 'global locale with nil tag set (see `set-specifier').
3320
3321 If VARIABLE has a `variable-interactive' property, that is used as if
3322 it were the arg to `interactive' (which see) to interactively read the value."
3323   (interactive
3324    (let* ((var (read-variable "Set variable: "))
3325           ;; #### - yucky code replication here.  This should use something
3326           ;; from help.el or hyper-apropos.el
3327           (minibuffer-help-form
3328            '(funcall myhelp))
3329           (myhelp
3330            #'(lambda ()
3331               (with-output-to-temp-buffer "*Help*"
3332                 (prin1 var)
3333                 (princ "\nDocumentation:\n")
3334                 (princ (substring (documentation-property var 'variable-documentation)
3335                                   1))
3336                 (if (boundp var)
3337                     (let ((print-length 20))
3338                       (princ "\n\nCurrent value: ")
3339                       (prin1 (symbol-value var))))
3340                 (save-excursion
3341                   (set-buffer standard-output)
3342                   (help-mode))
3343                 nil))))
3344      (list var
3345            (let ((prop (get var 'variable-interactive)))
3346              (if prop
3347                  ;; Use VAR's `variable-interactive' property
3348                  ;; as an interactive spec for prompting.
3349                  (call-interactively (list 'lambda '(arg)
3350                                            (list 'interactive prop)
3351                                            'arg))
3352                (eval-minibuffer (format "Set %s to value: " var)))))))
3353   (if (and (boundp var) (specifierp (symbol-value var)))
3354       (set-specifier (symbol-value var) val)
3355     (set var val)))
3356 \f
3357 ;; XEmacs
3358 (defun activate-region ()
3359   "Activate the region, if `zmacs-regions' is true.
3360 Setting `zmacs-regions' to true causes LISPM-style active regions to be used.
3361 This function has no effect if `zmacs-regions' is false."
3362   (interactive)
3363   (and zmacs-regions (zmacs-activate-region)))
3364
3365 ;; XEmacs
3366 (defsubst region-exists-p ()
3367   "Return t if the region exists.
3368 If active regions are in use (i.e. `zmacs-regions' is true), this means that
3369  the region is active.  Otherwise, this means that the user has pushed
3370  a mark in this buffer at some point in the past.
3371 The functions `region-beginning' and `region-end' can be used to find the
3372  limits of the region."
3373   (not (null (mark))))
3374
3375 ;; XEmacs
3376 (defun region-active-p ()
3377   "Return non-nil if the region is active.
3378 If `zmacs-regions' is true, this is equivalent to `region-exists-p'.
3379 Otherwise, this function always returns false."
3380   (and zmacs-regions zmacs-region-extent))
3381
3382 ;; A bunch of stuff was moved elsewhere:
3383 ;; completion-list-mode-map
3384 ;; completion-reference-buffer
3385 ;; completion-base-size
3386 ;; delete-completion-window
3387 ;; previous-completion
3388 ;; next-completion
3389 ;; choose-completion
3390 ;; choose-completion-delete-max-match
3391 ;; choose-completion-string
3392 ;; completion-list-mode
3393 ;; completion-fixup-function
3394 ;; completion-setup-function
3395 ;; switch-to-completions
3396 ;; event stuffs
3397 ;; keypad stuffs
3398
3399 ;; The rest of this file is not in Lisp in FSF
3400 (defun capitalize-region-or-word (arg)
3401   "Capitalize the selected region or the following word (or ARG words)."
3402   (interactive "p")
3403   (if (region-active-p)
3404       (capitalize-region (region-beginning) (region-end))
3405     (capitalize-word arg)))
3406
3407 (defun upcase-region-or-word (arg)
3408   "Upcase the selected region or the following word (or ARG words)."
3409   (interactive "p")
3410   (if (region-active-p)
3411       (upcase-region (region-beginning) (region-end))
3412     (upcase-word arg)))
3413
3414 (defun downcase-region-or-word (arg)
3415   "Downcase the selected region or the following word (or ARG words)."
3416   (interactive "p")
3417   (if (region-active-p)
3418       (downcase-region (region-beginning) (region-end))
3419     (downcase-word arg)))
3420
3421 ;; Most of the zmacs code is now in elisp.  The only thing left in C
3422 ;; are the variables zmacs-regions, zmacs-region-active-p and
3423 ;; zmacs-region-stays plus the function zmacs_update_region which
3424 ;; simply calls the lisp level zmacs-update-region.  It must remain
3425 ;; for convenience, since it is called by core C code.
3426
3427 (defvar zmacs-activate-region-hook nil
3428   "Function or functions called when the region becomes active;
3429 see the variable `zmacs-regions'.")
3430
3431 (defvar zmacs-deactivate-region-hook nil
3432   "Function or functions called when the region becomes inactive;
3433 see the variable `zmacs-regions'.")
3434
3435 (defvar zmacs-update-region-hook nil
3436   "Function or functions called when the active region changes.
3437 This is called after each command that sets `zmacs-region-stays' to t.
3438 See the variable `zmacs-regions'.")
3439
3440 (defvar zmacs-region-extent nil
3441   "The extent of the zmacs region; don't use this.")
3442
3443 (defvar zmacs-region-rectangular-p nil
3444   "Whether the zmacs region is a rectangle; don't use this.")
3445
3446 (defun zmacs-make-extent-for-region (region)
3447   ;; Given a region, this makes an extent in the buffer which holds that
3448   ;; region, for highlighting purposes.  If the region isn't associated
3449   ;; with a buffer, this does nothing.
3450   (let ((buffer nil)
3451         (valid (and (extentp zmacs-region-extent)
3452                     (extent-object zmacs-region-extent)
3453                     (buffer-live-p (extent-object zmacs-region-extent))))
3454         start end)
3455     (cond ((consp region)
3456            (setq start (min (car region) (cdr region))
3457                  end (max (car region) (cdr region))
3458                  valid (and valid
3459                             (eq (marker-buffer (car region))
3460                                 (extent-object zmacs-region-extent)))
3461                  buffer (marker-buffer (car region))))
3462           (t
3463            (signal 'error (list "Invalid region" region))))
3464
3465     (if valid
3466         nil
3467       ;; The condition case is in case any of the extents are dead or
3468       ;; otherwise incapacitated.
3469       (condition-case ()
3470           (if (listp zmacs-region-extent)
3471               (mapc 'delete-extent zmacs-region-extent)
3472             (delete-extent zmacs-region-extent))
3473         (error nil)))
3474
3475     (if valid
3476         (set-extent-endpoints zmacs-region-extent start end)
3477       (setq zmacs-region-extent (make-extent start end buffer))
3478
3479       ;; Make the extent be closed on the right, which means that if
3480       ;; characters are inserted exactly at the end of the extent, the
3481       ;; extent will grow to cover them.  This is important for shell
3482       ;; buffers - suppose one makes a region, and one end is at point-max.
3483       ;; If the shell produces output, that marker will remain at point-max
3484       ;; (its position will increase).  So it's important that the extent
3485       ;; exhibit the same behavior, lest the region covered by the extent
3486       ;; (the visual indication), and the region between point and mark
3487       ;; (the actual region value) become different!
3488       (set-extent-property zmacs-region-extent 'end-open nil)
3489
3490       ;; use same priority as mouse-highlighting so that conflicts between
3491       ;; the region extent and a mouse-highlighted extent are resolved by
3492       ;; the usual size-and-endpoint-comparison method.
3493       (set-extent-priority zmacs-region-extent mouse-highlight-priority)
3494       (set-extent-face zmacs-region-extent 'zmacs-region)
3495
3496       ;; #### It might be better to actually break
3497       ;; default-mouse-track-next-move-rect out of mouse.el so that we
3498       ;; can use its logic here.
3499       (cond
3500        (zmacs-region-rectangular-p
3501         (setq zmacs-region-extent (list zmacs-region-extent))
3502         (default-mouse-track-next-move-rect start end zmacs-region-extent)
3503         ))
3504
3505       zmacs-region-extent)))
3506
3507 (defun zmacs-region-buffer ()
3508   "Return the buffer containing the zmacs region, or nil."
3509   ;; #### this is horrible and kludgy!  This stuff needs to be rethought.
3510   (and zmacs-regions zmacs-region-active-p
3511        (or (marker-buffer (mark-marker t))
3512            (and (extent-live-p zmacs-region-extent)
3513                 (buffer-live-p (extent-object zmacs-region-extent))
3514                 (extent-object zmacs-region-extent)))))
3515
3516 (defun zmacs-activate-region ()
3517   "Make the region between `point' and `mark' be active (highlighted),
3518 if `zmacs-regions' is true.  Only a very small number of commands
3519 should ever do this.  Calling this function will call the hook
3520 `zmacs-activate-region-hook', if the region was previously inactive.
3521 Calling this function ensures that the region stays active after the
3522 current command terminates, even if `zmacs-region-stays' is not set.
3523 Returns t if the region was activated (i.e. if `zmacs-regions' if t)."
3524   (if (not zmacs-regions)
3525       nil
3526     (setq zmacs-region-active-p t
3527           zmacs-region-stays t
3528           zmacs-region-rectangular-p (and (boundp 'mouse-track-rectangle-p)
3529                                           mouse-track-rectangle-p))
3530     (if (marker-buffer (mark-marker t))
3531         (zmacs-make-extent-for-region (cons (point-marker t) (mark-marker t))))
3532     (run-hooks 'zmacs-activate-region-hook)
3533     t))
3534
3535 (defun zmacs-deactivate-region ()
3536   "Make the region between `point' and `mark' no longer be active,
3537 if `zmacs-regions' is true.  You shouldn't need to call this; the
3538 command loop calls it when appropriate.  Calling this function will
3539 call the hook `zmacs-deactivate-region-hook', if the region was
3540 previously active.  Returns t if the region had been active, nil
3541 otherwise."
3542   (if (not zmacs-region-active-p)
3543       nil
3544     (setq zmacs-region-active-p nil
3545           zmacs-region-stays nil
3546           zmacs-region-rectangular-p nil)
3547     (if zmacs-region-extent
3548         (let ((inhibit-quit t))
3549           (if (listp zmacs-region-extent)
3550               (mapc 'delete-extent zmacs-region-extent)
3551             (delete-extent zmacs-region-extent))
3552           (setq zmacs-region-extent nil)))
3553     (run-hooks 'zmacs-deactivate-region-hook)
3554     t))
3555
3556 (defun zmacs-update-region ()
3557   "Update the highlighted region between `point' and `mark'.
3558 You shouldn't need to call this; the command loop calls it
3559 when appropriate.  Calling this function will call the hook
3560 `zmacs-update-region-hook', if the region is active."
3561   (when zmacs-region-active-p
3562     (when (marker-buffer (mark-marker t))
3563       (zmacs-make-extent-for-region (cons (point-marker t)
3564                                           (mark-marker t))))
3565     (run-hooks 'zmacs-update-region-hook)))
3566
3567 ;;;;;;
3568 ;;;;;; echo area stuff
3569 ;;;;;;
3570
3571 ;;; #### Should this be moved to a separate file, for clarity?
3572 ;;; -hniksic
3573
3574 ;;; The `message-stack' is an alist of labels with messages; the first
3575 ;;; message in this list is always in the echo area.  A call to
3576 ;;; `display-message' inserts a label/message pair at the head of the
3577 ;;; list, and removes any other pairs with that label.  Calling
3578 ;;; `clear-message' causes any pair with matching label to be removed,
3579 ;;; and this may cause the displayed message to change or vanish.  If
3580 ;;; the label arg is nil, the entire message stack is cleared.
3581 ;;;
3582 ;;; Message/error filtering will be a little tricker to implement than
3583 ;;; logging, since messages can be built up incrementally
3584 ;;; using clear-message followed by repeated calls to append-message
3585 ;;; (this happens with error messages).  For messages which aren't
3586 ;;; created this way, filtering could be implemented at display-message
3587 ;;; very easily.
3588 ;;;
3589 ;;; Bits of the logging code are borrowed from log-messages.el by
3590 ;;; Robert Potter (rpotter@grip.cis.upenn.edu).
3591
3592 ;; need this to terminate the currently-displayed message
3593 ;; ("Loading simple ...")
3594 (when (and
3595        (not (fboundp 'display-message))
3596        (not (featurep 'debug)))
3597   (send-string-to-terminal "\n"))
3598
3599 (defvar message-stack nil
3600   "An alist of label/string pairs representing active echo-area messages.
3601 The first element in the list is currently displayed in the echo area.
3602 Do not modify this directly--use the `message' or
3603 `display-message'/`clear-message' functions.")
3604
3605 (defvar remove-message-hook 'log-message
3606   "A function or list of functions to be called when a message is removed
3607 from the echo area at the bottom of the frame.  The label of the removed
3608 message is passed as the first argument, and the text of the message
3609 as the second argument.")
3610
3611 (defcustom log-message-max-size 50000
3612   "Maximum size of the \" *Message-Log*\" buffer.  See `log-message'."
3613   :type 'integer
3614   :group 'log-message)
3615 (make-compatible-variable 'message-log-max 'log-message-max-size)
3616
3617 ;; We used to reject quite a lot of stuff here, but it was a bad idea,
3618 ;; for two reasons:
3619 ;;
3620 ;; a) In most circumstances, you *want* to see the message in the log.
3621 ;;    The explicitly non-loggable messages should be marked as such by
3622 ;;    the issuer.  Gratuitous non-displaying of random regexps made
3623 ;;    debugging harder, too (because various reasonable debugging
3624 ;;    messages would get eaten).
3625 ;;
3626 ;; b) It slowed things down.  Yes, visibly.
3627 ;;
3628 ;; So, I left only a few of the really useless ones on this kill-list.
3629 ;;
3630 ;;                                            --hniksic
3631 (defcustom log-message-ignore-regexps
3632   '(;; Note: adding entries to this list slows down messaging
3633     ;; significantly.  Wherever possible, use message lables.
3634
3635     ;; Often-seen messages
3636     "\\`\\'"                            ; empty message
3637     "\\`\\(Beginning\\|End\\) of buffer\\'"
3638     ;;"^Quit$"
3639     ;; completions
3640     ;; Many packages print this -- impossible to categorize
3641     ;;"^Making completion list"
3642     ;; Gnus
3643     ;; "^No news is no news$"
3644     ;; "^No more\\( unread\\)? newsgroups$"
3645     ;; "^Opening [^ ]+ server\\.\\.\\."
3646     ;; "^[^:]+: Reading incoming mail"
3647     ;; "^Getting mail from "
3648     ;; "^\\(Generating Summary\\|Sorting threads\\|Making sparse threads\\|Scoring\\|Checking new news\\|Expiring articles\\|Sending\\)\\.\\.\\."
3649     ;; "^\\(Fetching headers for\\|Retrieving newsgroup\\|Reading active file\\)"
3650     ;; "^No more\\( unread\\)? articles"
3651     ;; "^Deleting article "
3652     ;; W3
3653     ;; "^Parsed [0-9]+ of [0-9]+ ([0-9]+%)"
3654     )
3655   "List of regular expressions matching messages which shouldn't be logged.
3656 See `log-message'.
3657
3658 Ideally, packages which generate messages which might need to be ignored
3659 should label them with 'progress, 'prompt, or 'no-log, so they can be
3660 filtered by the log-message-ignore-labels."
3661   :type '(repeat regexp)
3662   :group 'log-message)
3663
3664 (defcustom log-message-ignore-labels
3665   '(help-echo command progress prompt no-log garbage-collecting auto-saving)
3666   "List of symbols indicating labels of messages which shouldn't be logged.
3667 See `display-message' for some common labels.  See also `log-message'."
3668   :type '(repeat (symbol :tag "Label"))
3669   :group 'log-message)
3670
3671 ;;Subsumed by view-lossage
3672 ;; Not really, I'm adding it back by popular demand. -slb
3673 (defun show-message-log ()
3674   "Show the \" *Message-Log*\" buffer, which contains old messages and errors."
3675   (interactive)
3676   (pop-to-buffer (get-buffer-create " *Message-Log*")))
3677
3678 (defvar log-message-filter-function 'log-message-filter
3679   "Value must be a function of two arguments: a symbol (label) and
3680 a string (message).  It should return non-nil to indicate a message
3681 should be logged.  Possible values include 'log-message-filter and
3682 'log-message-filter-errors-only.")
3683
3684 (defun log-message-filter (label message)
3685   "Default value of `log-message-filter-function'.
3686 Messages whose text matches one of the `log-message-ignore-regexps'
3687 or whose label appears in `log-message-ignore-labels' are not saved."
3688   (let ((r  log-message-ignore-regexps)
3689         (ok (not (memq label log-message-ignore-labels))))
3690     (save-match-data
3691       (while (and r ok)
3692         (when (string-match (car r) message)
3693           (setq ok nil))
3694         (setq r (cdr r))))
3695     ok))
3696
3697 (defun log-message-filter-errors-only (label message)
3698   "For use as the `log-message-filter-function'.  Only logs error messages."
3699   (eq label 'error))
3700
3701 (defun log-message (label message)
3702   "Stuff a copy of the message into the \" *Message-Log*\" buffer,
3703 if it satisfies the `log-message-filter-function'.
3704
3705 For use on `remove-message-hook'."
3706   (when (and (not noninteractive)
3707              (funcall log-message-filter-function label message))
3708     ;; Use save-excursion rather than save-current-buffer because we
3709     ;; change the value of point.
3710     (save-excursion
3711       (set-buffer (get-buffer-create " *Message-Log*"))
3712       (goto-char (point-max))
3713       ;(insert (concat (upcase (symbol-name label)) ": "  message "\n"))
3714       (let (extent)
3715         ;; Mark multiline message with an extent, which `view-lossage'
3716         ;; will recognize.
3717         (when (string-match "\n" message)
3718           (setq extent (make-extent (point) (point)))
3719           (set-extent-properties extent '(end-open nil message-multiline t)))
3720         (insert message "\n")
3721         (when extent
3722           (set-extent-property extent 'end-open t)))
3723       (when (> (point-max) (max log-message-max-size (point-min)))
3724         ;; Trim log to ~90% of max size.
3725         (goto-char (max (- (point-max)
3726                            (truncate (* 0.9 log-message-max-size)))
3727                         (point-min)))
3728         (forward-line 1)
3729         (delete-region (point-min) (point))))))
3730
3731 (defun message-displayed-p (&optional return-string frame)
3732   "Return a non-nil value if a message is presently displayed in the\n\
3733 minibuffer's echo area.  If optional argument RETURN-STRING is non-nil,\n\
3734 return a string containing the message, otherwise just return t."
3735   ;; by definition, a message is displayed if the echo area buffer is
3736   ;; non-empty (see also echo_area_active()).  It had better also
3737   ;; be the case that message-stack is nil exactly when the echo area
3738   ;; is non-empty.
3739   (let ((buffer (get-buffer " *Echo Area*")))
3740     (and (< (point-min buffer) (point-max buffer))
3741          (if return-string
3742              (buffer-substring nil nil buffer)
3743            t))))
3744
3745 ;;; Returns the string which remains in the echo area, or nil if none.
3746 ;;; If label is nil, the whole message stack is cleared.
3747 (defun clear-message (&optional label frame stdout-p no-restore)
3748   "Remove any message with the given LABEL from the message-stack,
3749 erasing it from the echo area if it's currently displayed there.
3750 If a message remains at the head of the message-stack and NO-RESTORE
3751 is nil, it will be displayed.  The string which remains in the echo
3752 area will be returned, or nil if the message-stack is now empty.
3753 If LABEL is nil, the entire message-stack is cleared.
3754
3755 Unless you need the return value or you need to specify a label,
3756 you should just use (message nil)."
3757   (or frame (setq frame (selected-frame)))
3758   (let ((clear-stream (and message-stack (eq 'stream (frame-type frame)))))
3759     (remove-message label frame)
3760     (let ((inhibit-read-only t)
3761           (zmacs-region-stays zmacs-region-stays)) ; preserve from change
3762       (erase-buffer " *Echo Area*"))
3763     (if clear-stream
3764         (send-string-to-terminal ?\n stdout-p))
3765     (if no-restore
3766         nil                     ; just preparing to put another msg up
3767       (if message-stack
3768           (let ((oldmsg (cdr (car message-stack))))
3769             (raw-append-message oldmsg frame stdout-p)
3770             oldmsg)
3771         ;; #### Should we (redisplay-echo-area) here?  Messes some
3772         ;; things up.
3773         nil))))
3774
3775 (defun remove-message (&optional label frame)
3776   ;; If label is nil, we want to remove all matching messages.
3777   ;; Must reverse the stack first to log them in the right order.
3778   (let ((log nil))
3779     (while (and message-stack
3780                 (or (null label)        ; null label means clear whole stack
3781                     (eq label (car (car message-stack)))))
3782       (push (car message-stack) log)
3783       (setq message-stack (cdr message-stack)))
3784     (let ((s  message-stack))
3785       (while (cdr s)
3786         (let ((msg (car (cdr s))))
3787           (if (eq label (car msg))
3788               (progn
3789                 (push msg log)
3790                 (setcdr s (cdr (cdr s))))
3791             (setq s (cdr s))))))
3792     ;; (possibly) log each removed message
3793     (while log
3794       (condition-case e
3795           (run-hook-with-args 'remove-message-hook
3796                               (car (car log)) (cdr (car log)))
3797         (error (setq remove-message-hook nil)
3798                (lwarn 'message-log 'warning
3799                  "Error caught in `remove-message-hook': %s"
3800                  (error-message-string e))
3801                (let ((inhibit-read-only t))
3802                  (erase-buffer " *Echo Area*"))
3803                (signal (car e) (cdr e))))
3804       (setq log (cdr log)))))
3805
3806 (defun append-message (label message &optional frame stdout-p)
3807   (or frame (setq frame (selected-frame)))
3808   ;; Add a new entry to the message-stack, or modify an existing one
3809   (let ((top (car message-stack)))
3810     (if (eq label (car top))
3811         (setcdr top (concat (cdr top) message))
3812       (push (cons label message) message-stack)))
3813   (raw-append-message message frame stdout-p))
3814
3815 ;; Really append the message to the echo area.  no fiddling with
3816 ;; message-stack.
3817 (defun raw-append-message (message &optional frame stdout-p)
3818   (unless (equal message "")
3819     (let ((inhibit-read-only t)
3820           (zmacs-region-stays zmacs-region-stays)) ; preserve from change
3821       (insert-string message " *Echo Area*")
3822       ;; Conditionalizing on the device type in this way is not that clean,
3823       ;; but neither is having a device method, as I originally implemented
3824       ;; it: all non-stream devices behave in the same way.  Perhaps
3825       ;; the cleanest way is to make the concept of a "redisplayable"
3826       ;; device, which stream devices are not.  Look into this more if
3827       ;; we ever create another non-redisplayable device type (e.g.
3828       ;; processes?  printers?).
3829
3830       ;; Don't redisplay the echo area if we are executing a macro.
3831       (if (not executing-kbd-macro)
3832           (if (eq 'stream (frame-type frame))
3833               (send-string-to-terminal message stdout-p (frame-device frame))
3834             (redisplay-echo-area))))))
3835
3836 (defun display-message (label message &optional frame stdout-p)
3837   "Print a one-line message at the bottom of the frame.  First argument
3838 LABEL is an identifier for this message.  MESSAGE is the string to display.
3839 Use `clear-message' to remove a labelled message.
3840
3841 Here are some standard labels (those marked with `*' are not logged
3842 by default--see the `log-message-ignore-labels' variable):
3843     message       default label used by the `message' function
3844     error         default label used for reporting errors
3845   * progress      progress indicators like \"Converting... 45%\"
3846   * prompt        prompt-like messages like \"I-search: foo\"
3847   * command       helper command messages like \"Mark set\"
3848   * no-log        messages that should never be logged"
3849   (clear-message label frame stdout-p t)
3850   (append-message label message frame stdout-p))
3851
3852 (defun current-message (&optional frame)
3853   "Return the current message in the echo area, or nil.
3854 The FRAME argument is currently unused."
3855   (cdr (car message-stack)))
3856
3857 ;;; may eventually be frame-dependent
3858 (defun current-message-label (&optional frame)
3859   (car (car message-stack)))
3860
3861 (defun message (fmt &rest args)
3862   "Print a one-line message at the bottom of the frame.
3863 The arguments are the same as to `format'.
3864
3865 If the only argument is nil, clear any existing message; let the
3866 minibuffer contents show."
3867   ;; questionable junk in the C code
3868   ;; (if (framep default-minibuffer-frame)
3869   ;;     (make-frame-visible default-minibuffer-frame))
3870   (if (and (null fmt) (null args))
3871       (prog1 nil
3872         (clear-message nil))
3873     (let ((str (apply 'format fmt args)))
3874       (display-message 'message str)
3875       str)))
3876
3877 (defun lmessage (label fmt &rest args)
3878   "Print a one-line message at the bottom of the frame.
3879 First argument LABEL is an identifier for this message.  The rest of the
3880 arguments are the same as to `format'.
3881
3882 See `display-message' for a list of standard labels."
3883   (if (and (null fmt) (null args))
3884       (prog1 nil
3885         (clear-message label nil))
3886     (let ((str (apply 'format fmt args)))
3887       (display-message label str)
3888       str)))
3889
3890
3891 ;;;;;;
3892 ;;;;;; warning stuff
3893 ;;;;;;
3894
3895 (defcustom log-warning-minimum-level 'info
3896   "Minimum level of warnings that should be logged.
3897 The warnings in levels below this are completely ignored, as if they never
3898 happened.
3899
3900 The recognized warning levels, in decreasing order of priority, are
3901 'emergency, 'alert, 'critical, 'error, 'warning, 'notice, 'info, and
3902 'debug.
3903
3904 See also `display-warning-minimum-level'.
3905
3906 You can also control which warnings are displayed on a class-by-class
3907 basis.  See `display-warning-suppressed-classes' and
3908 `log-warning-suppressed-classes'."
3909   :type '(choice (const emergency) (const alert) (const critical)
3910                  (const error) (const warning) (const notice)
3911                  (const info) (const debug))
3912   :group 'warnings)
3913
3914 (defcustom display-warning-minimum-level 'info
3915   "Minimum level of warnings that should be displayed.
3916 The warnings in levels below this will be generated, but not
3917 displayed.
3918
3919 The recognized warning levels, in decreasing order of priority, are
3920 'emergency, 'alert, 'critical, 'error, 'warning, 'notice, 'info, and
3921 'debug.
3922
3923 See also `log-warning-minimum-level'.
3924
3925 You can also control which warnings are displayed on a class-by-class
3926 basis.  See `display-warning-suppressed-classes' and
3927 `log-warning-suppressed-classes'."
3928   :type '(choice (const emergency) (const alert) (const critical)
3929                  (const error) (const warning) (const notice)
3930                  (const info) (const debug))
3931   :group 'warnings)
3932
3933 (defvar log-warning-suppressed-classes nil
3934   "List of classes of warnings that shouldn't be logged or displayed.
3935 If any of the CLASS symbols associated with a warning is the same as
3936 any of the symbols listed here, the warning will be completely ignored,
3937 as it they never happened.
3938
3939 NOTE: In most circumstances, you should *not* set this variable.
3940 Set `display-warning-suppressed-classes' instead.  That way the suppressed
3941 warnings are not displayed but are still unobtrusively logged.
3942
3943 See also `log-warning-minimum-level' and `display-warning-minimum-level'.")
3944
3945 (defcustom display-warning-suppressed-classes nil
3946   "List of classes of warnings that shouldn't be displayed.
3947 If any of the CLASS symbols associated with a warning is the same as
3948 any of the symbols listed here, the warning will not be displayed.
3949 The warning will still logged in the *Warnings* buffer (unless also
3950 contained in `log-warning-suppressed-classes'), but the buffer will
3951 not be automatically popped up.
3952
3953 See also `log-warning-minimum-level' and `display-warning-minimum-level'."
3954   :type '(repeat symbol)
3955   :group 'warnings)
3956
3957 (defvar warning-count 0
3958   "Count of the number of warning messages displayed so far.")
3959
3960 (defconst warning-level-alist '((emergency . 8)
3961                                 (alert . 7)
3962                                 (critical . 6)
3963                                 (error . 5)
3964                                 (warning . 4)
3965                                 (notice . 3)
3966                                 (info . 2)
3967                                 (debug . 1)))
3968
3969 (defun warning-level-p (level)
3970   "Non-nil if LEVEL specifies a warning level."
3971   (and (symbolp level) (assq level warning-level-alist)))
3972
3973 ;; If you're interested in rewriting this function, be aware that it
3974 ;; could be called at arbitrary points in a Lisp program (when a
3975 ;; built-in function wants to issue a warning, it will call out to
3976 ;; this function the next time some Lisp code is evaluated).  Therefore,
3977 ;; this function *must* not permanently modify any global variables
3978 ;; (e.g. the current buffer) except those that specifically apply
3979 ;; to the warning system.
3980
3981 (defvar before-init-deferred-warnings nil)
3982
3983 (defun after-init-display-warnings ()
3984   "Display warnings deferred till after the init file is run.
3985 Warnings that occur before then are deferred so that warning
3986 suppression in the .emacs file will be honored."
3987   (while before-init-deferred-warnings
3988     (apply 'display-warning (car before-init-deferred-warnings))
3989     (setq before-init-deferred-warnings
3990           (cdr before-init-deferred-warnings))))
3991
3992 (add-hook 'after-init-hook 'after-init-display-warnings)
3993
3994 (defun display-warning (class message &optional level)
3995   "Display a warning message.
3996 CLASS should be a symbol describing what sort of warning this is, such
3997 as `resource' or `key-mapping'.  A list of such symbols is also
3998 accepted. (Individual classes can be suppressed; see
3999 `display-warning-suppressed-classes'.)  Optional argument LEVEL can
4000 be used to specify a priority for the warning, other than default priority
4001 `warning'. (See `display-warning-minimum-level').  The message is
4002 inserted into the *Warnings* buffer, which is made visible at appropriate
4003 times."
4004   (or level (setq level 'warning))
4005   (or (listp class) (setq class (list class)))
4006   (check-argument-type 'warning-level-p level)
4007   (if (and (not (featurep 'infodock))
4008            (not init-file-loaded))
4009       (push (list class message level) before-init-deferred-warnings)
4010     (catch 'ignored
4011       (let ((display-p t)
4012             (level-num (cdr (assq level warning-level-alist))))
4013         (if (< level-num (cdr (assq log-warning-minimum-level
4014                                     warning-level-alist)))
4015             (throw 'ignored nil))
4016         (if (intersection class log-warning-suppressed-classes)
4017             (throw 'ignored nil))
4018
4019         (if (< level-num (cdr (assq display-warning-minimum-level
4020                                     warning-level-alist)))
4021             (setq display-p nil))
4022         (if (and display-p
4023                  (intersection class display-warning-suppressed-classes))
4024             (setq display-p nil))
4025         (let ((buffer (get-buffer-create "*Warnings*")))
4026           (when display-p
4027             ;; The C code looks at display-warning-tick to determine
4028             ;; when it should call `display-warning-buffer'.  Change it
4029             ;; to get the C code's attention.
4030             (incf display-warning-tick))
4031           (with-current-buffer buffer
4032             (goto-char (point-max))
4033             (incf warning-count)
4034             (princ (format "(%d) (%s/%s) "
4035                            warning-count
4036                            (mapconcat 'symbol-name class ",")
4037                            level)
4038                    buffer)
4039             (princ message buffer)
4040             (terpri buffer)
4041             (terpri buffer)))))))
4042
4043 (defun warn (&rest args)
4044   "Display a warning message.
4045 The message is constructed by passing all args to `format'.  The message
4046 is placed in the *Warnings* buffer, which will be popped up at the next
4047 redisplay.  The class of the warning is `warning'.  See also
4048 `display-warning'."
4049   (display-warning 'warning (apply 'format args)))
4050
4051 (defun lwarn (class level &rest args)
4052   "Display a labeled warning message.
4053 CLASS should be a symbol describing what sort of warning this is, such
4054 as `resource' or `key-mapping'.  A list of such symbols is also
4055 accepted. (Individual classes can be suppressed; see
4056 `display-warning-suppressed-classes'.)  If non-nil, LEVEL can be used
4057 to specify a priority for the warning, other than default priority
4058 `warning'. (See `display-warning-minimum-level').  The message is
4059 inserted into the *Warnings* buffer, which is made visible at appropriate
4060 times.
4061
4062 The rest of the arguments are passed to `format'."
4063   (display-warning class (apply 'format args)
4064                    (or level 'warning)))
4065
4066 (defvar warning-marker nil)
4067
4068 ;; When this function is called by the C code, all non-local exits are
4069 ;; trapped and C-g is inhibited; therefore, it would be a very, very
4070 ;; bad idea for this function to get into an infinite loop.
4071
4072 (defun display-warning-buffer ()
4073   "Make the buffer that contains the warnings be visible.
4074 The C code calls this periodically, right before redisplay."
4075   (let ((buffer (get-buffer-create "*Warnings*")))
4076     (when (or (not warning-marker)
4077               (not (eq (marker-buffer warning-marker) buffer)))
4078       (setq warning-marker (make-marker))
4079       (set-marker warning-marker 1 buffer))
4080     (if temp-buffer-show-function
4081         (let ((show-buffer (get-buffer-create "*Warnings-Show*")))
4082           (save-excursion
4083             (set-buffer show-buffer)
4084             (setq buffer-read-only nil)
4085             (erase-buffer))
4086           (save-excursion
4087             (set-buffer buffer)
4088             (copy-to-buffer show-buffer
4089                             (marker-position warning-marker)
4090                             (point-max)))
4091           (funcall temp-buffer-show-function show-buffer))
4092       (set-window-start (display-buffer buffer) warning-marker))
4093     (set-marker warning-marker (point-max buffer) buffer)))
4094
4095 (defun emacs-name ()
4096   "Return the printable name of this instance of Emacs."
4097   (cond ((featurep 'infodock) "InfoDock")
4098         ((featurep 'xemacs) "XEmacs")
4099         (t "Emacs")))
4100
4101 ;;; simple.el ends here