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