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