]> code.delx.au - gnu-emacs/blob - lisp/simple.el
* lisp/textmodes/rst.el: Minor cleanup to improve style.
[gnu-emacs] / lisp / simple.el
1 ;;; simple.el --- basic editing commands for Emacs
2
3 ;; Copyright (C) 1985, 1986, 1987, 1993, 1994, 1995, 1996, 1997, 1998,
4 ;; 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009,
5 ;; 2010 Free Software Foundation, Inc.
6
7 ;; Maintainer: FSF
8 ;; Keywords: internal
9 ;; Package: emacs
10
11 ;; This file is part of GNU Emacs.
12
13 ;; GNU Emacs is free software: you can redistribute it and/or modify
14 ;; it under the terms of the GNU General Public License as published by
15 ;; the Free Software Foundation, either version 3 of the License, or
16 ;; (at your option) any later version.
17
18 ;; GNU Emacs is distributed in the hope that it will be useful,
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 ;; GNU General Public License for more details.
22
23 ;; You should have received a copy of the GNU General Public License
24 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
25
26 ;;; Commentary:
27
28 ;; A grab-bag of basic Emacs commands not specifically related to some
29 ;; major mode or to file-handling.
30
31 ;;; Code:
32
33 ;; This is for lexical-let in apply-partially.
34 (eval-when-compile (require 'cl))
35
36 (declare-function widget-convert "wid-edit" (type &rest args))
37 (declare-function shell-mode "shell" ())
38
39 (defvar compilation-current-error)
40
41 (defcustom idle-update-delay 0.5
42 "Idle time delay before updating various things on the screen.
43 Various Emacs features that update auxiliary information when point moves
44 wait this many seconds after Emacs becomes idle before doing an update."
45 :type 'number
46 :group 'display
47 :version "22.1")
48
49 (defgroup killing nil
50 "Killing and yanking commands."
51 :group 'editing)
52
53 (defgroup paren-matching nil
54 "Highlight (un)matching of parens and expressions."
55 :group 'matching)
56
57 (defun get-next-valid-buffer (list &optional buffer visible-ok frame)
58 "Search LIST for a valid buffer to display in FRAME.
59 Return nil when all buffers in LIST are undesirable for display,
60 otherwise return the first suitable buffer in LIST.
61
62 Buffers not visible in windows are preferred to visible buffers,
63 unless VISIBLE-OK is non-nil.
64 If the optional argument FRAME is nil, it defaults to the selected frame.
65 If BUFFER is non-nil, ignore occurrences of that buffer in LIST."
66 ;; This logic is more or less copied from other-buffer.
67 (setq frame (or frame (selected-frame)))
68 (let ((pred (frame-parameter frame 'buffer-predicate))
69 found buf)
70 (while (and (not found) list)
71 (setq buf (car list))
72 (if (and (not (eq buffer buf))
73 (buffer-live-p buf)
74 (or (null pred) (funcall pred buf))
75 (not (eq (aref (buffer-name buf) 0) ?\s))
76 (or visible-ok (null (get-buffer-window buf 'visible))))
77 (setq found buf)
78 (setq list (cdr list))))
79 (car list)))
80
81 (defun last-buffer (&optional buffer visible-ok frame)
82 "Return the last buffer in FRAME's buffer list.
83 If BUFFER is the last buffer, return the preceding buffer instead.
84 Buffers not visible in windows are preferred to visible buffers,
85 unless optional argument VISIBLE-OK is non-nil.
86 Optional third argument FRAME nil or omitted means use the
87 selected frame's buffer list.
88 If no such buffer exists, return the buffer `*scratch*', creating
89 it if necessary."
90 (setq frame (or frame (selected-frame)))
91 (or (get-next-valid-buffer (nreverse (buffer-list frame))
92 buffer visible-ok frame)
93 (get-buffer "*scratch*")
94 (let ((scratch (get-buffer-create "*scratch*")))
95 (set-buffer-major-mode scratch)
96 scratch)))
97
98 (defun next-buffer ()
99 "Switch to the next buffer in cyclic order."
100 (interactive)
101 (let ((buffer (current-buffer)))
102 (switch-to-buffer (other-buffer buffer t))
103 (bury-buffer buffer)))
104
105 (defun previous-buffer ()
106 "Switch to the previous buffer in cyclic order."
107 (interactive)
108 (switch-to-buffer (last-buffer (current-buffer) t)))
109
110 \f
111 ;;; next-error support framework
112
113 (defgroup next-error nil
114 "`next-error' support framework."
115 :group 'compilation
116 :version "22.1")
117
118 (defface next-error
119 '((t (:inherit region)))
120 "Face used to highlight next error locus."
121 :group 'next-error
122 :version "22.1")
123
124 (defcustom next-error-highlight 0.5
125 "Highlighting of locations in selected source buffers.
126 If a number, highlight the locus in `next-error' face for the given time
127 in seconds, or until the next command is executed.
128 If t, highlight the locus until the next command is executed, or until
129 some other locus replaces it.
130 If nil, don't highlight the locus in the source buffer.
131 If `fringe-arrow', indicate the locus by the fringe arrow."
132 :type '(choice (number :tag "Highlight for specified time")
133 (const :tag "Semipermanent highlighting" t)
134 (const :tag "No highlighting" nil)
135 (const :tag "Fringe arrow" fringe-arrow))
136 :group 'next-error
137 :version "22.1")
138
139 (defcustom next-error-highlight-no-select 0.5
140 "Highlighting of locations in `next-error-no-select'.
141 If number, highlight the locus in `next-error' face for given time in seconds.
142 If t, highlight the locus indefinitely until some other locus replaces it.
143 If nil, don't highlight the locus in the source buffer.
144 If `fringe-arrow', indicate the locus by the fringe arrow."
145 :type '(choice (number :tag "Highlight for specified time")
146 (const :tag "Semipermanent highlighting" t)
147 (const :tag "No highlighting" nil)
148 (const :tag "Fringe arrow" fringe-arrow))
149 :group 'next-error
150 :version "22.1")
151
152 (defcustom next-error-recenter nil
153 "Display the line in the visited source file recentered as specified.
154 If non-nil, the value is passed directly to `recenter'."
155 :type '(choice (integer :tag "Line to recenter to")
156 (const :tag "Center of window" (4))
157 (const :tag "No recentering" nil))
158 :group 'next-error
159 :version "23.1")
160
161 (defcustom next-error-hook nil
162 "List of hook functions run by `next-error' after visiting source file."
163 :type 'hook
164 :group 'next-error)
165
166 (defvar next-error-highlight-timer nil)
167
168 (defvar next-error-overlay-arrow-position nil)
169 (put 'next-error-overlay-arrow-position 'overlay-arrow-string (purecopy "=>"))
170 (add-to-list 'overlay-arrow-variable-list 'next-error-overlay-arrow-position)
171
172 (defvar next-error-last-buffer nil
173 "The most recent `next-error' buffer.
174 A buffer becomes most recent when its compilation, grep, or
175 similar mode is started, or when it is used with \\[next-error]
176 or \\[compile-goto-error].")
177
178 (defvar next-error-function nil
179 "Function to use to find the next error in the current buffer.
180 The function is called with 2 parameters:
181 ARG is an integer specifying by how many errors to move.
182 RESET is a boolean which, if non-nil, says to go back to the beginning
183 of the errors before moving.
184 Major modes providing compile-like functionality should set this variable
185 to indicate to `next-error' that this is a candidate buffer and how
186 to navigate in it.")
187 (make-variable-buffer-local 'next-error-function)
188
189 (defvar next-error-move-function nil
190 "Function to use to move to an error locus.
191 It takes two arguments, a buffer position in the error buffer
192 and a buffer position in the error locus buffer.
193 The buffer for the error locus should already be current.
194 nil means use goto-char using the second argument position.")
195 (make-variable-buffer-local 'next-error-move-function)
196
197 (defsubst next-error-buffer-p (buffer
198 &optional avoid-current
199 extra-test-inclusive
200 extra-test-exclusive)
201 "Test if BUFFER is a `next-error' capable buffer.
202
203 If AVOID-CURRENT is non-nil, treat the current buffer
204 as an absolute last resort only.
205
206 The function EXTRA-TEST-INCLUSIVE, if non-nil, is called in each buffer
207 that normally would not qualify. If it returns t, the buffer
208 in question is treated as usable.
209
210 The function EXTRA-TEST-EXCLUSIVE, if non-nil, is called in each buffer
211 that would normally be considered usable. If it returns nil,
212 that buffer is rejected."
213 (and (buffer-name buffer) ;First make sure it's live.
214 (not (and avoid-current (eq buffer (current-buffer))))
215 (with-current-buffer buffer
216 (if next-error-function ; This is the normal test.
217 ;; Optionally reject some buffers.
218 (if extra-test-exclusive
219 (funcall extra-test-exclusive)
220 t)
221 ;; Optionally accept some other buffers.
222 (and extra-test-inclusive
223 (funcall extra-test-inclusive))))))
224
225 (defun next-error-find-buffer (&optional avoid-current
226 extra-test-inclusive
227 extra-test-exclusive)
228 "Return a `next-error' capable buffer.
229
230 If AVOID-CURRENT is non-nil, treat the current buffer
231 as an absolute last resort only.
232
233 The function EXTRA-TEST-INCLUSIVE, if non-nil, is called in each buffer
234 that normally would not qualify. If it returns t, the buffer
235 in question is treated as usable.
236
237 The function EXTRA-TEST-EXCLUSIVE, if non-nil, is called in each buffer
238 that would normally be considered usable. If it returns nil,
239 that buffer is rejected."
240 (or
241 ;; 1. If one window on the selected frame displays such buffer, return it.
242 (let ((window-buffers
243 (delete-dups
244 (delq nil (mapcar (lambda (w)
245 (if (next-error-buffer-p
246 (window-buffer w)
247 avoid-current
248 extra-test-inclusive extra-test-exclusive)
249 (window-buffer w)))
250 (window-list))))))
251 (if (eq (length window-buffers) 1)
252 (car window-buffers)))
253 ;; 2. If next-error-last-buffer is an acceptable buffer, use that.
254 (if (and next-error-last-buffer
255 (next-error-buffer-p next-error-last-buffer avoid-current
256 extra-test-inclusive extra-test-exclusive))
257 next-error-last-buffer)
258 ;; 3. If the current buffer is acceptable, choose it.
259 (if (next-error-buffer-p (current-buffer) avoid-current
260 extra-test-inclusive extra-test-exclusive)
261 (current-buffer))
262 ;; 4. Look for any acceptable buffer.
263 (let ((buffers (buffer-list)))
264 (while (and buffers
265 (not (next-error-buffer-p
266 (car buffers) avoid-current
267 extra-test-inclusive extra-test-exclusive)))
268 (setq buffers (cdr buffers)))
269 (car buffers))
270 ;; 5. Use the current buffer as a last resort if it qualifies,
271 ;; even despite AVOID-CURRENT.
272 (and avoid-current
273 (next-error-buffer-p (current-buffer) nil
274 extra-test-inclusive extra-test-exclusive)
275 (progn
276 (message "This is the only buffer with error message locations")
277 (current-buffer)))
278 ;; 6. Give up.
279 (error "No buffers contain error message locations")))
280
281 (defun next-error (&optional arg reset)
282 "Visit next `next-error' message and corresponding source code.
283
284 If all the error messages parsed so far have been processed already,
285 the message buffer is checked for new ones.
286
287 A prefix ARG specifies how many error messages to move;
288 negative means move back to previous error messages.
289 Just \\[universal-argument] as a prefix means reparse the error message buffer
290 and start at the first error.
291
292 The RESET argument specifies that we should restart from the beginning.
293
294 \\[next-error] normally uses the most recently started
295 compilation, grep, or occur buffer. It can also operate on any
296 buffer with output from the \\[compile], \\[grep] commands, or,
297 more generally, on any buffer in Compilation mode or with
298 Compilation Minor mode enabled, or any buffer in which
299 `next-error-function' is bound to an appropriate function.
300 To specify use of a particular buffer for error messages, type
301 \\[next-error] in that buffer when it is the only one displayed
302 in the current frame.
303
304 Once \\[next-error] has chosen the buffer for error messages, it
305 runs `next-error-hook' with `run-hooks', and stays with that buffer
306 until you use it in some other buffer which uses Compilation mode
307 or Compilation Minor mode.
308
309 See variables `compilation-parse-errors-function' and
310 \`compilation-error-regexp-alist' for customization ideas."
311 (interactive "P")
312 (if (consp arg) (setq reset t arg nil))
313 (when (setq next-error-last-buffer (next-error-find-buffer))
314 ;; we know here that next-error-function is a valid symbol we can funcall
315 (with-current-buffer next-error-last-buffer
316 (funcall next-error-function (prefix-numeric-value arg) reset)
317 (when next-error-recenter
318 (recenter next-error-recenter))
319 (run-hooks 'next-error-hook))))
320
321 (defun next-error-internal ()
322 "Visit the source code corresponding to the `next-error' message at point."
323 (setq next-error-last-buffer (current-buffer))
324 ;; we know here that next-error-function is a valid symbol we can funcall
325 (with-current-buffer next-error-last-buffer
326 (funcall next-error-function 0 nil)
327 (when next-error-recenter
328 (recenter next-error-recenter))
329 (run-hooks 'next-error-hook)))
330
331 (defalias 'goto-next-locus 'next-error)
332 (defalias 'next-match 'next-error)
333
334 (defun previous-error (&optional n)
335 "Visit previous `next-error' message and corresponding source code.
336
337 Prefix arg N says how many error messages to move backwards (or
338 forwards, if negative).
339
340 This operates on the output from the \\[compile] and \\[grep] commands."
341 (interactive "p")
342 (next-error (- (or n 1))))
343
344 (defun first-error (&optional n)
345 "Restart at the first error.
346 Visit corresponding source code.
347 With prefix arg N, visit the source code of the Nth error.
348 This operates on the output from the \\[compile] command, for instance."
349 (interactive "p")
350 (next-error n t))
351
352 (defun next-error-no-select (&optional n)
353 "Move point to the next error in the `next-error' buffer and highlight match.
354 Prefix arg N says how many error messages to move forwards (or
355 backwards, if negative).
356 Finds and highlights the source line like \\[next-error], but does not
357 select the source buffer."
358 (interactive "p")
359 (let ((next-error-highlight next-error-highlight-no-select))
360 (next-error n))
361 (pop-to-buffer next-error-last-buffer))
362
363 (defun previous-error-no-select (&optional n)
364 "Move point to the previous error in the `next-error' buffer and highlight match.
365 Prefix arg N says how many error messages to move backwards (or
366 forwards, if negative).
367 Finds and highlights the source line like \\[previous-error], but does not
368 select the source buffer."
369 (interactive "p")
370 (next-error-no-select (- (or n 1))))
371
372 ;; Internal variable for `next-error-follow-mode-post-command-hook'.
373 (defvar next-error-follow-last-line nil)
374
375 (define-minor-mode next-error-follow-minor-mode
376 "Minor mode for compilation, occur and diff modes.
377 When turned on, cursor motion in the compilation, grep, occur or diff
378 buffer causes automatic display of the corresponding source code
379 location."
380 :group 'next-error :init-value nil :lighter " Fol"
381 (if (not next-error-follow-minor-mode)
382 (remove-hook 'post-command-hook 'next-error-follow-mode-post-command-hook t)
383 (add-hook 'post-command-hook 'next-error-follow-mode-post-command-hook nil t)
384 (make-local-variable 'next-error-follow-last-line)))
385
386 ;; Used as a `post-command-hook' by `next-error-follow-mode'
387 ;; for the *Compilation* *grep* and *Occur* buffers.
388 (defun next-error-follow-mode-post-command-hook ()
389 (unless (equal next-error-follow-last-line (line-number-at-pos))
390 (setq next-error-follow-last-line (line-number-at-pos))
391 (condition-case nil
392 (let ((compilation-context-lines nil))
393 (setq compilation-current-error (point))
394 (next-error-no-select 0))
395 (error t))))
396
397 \f
398 ;;;
399
400 (defun fundamental-mode ()
401 "Major mode not specialized for anything in particular.
402 Other major modes are defined by comparison with this one."
403 (interactive)
404 (kill-all-local-variables)
405 (run-mode-hooks 'fundamental-mode-hook))
406
407 ;; Special major modes to view specially formatted data rather than files.
408
409 (defvar special-mode-map
410 (let ((map (make-sparse-keymap)))
411 (suppress-keymap map)
412 (define-key map "q" 'quit-window)
413 (define-key map " " 'scroll-up)
414 (define-key map "\C-?" 'scroll-down)
415 (define-key map "?" 'describe-mode)
416 (define-key map ">" 'end-of-buffer)
417 (define-key map "<" 'beginning-of-buffer)
418 (define-key map "g" 'revert-buffer)
419 map))
420
421 (put 'special-mode 'mode-class 'special)
422 (define-derived-mode special-mode nil "Special"
423 "Parent major mode from which special major modes should inherit."
424 (setq buffer-read-only t))
425
426 ;; Major mode meant to be the parent of programming modes.
427
428 (defvar prog-mode-map
429 (let ((map (make-sparse-keymap)))
430 (define-key map [?\C-\M-q] 'prog-indent-sexp)
431 map)
432 "Keymap used for programming modes.")
433
434 (defun prog-indent-sexp ()
435 "Indent the expression after point."
436 (interactive)
437 (let ((start (point))
438 (end (save-excursion (forward-sexp 1) (point))))
439 (indent-region start end nil)))
440
441 (define-derived-mode prog-mode fundamental-mode "Prog"
442 "Major mode for editing programming language source code."
443 (set (make-local-variable 'require-final-newline) mode-require-final-newline)
444 (set (make-local-variable 'parse-sexp-ignore-comments) t))
445
446 ;; Making and deleting lines.
447
448 (defvar hard-newline (propertize "\n" 'hard t 'rear-nonsticky '(hard))
449 "Propertized string representing a hard newline character.")
450
451 (defun newline (&optional arg)
452 "Insert a newline, and move to left margin of the new line if it's blank.
453 If `use-hard-newlines' is non-nil, the newline is marked with the
454 text-property `hard'.
455 With ARG, insert that many newlines.
456 Call `auto-fill-function' if the current column number is greater
457 than the value of `fill-column' and ARG is nil."
458 (interactive "*P")
459 (barf-if-buffer-read-only)
460 ;; Call self-insert so that auto-fill, abbrev expansion etc. happens.
461 ;; Set last-command-event to tell self-insert what to insert.
462 (let* ((was-page-start (and (bolp) (looking-at page-delimiter)))
463 (beforepos (point))
464 (last-command-event ?\n)
465 ;; Don't auto-fill if we have a numeric argument.
466 (auto-fill-function (if arg nil auto-fill-function))
467 (postproc
468 ;; Do the rest in post-self-insert-hook, because we want to do it
469 ;; *before* other functions on that hook.
470 (lambda ()
471 ;; Mark the newline(s) `hard'.
472 (if use-hard-newlines
473 (set-hard-newline-properties
474 (- (point) (prefix-numeric-value arg)) (point)))
475 ;; If the newline leaves the previous line blank, and we
476 ;; have a left margin, delete that from the blank line.
477 (save-excursion
478 (goto-char beforepos)
479 (beginning-of-line)
480 (and (looking-at "[ \t]$")
481 (> (current-left-margin) 0)
482 (delete-region (point)
483 (line-end-position))))
484 ;; Indent the line after the newline, except in one case:
485 ;; when we added the newline at the beginning of a line which
486 ;; starts a page.
487 (or was-page-start
488 (move-to-left-margin nil t)))))
489 (unwind-protect
490 (progn
491 (add-hook 'post-self-insert-hook postproc)
492 (self-insert-command (prefix-numeric-value arg)))
493 ;; We first used let-binding to protect the hook, but that was naive
494 ;; since add-hook affects the symbol-default value of the variable,
495 ;; whereas the let-binding might only protect the buffer-local value.
496 (remove-hook 'post-self-insert-hook postproc)))
497 nil)
498
499 (defun set-hard-newline-properties (from to)
500 (let ((sticky (get-text-property from 'rear-nonsticky)))
501 (put-text-property from to 'hard 't)
502 ;; If rear-nonsticky is not "t", add 'hard to rear-nonsticky list
503 (if (and (listp sticky) (not (memq 'hard sticky)))
504 (put-text-property from (point) 'rear-nonsticky
505 (cons 'hard sticky)))))
506
507 (defun open-line (n)
508 "Insert a newline and leave point before it.
509 If there is a fill prefix and/or a `left-margin', insert them
510 on the new line if the line would have been blank.
511 With arg N, insert N newlines."
512 (interactive "*p")
513 (let* ((do-fill-prefix (and fill-prefix (bolp)))
514 (do-left-margin (and (bolp) (> (current-left-margin) 0)))
515 (loc (point-marker))
516 ;; Don't expand an abbrev before point.
517 (abbrev-mode nil))
518 (newline n)
519 (goto-char loc)
520 (while (> n 0)
521 (cond ((bolp)
522 (if do-left-margin (indent-to (current-left-margin)))
523 (if do-fill-prefix (insert-and-inherit fill-prefix))))
524 (forward-line 1)
525 (setq n (1- n)))
526 (goto-char loc)
527 (end-of-line)))
528
529 (defun split-line (&optional arg)
530 "Split current line, moving portion beyond point vertically down.
531 If the current line starts with `fill-prefix', insert it on the new
532 line as well. With prefix ARG, don't insert `fill-prefix' on new line.
533
534 When called from Lisp code, ARG may be a prefix string to copy."
535 (interactive "*P")
536 (skip-chars-forward " \t")
537 (let* ((col (current-column))
538 (pos (point))
539 ;; What prefix should we check for (nil means don't).
540 (prefix (cond ((stringp arg) arg)
541 (arg nil)
542 (t fill-prefix)))
543 ;; Does this line start with it?
544 (have-prfx (and prefix
545 (save-excursion
546 (beginning-of-line)
547 (looking-at (regexp-quote prefix))))))
548 (newline 1)
549 (if have-prfx (insert-and-inherit prefix))
550 (indent-to col 0)
551 (goto-char pos)))
552
553 (defun delete-indentation (&optional arg)
554 "Join this line to previous and fix up whitespace at join.
555 If there is a fill prefix, delete it from the beginning of this line.
556 With argument, join this line to following line."
557 (interactive "*P")
558 (beginning-of-line)
559 (if arg (forward-line 1))
560 (if (eq (preceding-char) ?\n)
561 (progn
562 (delete-region (point) (1- (point)))
563 ;; If the second line started with the fill prefix,
564 ;; delete the prefix.
565 (if (and fill-prefix
566 (<= (+ (point) (length fill-prefix)) (point-max))
567 (string= fill-prefix
568 (buffer-substring (point)
569 (+ (point) (length fill-prefix)))))
570 (delete-region (point) (+ (point) (length fill-prefix))))
571 (fixup-whitespace))))
572
573 (defalias 'join-line #'delete-indentation) ; easier to find
574
575 (defun delete-blank-lines ()
576 "On blank line, delete all surrounding blank lines, leaving just one.
577 On isolated blank line, delete that one.
578 On nonblank line, delete any immediately following blank lines."
579 (interactive "*")
580 (let (thisblank singleblank)
581 (save-excursion
582 (beginning-of-line)
583 (setq thisblank (looking-at "[ \t]*$"))
584 ;; Set singleblank if there is just one blank line here.
585 (setq singleblank
586 (and thisblank
587 (not (looking-at "[ \t]*\n[ \t]*$"))
588 (or (bobp)
589 (progn (forward-line -1)
590 (not (looking-at "[ \t]*$")))))))
591 ;; Delete preceding blank lines, and this one too if it's the only one.
592 (if thisblank
593 (progn
594 (beginning-of-line)
595 (if singleblank (forward-line 1))
596 (delete-region (point)
597 (if (re-search-backward "[^ \t\n]" nil t)
598 (progn (forward-line 1) (point))
599 (point-min)))))
600 ;; Delete following blank lines, unless the current line is blank
601 ;; and there are no following blank lines.
602 (if (not (and thisblank singleblank))
603 (save-excursion
604 (end-of-line)
605 (forward-line 1)
606 (delete-region (point)
607 (if (re-search-forward "[^ \t\n]" nil t)
608 (progn (beginning-of-line) (point))
609 (point-max)))))
610 ;; Handle the special case where point is followed by newline and eob.
611 ;; Delete the line, leaving point at eob.
612 (if (looking-at "^[ \t]*\n\\'")
613 (delete-region (point) (point-max)))))
614
615 (defun delete-trailing-whitespace ()
616 "Delete all the trailing whitespace across the current buffer.
617 All whitespace after the last non-whitespace character in a line is deleted.
618 This respects narrowing, created by \\[narrow-to-region] and friends.
619 A formfeed is not considered whitespace by this function."
620 (interactive "*")
621 (save-match-data
622 (save-excursion
623 (goto-char (point-min))
624 (while (re-search-forward "\\s-$" nil t)
625 (skip-syntax-backward "-" (save-excursion (forward-line 0) (point)))
626 ;; Don't delete formfeeds, even if they are considered whitespace.
627 (save-match-data
628 (if (looking-at ".*\f")
629 (goto-char (match-end 0))))
630 (delete-region (point) (match-end 0))))))
631
632 (defun newline-and-indent ()
633 "Insert a newline, then indent according to major mode.
634 Indentation is done using the value of `indent-line-function'.
635 In programming language modes, this is the same as TAB.
636 In some text modes, where TAB inserts a tab, this command indents to the
637 column specified by the function `current-left-margin'."
638 (interactive "*")
639 (delete-horizontal-space t)
640 (newline)
641 (indent-according-to-mode))
642
643 (defun reindent-then-newline-and-indent ()
644 "Reindent current line, insert newline, then indent the new line.
645 Indentation of both lines is done according to the current major mode,
646 which means calling the current value of `indent-line-function'.
647 In programming language modes, this is the same as TAB.
648 In some text modes, where TAB inserts a tab, this indents to the
649 column specified by the function `current-left-margin'."
650 (interactive "*")
651 (let ((pos (point)))
652 ;; Be careful to insert the newline before indenting the line.
653 ;; Otherwise, the indentation might be wrong.
654 (newline)
655 (save-excursion
656 (goto-char pos)
657 ;; We are at EOL before the call to indent-according-to-mode, and
658 ;; after it we usually are as well, but not always. We tried to
659 ;; address it with `save-excursion' but that uses a normal marker
660 ;; whereas we need `move after insertion', so we do the save/restore
661 ;; by hand.
662 (setq pos (copy-marker pos t))
663 (indent-according-to-mode)
664 (goto-char pos)
665 ;; Remove the trailing white-space after indentation because
666 ;; indentation may introduce the whitespace.
667 (delete-horizontal-space t))
668 (indent-according-to-mode)))
669
670 (defun quoted-insert (arg)
671 "Read next input character and insert it.
672 This is useful for inserting control characters.
673 With argument, insert ARG copies of the character.
674
675 If the first character you type after this command is an octal digit,
676 you should type a sequence of octal digits which specify a character code.
677 Any nondigit terminates the sequence. If the terminator is a RET,
678 it is discarded; any other terminator is used itself as input.
679 The variable `read-quoted-char-radix' specifies the radix for this feature;
680 set it to 10 or 16 to use decimal or hex instead of octal.
681
682 In overwrite mode, this function inserts the character anyway, and
683 does not handle octal digits specially. This means that if you use
684 overwrite as your normal editing mode, you can use this function to
685 insert characters when necessary.
686
687 In binary overwrite mode, this function does overwrite, and octal
688 digits are interpreted as a character code. This is intended to be
689 useful for editing binary files."
690 (interactive "*p")
691 (let* ((char
692 ;; Avoid "obsolete" warnings for translation-table-for-input.
693 (with-no-warnings
694 (let (translation-table-for-input input-method-function)
695 (if (or (not overwrite-mode)
696 (eq overwrite-mode 'overwrite-mode-binary))
697 (read-quoted-char)
698 (read-char))))))
699 ;; This used to assume character codes 0240 - 0377 stand for
700 ;; characters in some single-byte character set, and converted them
701 ;; to Emacs characters. But in 23.1 this feature is deprecated
702 ;; in favor of inserting the corresponding Unicode characters.
703 ;; (if (and enable-multibyte-characters
704 ;; (>= char ?\240)
705 ;; (<= char ?\377))
706 ;; (setq char (unibyte-char-to-multibyte char)))
707 (if (> arg 0)
708 (if (eq overwrite-mode 'overwrite-mode-binary)
709 (delete-char arg)))
710 (while (> arg 0)
711 (insert-and-inherit char)
712 (setq arg (1- arg)))))
713
714 (defun forward-to-indentation (&optional arg)
715 "Move forward ARG lines and position at first nonblank character."
716 (interactive "^p")
717 (forward-line (or arg 1))
718 (skip-chars-forward " \t"))
719
720 (defun backward-to-indentation (&optional arg)
721 "Move backward ARG lines and position at first nonblank character."
722 (interactive "^p")
723 (forward-line (- (or arg 1)))
724 (skip-chars-forward " \t"))
725
726 (defun back-to-indentation ()
727 "Move point to the first non-whitespace character on this line."
728 (interactive "^")
729 (beginning-of-line 1)
730 (skip-syntax-forward " " (line-end-position))
731 ;; Move back over chars that have whitespace syntax but have the p flag.
732 (backward-prefix-chars))
733
734 (defun fixup-whitespace ()
735 "Fixup white space between objects around point.
736 Leave one space or none, according to the context."
737 (interactive "*")
738 (save-excursion
739 (delete-horizontal-space)
740 (if (or (looking-at "^\\|\\s)")
741 (save-excursion (forward-char -1)
742 (looking-at "$\\|\\s(\\|\\s'")))
743 nil
744 (insert ?\s))))
745
746 (defun delete-horizontal-space (&optional backward-only)
747 "Delete all spaces and tabs around point.
748 If BACKWARD-ONLY is non-nil, only delete them before point."
749 (interactive "*P")
750 (let ((orig-pos (point)))
751 (delete-region
752 (if backward-only
753 orig-pos
754 (progn
755 (skip-chars-forward " \t")
756 (constrain-to-field nil orig-pos t)))
757 (progn
758 (skip-chars-backward " \t")
759 (constrain-to-field nil orig-pos)))))
760
761 (defun just-one-space (&optional n)
762 "Delete all spaces and tabs around point, leaving one space (or N spaces)."
763 (interactive "*p")
764 (let ((orig-pos (point)))
765 (skip-chars-backward " \t")
766 (constrain-to-field nil orig-pos)
767 (dotimes (i (or n 1))
768 (if (= (following-char) ?\s)
769 (forward-char 1)
770 (insert ?\s)))
771 (delete-region
772 (point)
773 (progn
774 (skip-chars-forward " \t")
775 (constrain-to-field nil orig-pos t)))))
776 \f
777 (defun beginning-of-buffer (&optional arg)
778 "Move point to the beginning of the buffer.
779 With numeric arg N, put point N/10 of the way from the beginning.
780 If the buffer is narrowed, this command uses the beginning of the
781 accessible part of the buffer.
782
783 If Transient Mark mode is disabled, leave mark at previous
784 position, unless a \\[universal-argument] prefix is supplied.
785
786 Don't use this command in Lisp programs!
787 \(goto-char (point-min)) is faster."
788 (interactive "^P")
789 (or (consp arg)
790 (region-active-p)
791 (push-mark))
792 (let ((size (- (point-max) (point-min))))
793 (goto-char (if (and arg (not (consp arg)))
794 (+ (point-min)
795 (if (> size 10000)
796 ;; Avoid overflow for large buffer sizes!
797 (* (prefix-numeric-value arg)
798 (/ size 10))
799 (/ (+ 10 (* size (prefix-numeric-value arg))) 10)))
800 (point-min))))
801 (if (and arg (not (consp arg))) (forward-line 1)))
802
803 (defun end-of-buffer (&optional arg)
804 "Move point to the end of the buffer.
805 With numeric arg N, put point N/10 of the way from the end.
806 If the buffer is narrowed, this command uses the end of the
807 accessible part of the buffer.
808
809 If Transient Mark mode is disabled, leave mark at previous
810 position, unless a \\[universal-argument] prefix is supplied.
811
812 Don't use this command in Lisp programs!
813 \(goto-char (point-max)) is faster."
814 (interactive "^P")
815 (or (consp arg) (region-active-p) (push-mark))
816 (let ((size (- (point-max) (point-min))))
817 (goto-char (if (and arg (not (consp arg)))
818 (- (point-max)
819 (if (> size 10000)
820 ;; Avoid overflow for large buffer sizes!
821 (* (prefix-numeric-value arg)
822 (/ size 10))
823 (/ (* size (prefix-numeric-value arg)) 10)))
824 (point-max))))
825 ;; If we went to a place in the middle of the buffer,
826 ;; adjust it to the beginning of a line.
827 (cond ((and arg (not (consp arg))) (forward-line 1))
828 ((> (point) (window-end nil t))
829 ;; If the end of the buffer is not already on the screen,
830 ;; then scroll specially to put it near, but not at, the bottom.
831 (overlay-recenter (point))
832 (recenter -3))))
833
834 (defcustom delete-active-region t
835 "Whether single-char deletion commands delete an active region.
836 This has an effect only if Transient Mark mode is enabled, and
837 affects `delete-forward-char' and `delete-backward-char', though
838 not `delete-char'.
839
840 If the value is the symbol `kill', the active region is killed
841 instead of deleted."
842 :type '(choice (const :tag "Delete active region" t)
843 (const :tag "Kill active region" kill)
844 (const :tag "Do ordinary deletion" nil))
845 :group 'editing
846 :version "24.1")
847
848 (defun delete-backward-char (n &optional killflag)
849 "Delete the previous N characters (following if N is negative).
850 If Transient Mark mode is enabled, the mark is active, and N is 1,
851 delete the text in the region and deactivate the mark instead.
852 To disable this, set `delete-active-region' to nil.
853
854 Optional second arg KILLFLAG, if non-nil, means to kill (save in
855 kill ring) instead of delete. Interactively, N is the prefix
856 arg, and KILLFLAG is set if N is explicitly specified.
857
858 In Overwrite mode, single character backward deletion may replace
859 tabs with spaces so as to back over columns, unless point is at
860 the end of the line."
861 (interactive "p\nP")
862 (unless (integerp n)
863 (signal 'wrong-type-argument (list 'integerp n)))
864 (cond ((and (use-region-p)
865 delete-active-region
866 (= n 1))
867 ;; If a region is active, kill or delete it.
868 (if (eq delete-active-region 'kill)
869 (kill-region (region-beginning) (region-end))
870 (delete-region (region-beginning) (region-end))))
871 ;; In Overwrite mode, maybe untabify while deleting
872 ((null (or (null overwrite-mode)
873 (<= n 0)
874 (memq (char-before) '(?\t ?\n))
875 (eobp)
876 (eq (char-after) ?\n)))
877 (let* ((ocol (current-column))
878 (val (delete-char (- n) killflag)))
879 (save-excursion
880 (insert-char ?\s (- ocol (current-column)) nil))))
881 ;; Otherwise, do simple deletion.
882 (t (delete-char (- n) killflag))))
883
884 (defun delete-forward-char (n &optional killflag)
885 "Delete the following N characters (previous if N is negative).
886 If Transient Mark mode is enabled, the mark is active, and N is 1,
887 delete the text in the region and deactivate the mark instead.
888 To disable this, set `delete-active-region' to nil.
889
890 Optional second arg KILLFLAG non-nil means to kill (save in kill
891 ring) instead of delete. Interactively, N is the prefix arg, and
892 KILLFLAG is set if N was explicitly specified."
893 (interactive "p\nP")
894 (unless (integerp n)
895 (signal 'wrong-type-argument (list 'integerp n)))
896 (cond ((and (use-region-p)
897 delete-active-region
898 (= n 1))
899 ;; If a region is active, kill or delete it.
900 (if (eq delete-active-region 'kill)
901 (kill-region (region-beginning) (region-end))
902 (delete-region (region-beginning) (region-end))))
903 ;; Otherwise, do simple deletion.
904 (t (delete-char n killflag))))
905
906 (defun mark-whole-buffer ()
907 "Put point at beginning and mark at end of buffer.
908 You probably should not use this function in Lisp programs;
909 it is usually a mistake for a Lisp function to use any subroutine
910 that uses or sets the mark."
911 (interactive)
912 (push-mark (point))
913 (push-mark (point-max) nil t)
914 (goto-char (point-min)))
915 \f
916
917 ;; Counting lines, one way or another.
918
919 (defun goto-line (line &optional buffer)
920 "Goto LINE, counting from line 1 at beginning of buffer.
921 Normally, move point in the current buffer, and leave mark at the
922 previous position. With just \\[universal-argument] as argument,
923 move point in the most recently selected other buffer, and switch to it.
924
925 If there's a number in the buffer at point, it is the default for LINE.
926
927 This function is usually the wrong thing to use in a Lisp program.
928 What you probably want instead is something like:
929 (goto-char (point-min)) (forward-line (1- N))
930 If at all possible, an even better solution is to use char counts
931 rather than line counts."
932 (interactive
933 (if (and current-prefix-arg (not (consp current-prefix-arg)))
934 (list (prefix-numeric-value current-prefix-arg))
935 ;; Look for a default, a number in the buffer at point.
936 (let* ((default
937 (save-excursion
938 (skip-chars-backward "0-9")
939 (if (looking-at "[0-9]")
940 (buffer-substring-no-properties
941 (point)
942 (progn (skip-chars-forward "0-9")
943 (point))))))
944 ;; Decide if we're switching buffers.
945 (buffer
946 (if (consp current-prefix-arg)
947 (other-buffer (current-buffer) t)))
948 (buffer-prompt
949 (if buffer
950 (concat " in " (buffer-name buffer))
951 "")))
952 ;; Read the argument, offering that number (if any) as default.
953 (list (read-from-minibuffer (format (if default "Goto line%s (%s): "
954 "Goto line%s: ")
955 buffer-prompt
956 default)
957 nil nil t
958 'minibuffer-history
959 default)
960 buffer))))
961 ;; Switch to the desired buffer, one way or another.
962 (if buffer
963 (let ((window (get-buffer-window buffer)))
964 (if window (select-window window)
965 (switch-to-buffer-other-window buffer))))
966 ;; Leave mark at previous position
967 (or (region-active-p) (push-mark))
968 ;; Move to the specified line number in that buffer.
969 (save-restriction
970 (widen)
971 (goto-char (point-min))
972 (if (eq selective-display t)
973 (re-search-forward "[\n\C-m]" nil 'end (1- line))
974 (forward-line (1- line)))))
975
976 (defun count-words-region (start end)
977 "Print the number of words in the region.
978 When called interactively, the word count is printed in echo area."
979 (interactive "r")
980 (let ((count 0))
981 (save-excursion
982 (save-restriction
983 (narrow-to-region start end)
984 (goto-char (point-min))
985 (while (forward-word 1)
986 (setq count (1+ count)))))
987 (if (interactive-p)
988 (message "Region has %d words" count))
989 count))
990
991 (defun count-lines-region (start end)
992 "Print number of lines and characters in the region."
993 (interactive "r")
994 (message "Region has %d lines, %d characters"
995 (count-lines start end) (- end start)))
996
997 (defun what-line ()
998 "Print the current buffer line number and narrowed line number of point."
999 (interactive)
1000 (let ((start (point-min))
1001 (n (line-number-at-pos)))
1002 (if (= start 1)
1003 (message "Line %d" n)
1004 (save-excursion
1005 (save-restriction
1006 (widen)
1007 (message "line %d (narrowed line %d)"
1008 (+ n (line-number-at-pos start) -1) n))))))
1009
1010 (defun count-lines (start end)
1011 "Return number of lines between START and END.
1012 This is usually the number of newlines between them,
1013 but can be one more if START is not equal to END
1014 and the greater of them is not at the start of a line."
1015 (save-excursion
1016 (save-restriction
1017 (narrow-to-region start end)
1018 (goto-char (point-min))
1019 (if (eq selective-display t)
1020 (save-match-data
1021 (let ((done 0))
1022 (while (re-search-forward "[\n\C-m]" nil t 40)
1023 (setq done (+ 40 done)))
1024 (while (re-search-forward "[\n\C-m]" nil t 1)
1025 (setq done (+ 1 done)))
1026 (goto-char (point-max))
1027 (if (and (/= start end)
1028 (not (bolp)))
1029 (1+ done)
1030 done)))
1031 (- (buffer-size) (forward-line (buffer-size)))))))
1032
1033 (defun line-number-at-pos (&optional pos)
1034 "Return (narrowed) buffer line number at position POS.
1035 If POS is nil, use current buffer location.
1036 Counting starts at (point-min), so the value refers
1037 to the contents of the accessible portion of the buffer."
1038 (let ((opoint (or pos (point))) start)
1039 (save-excursion
1040 (goto-char (point-min))
1041 (setq start (point))
1042 (goto-char opoint)
1043 (forward-line 0)
1044 (1+ (count-lines start (point))))))
1045
1046 (defun what-cursor-position (&optional detail)
1047 "Print info on cursor position (on screen and within buffer).
1048 Also describe the character after point, and give its character code
1049 in octal, decimal and hex.
1050
1051 For a non-ASCII multibyte character, also give its encoding in the
1052 buffer's selected coding system if the coding system encodes the
1053 character safely. If the character is encoded into one byte, that
1054 code is shown in hex. If the character is encoded into more than one
1055 byte, just \"...\" is shown.
1056
1057 In addition, with prefix argument, show details about that character
1058 in *Help* buffer. See also the command `describe-char'."
1059 (interactive "P")
1060 (let* ((char (following-char))
1061 (beg (point-min))
1062 (end (point-max))
1063 (pos (point))
1064 (total (buffer-size))
1065 (percent (if (> total 50000)
1066 ;; Avoid overflow from multiplying by 100!
1067 (/ (+ (/ total 200) (1- pos)) (max (/ total 100) 1))
1068 (/ (+ (/ total 2) (* 100 (1- pos))) (max total 1))))
1069 (hscroll (if (= (window-hscroll) 0)
1070 ""
1071 (format " Hscroll=%d" (window-hscroll))))
1072 (col (current-column)))
1073 (if (= pos end)
1074 (if (or (/= beg 1) (/= end (1+ total)))
1075 (message "point=%d of %d (%d%%) <%d-%d> column=%d%s"
1076 pos total percent beg end col hscroll)
1077 (message "point=%d of %d (EOB) column=%d%s"
1078 pos total col hscroll))
1079 (let ((coding buffer-file-coding-system)
1080 encoded encoding-msg display-prop under-display)
1081 (if (or (not coding)
1082 (eq (coding-system-type coding) t))
1083 (setq coding (default-value 'buffer-file-coding-system)))
1084 (if (eq (char-charset char) 'eight-bit)
1085 (setq encoding-msg
1086 (format "(%d, #o%o, #x%x, raw-byte)" char char char))
1087 ;; Check if the character is displayed with some `display'
1088 ;; text property. In that case, set under-display to the
1089 ;; buffer substring covered by that property.
1090 (setq display-prop (get-text-property pos 'display))
1091 (if display-prop
1092 (let ((to (or (next-single-property-change pos 'display)
1093 (point-max))))
1094 (if (< to (+ pos 4))
1095 (setq under-display "")
1096 (setq under-display "..."
1097 to (+ pos 4)))
1098 (setq under-display
1099 (concat (buffer-substring-no-properties pos to)
1100 under-display)))
1101 (setq encoded (and (>= char 128) (encode-coding-char char coding))))
1102 (setq encoding-msg
1103 (if display-prop
1104 (if (not (stringp display-prop))
1105 (format "(%d, #o%o, #x%x, part of display \"%s\")"
1106 char char char under-display)
1107 (format "(%d, #o%o, #x%x, part of display \"%s\"->\"%s\")"
1108 char char char under-display display-prop))
1109 (if encoded
1110 (format "(%d, #o%o, #x%x, file %s)"
1111 char char char
1112 (if (> (length encoded) 1)
1113 "..."
1114 (encoded-string-description encoded coding)))
1115 (format "(%d, #o%o, #x%x)" char char char)))))
1116 (if detail
1117 ;; We show the detailed information about CHAR.
1118 (describe-char (point)))
1119 (if (or (/= beg 1) (/= end (1+ total)))
1120 (message "Char: %s %s point=%d of %d (%d%%) <%d-%d> column=%d%s"
1121 (if (< char 256)
1122 (single-key-description char)
1123 (buffer-substring-no-properties (point) (1+ (point))))
1124 encoding-msg pos total percent beg end col hscroll)
1125 (message "Char: %s %s point=%d of %d (%d%%) column=%d%s"
1126 (if enable-multibyte-characters
1127 (if (< char 128)
1128 (single-key-description char)
1129 (buffer-substring-no-properties (point) (1+ (point))))
1130 (single-key-description char))
1131 encoding-msg pos total percent col hscroll))))))
1132 \f
1133 ;; Initialize read-expression-map. It is defined at C level.
1134 (let ((m (make-sparse-keymap)))
1135 (define-key m "\M-\t" 'lisp-complete-symbol)
1136 (set-keymap-parent m minibuffer-local-map)
1137 (setq read-expression-map m))
1138
1139 (defvar read-expression-history nil)
1140
1141 (defvar minibuffer-completing-symbol nil
1142 "Non-nil means completing a Lisp symbol in the minibuffer.")
1143
1144 (defvar minibuffer-default nil
1145 "The current default value or list of default values in the minibuffer.
1146 The functions `read-from-minibuffer' and `completing-read' bind
1147 this variable locally.")
1148
1149 (defcustom eval-expression-print-level 4
1150 "Value for `print-level' while printing value in `eval-expression'.
1151 A value of nil means no limit."
1152 :group 'lisp
1153 :type '(choice (const :tag "No Limit" nil) integer)
1154 :version "21.1")
1155
1156 (defcustom eval-expression-print-length 12
1157 "Value for `print-length' while printing value in `eval-expression'.
1158 A value of nil means no limit."
1159 :group 'lisp
1160 :type '(choice (const :tag "No Limit" nil) integer)
1161 :version "21.1")
1162
1163 (defcustom eval-expression-debug-on-error t
1164 "If non-nil set `debug-on-error' to t in `eval-expression'.
1165 If nil, don't change the value of `debug-on-error'."
1166 :group 'lisp
1167 :type 'boolean
1168 :version "21.1")
1169
1170 (defun eval-expression-print-format (value)
1171 "Format VALUE as a result of evaluated expression.
1172 Return a formatted string which is displayed in the echo area
1173 in addition to the value printed by prin1 in functions which
1174 display the result of expression evaluation."
1175 (if (and (integerp value)
1176 (or (not (memq this-command '(eval-last-sexp eval-print-last-sexp)))
1177 (eq this-command last-command)
1178 (if (boundp 'edebug-active) edebug-active)))
1179 (let ((char-string
1180 (if (or (if (boundp 'edebug-active) edebug-active)
1181 (memq this-command '(eval-last-sexp eval-print-last-sexp)))
1182 (prin1-char value))))
1183 (if char-string
1184 (format " (#o%o, #x%x, %s)" value value char-string)
1185 (format " (#o%o, #x%x)" value value)))))
1186
1187 ;; We define this, rather than making `eval' interactive,
1188 ;; for the sake of completion of names like eval-region, eval-buffer.
1189 (defun eval-expression (eval-expression-arg
1190 &optional eval-expression-insert-value)
1191 "Evaluate EVAL-EXPRESSION-ARG and print value in the echo area.
1192 Value is also consed on to front of the variable `values'.
1193 Optional argument EVAL-EXPRESSION-INSERT-VALUE non-nil (interactively,
1194 with prefix argument) means insert the result into the current buffer
1195 instead of printing it in the echo area. Truncates long output
1196 according to the value of the variables `eval-expression-print-length'
1197 and `eval-expression-print-level'.
1198
1199 If `eval-expression-debug-on-error' is non-nil, which is the default,
1200 this command arranges for all errors to enter the debugger."
1201 (interactive
1202 (list (let ((minibuffer-completing-symbol t))
1203 (read-from-minibuffer "Eval: "
1204 nil read-expression-map t
1205 'read-expression-history))
1206 current-prefix-arg))
1207
1208 (if (null eval-expression-debug-on-error)
1209 (setq values (cons (eval eval-expression-arg) values))
1210 (let ((old-value (make-symbol "t")) new-value)
1211 ;; Bind debug-on-error to something unique so that we can
1212 ;; detect when evaled code changes it.
1213 (let ((debug-on-error old-value))
1214 (setq values (cons (eval eval-expression-arg) values))
1215 (setq new-value debug-on-error))
1216 ;; If evaled code has changed the value of debug-on-error,
1217 ;; propagate that change to the global binding.
1218 (unless (eq old-value new-value)
1219 (setq debug-on-error new-value))))
1220
1221 (let ((print-length eval-expression-print-length)
1222 (print-level eval-expression-print-level))
1223 (if eval-expression-insert-value
1224 (with-no-warnings
1225 (let ((standard-output (current-buffer)))
1226 (prin1 (car values))))
1227 (prog1
1228 (prin1 (car values) t)
1229 (let ((str (eval-expression-print-format (car values))))
1230 (if str (princ str t)))))))
1231
1232 (defun edit-and-eval-command (prompt command)
1233 "Prompting with PROMPT, let user edit COMMAND and eval result.
1234 COMMAND is a Lisp expression. Let user edit that expression in
1235 the minibuffer, then read and evaluate the result."
1236 (let ((command
1237 (let ((print-level nil)
1238 (minibuffer-history-sexp-flag (1+ (minibuffer-depth))))
1239 (unwind-protect
1240 (read-from-minibuffer prompt
1241 (prin1-to-string command)
1242 read-expression-map t
1243 'command-history)
1244 ;; If command was added to command-history as a string,
1245 ;; get rid of that. We want only evaluable expressions there.
1246 (if (stringp (car command-history))
1247 (setq command-history (cdr command-history)))))))
1248
1249 ;; If command to be redone does not match front of history,
1250 ;; add it to the history.
1251 (or (equal command (car command-history))
1252 (setq command-history (cons command command-history)))
1253 (eval command)))
1254
1255 (defun repeat-complex-command (arg)
1256 "Edit and re-evaluate last complex command, or ARGth from last.
1257 A complex command is one which used the minibuffer.
1258 The command is placed in the minibuffer as a Lisp form for editing.
1259 The result is executed, repeating the command as changed.
1260 If the command has been changed or is not the most recent previous
1261 command it is added to the front of the command history.
1262 You can use the minibuffer history commands \
1263 \\<minibuffer-local-map>\\[next-history-element] and \\[previous-history-element]
1264 to get different commands to edit and resubmit."
1265 (interactive "p")
1266 (let ((elt (nth (1- arg) command-history))
1267 newcmd)
1268 (if elt
1269 (progn
1270 (setq newcmd
1271 (let ((print-level nil)
1272 (minibuffer-history-position arg)
1273 (minibuffer-history-sexp-flag (1+ (minibuffer-depth))))
1274 (unwind-protect
1275 (read-from-minibuffer
1276 "Redo: " (prin1-to-string elt) read-expression-map t
1277 (cons 'command-history arg))
1278
1279 ;; If command was added to command-history as a
1280 ;; string, get rid of that. We want only
1281 ;; evaluable expressions there.
1282 (if (stringp (car command-history))
1283 (setq command-history (cdr command-history))))))
1284
1285 ;; If command to be redone does not match front of history,
1286 ;; add it to the history.
1287 (or (equal newcmd (car command-history))
1288 (setq command-history (cons newcmd command-history)))
1289 (eval newcmd))
1290 (if command-history
1291 (error "Argument %d is beyond length of command history" arg)
1292 (error "There are no previous complex commands to repeat")))))
1293
1294 (defun read-extended-command ()
1295 "Read command name to invoke in `execute-extended-command'."
1296 (minibuffer-with-setup-hook
1297 (lambda ()
1298 (set (make-local-variable 'minibuffer-default-add-function)
1299 (lambda ()
1300 ;; Get a command name at point in the original buffer
1301 ;; to propose it after M-n.
1302 (with-current-buffer (window-buffer (minibuffer-selected-window))
1303 (and (commandp (function-called-at-point))
1304 (format "%S" (function-called-at-point)))))))
1305 ;; Read a string, completing from and restricting to the set of
1306 ;; all defined commands. Don't provide any initial input.
1307 ;; Save the command read on the extended-command history list.
1308 (completing-read
1309 (concat (cond
1310 ((eq current-prefix-arg '-) "- ")
1311 ((and (consp current-prefix-arg)
1312 (eq (car current-prefix-arg) 4)) "C-u ")
1313 ((and (consp current-prefix-arg)
1314 (integerp (car current-prefix-arg)))
1315 (format "%d " (car current-prefix-arg)))
1316 ((integerp current-prefix-arg)
1317 (format "%d " current-prefix-arg)))
1318 ;; This isn't strictly correct if `execute-extended-command'
1319 ;; is bound to anything else (e.g. [menu]).
1320 ;; It could use (key-description (this-single-command-keys)),
1321 ;; but actually a prompt other than "M-x" would be confusing,
1322 ;; because "M-x" is a well-known prompt to read a command
1323 ;; and it serves as a shorthand for "Extended command: ".
1324 "M-x ")
1325 obarray 'commandp t nil 'extended-command-history)))
1326
1327 \f
1328 (defvar minibuffer-history nil
1329 "Default minibuffer history list.
1330 This is used for all minibuffer input
1331 except when an alternate history list is specified.
1332
1333 Maximum length of the history list is determined by the value
1334 of `history-length', which see.")
1335 (defvar minibuffer-history-sexp-flag nil
1336 "Control whether history list elements are expressions or strings.
1337 If the value of this variable equals current minibuffer depth,
1338 they are expressions; otherwise they are strings.
1339 \(That convention is designed to do the right thing for
1340 recursive uses of the minibuffer.)")
1341 (setq minibuffer-history-variable 'minibuffer-history)
1342 (setq minibuffer-history-position nil) ;; Defvar is in C code.
1343 (defvar minibuffer-history-search-history nil)
1344
1345 (defvar minibuffer-text-before-history nil
1346 "Text that was in this minibuffer before any history commands.
1347 This is nil if there have not yet been any history commands
1348 in this use of the minibuffer.")
1349
1350 (add-hook 'minibuffer-setup-hook 'minibuffer-history-initialize)
1351
1352 (defun minibuffer-history-initialize ()
1353 (setq minibuffer-text-before-history nil))
1354
1355 (defun minibuffer-avoid-prompt (new old)
1356 "A point-motion hook for the minibuffer, that moves point out of the prompt."
1357 (constrain-to-field nil (point-max)))
1358
1359 (defcustom minibuffer-history-case-insensitive-variables nil
1360 "Minibuffer history variables for which matching should ignore case.
1361 If a history variable is a member of this list, then the
1362 \\[previous-matching-history-element] and \\[next-matching-history-element]\
1363 commands ignore case when searching it, regardless of `case-fold-search'."
1364 :type '(repeat variable)
1365 :group 'minibuffer)
1366
1367 (defun previous-matching-history-element (regexp n)
1368 "Find the previous history element that matches REGEXP.
1369 \(Previous history elements refer to earlier actions.)
1370 With prefix argument N, search for Nth previous match.
1371 If N is negative, find the next or Nth next match.
1372 Normally, history elements are matched case-insensitively if
1373 `case-fold-search' is non-nil, but an uppercase letter in REGEXP
1374 makes the search case-sensitive.
1375 See also `minibuffer-history-case-insensitive-variables'."
1376 (interactive
1377 (let* ((enable-recursive-minibuffers t)
1378 (regexp (read-from-minibuffer "Previous element matching (regexp): "
1379 nil
1380 minibuffer-local-map
1381 nil
1382 'minibuffer-history-search-history
1383 (car minibuffer-history-search-history))))
1384 ;; Use the last regexp specified, by default, if input is empty.
1385 (list (if (string= regexp "")
1386 (if minibuffer-history-search-history
1387 (car minibuffer-history-search-history)
1388 (error "No previous history search regexp"))
1389 regexp)
1390 (prefix-numeric-value current-prefix-arg))))
1391 (unless (zerop n)
1392 (if (and (zerop minibuffer-history-position)
1393 (null minibuffer-text-before-history))
1394 (setq minibuffer-text-before-history
1395 (minibuffer-contents-no-properties)))
1396 (let ((history (symbol-value minibuffer-history-variable))
1397 (case-fold-search
1398 (if (isearch-no-upper-case-p regexp t) ; assume isearch.el is dumped
1399 ;; On some systems, ignore case for file names.
1400 (if (memq minibuffer-history-variable
1401 minibuffer-history-case-insensitive-variables)
1402 t
1403 ;; Respect the user's setting for case-fold-search:
1404 case-fold-search)
1405 nil))
1406 prevpos
1407 match-string
1408 match-offset
1409 (pos minibuffer-history-position))
1410 (while (/= n 0)
1411 (setq prevpos pos)
1412 (setq pos (min (max 1 (+ pos (if (< n 0) -1 1))) (length history)))
1413 (when (= pos prevpos)
1414 (error (if (= pos 1)
1415 "No later matching history item"
1416 "No earlier matching history item")))
1417 (setq match-string
1418 (if (eq minibuffer-history-sexp-flag (minibuffer-depth))
1419 (let ((print-level nil))
1420 (prin1-to-string (nth (1- pos) history)))
1421 (nth (1- pos) history)))
1422 (setq match-offset
1423 (if (< n 0)
1424 (and (string-match regexp match-string)
1425 (match-end 0))
1426 (and (string-match (concat ".*\\(" regexp "\\)") match-string)
1427 (match-beginning 1))))
1428 (when match-offset
1429 (setq n (+ n (if (< n 0) 1 -1)))))
1430 (setq minibuffer-history-position pos)
1431 (goto-char (point-max))
1432 (delete-minibuffer-contents)
1433 (insert match-string)
1434 (goto-char (+ (minibuffer-prompt-end) match-offset))))
1435 (if (memq (car (car command-history)) '(previous-matching-history-element
1436 next-matching-history-element))
1437 (setq command-history (cdr command-history))))
1438
1439 (defun next-matching-history-element (regexp n)
1440 "Find the next history element that matches REGEXP.
1441 \(The next history element refers to a more recent action.)
1442 With prefix argument N, search for Nth next match.
1443 If N is negative, find the previous or Nth previous match.
1444 Normally, history elements are matched case-insensitively if
1445 `case-fold-search' is non-nil, but an uppercase letter in REGEXP
1446 makes the search case-sensitive."
1447 (interactive
1448 (let* ((enable-recursive-minibuffers t)
1449 (regexp (read-from-minibuffer "Next element matching (regexp): "
1450 nil
1451 minibuffer-local-map
1452 nil
1453 'minibuffer-history-search-history
1454 (car minibuffer-history-search-history))))
1455 ;; Use the last regexp specified, by default, if input is empty.
1456 (list (if (string= regexp "")
1457 (if minibuffer-history-search-history
1458 (car minibuffer-history-search-history)
1459 (error "No previous history search regexp"))
1460 regexp)
1461 (prefix-numeric-value current-prefix-arg))))
1462 (previous-matching-history-element regexp (- n)))
1463
1464 (defvar minibuffer-temporary-goal-position nil)
1465
1466 (defvar minibuffer-default-add-function 'minibuffer-default-add-completions
1467 "Function run by `goto-history-element' before consuming default values.
1468 This is useful to dynamically add more elements to the list of default values
1469 when `goto-history-element' reaches the end of this list.
1470 Before calling this function `goto-history-element' sets the variable
1471 `minibuffer-default-add-done' to t, so it will call this function only
1472 once. In special cases, when this function needs to be called more
1473 than once, it can set `minibuffer-default-add-done' to nil explicitly,
1474 overriding the setting of this variable to t in `goto-history-element'.")
1475
1476 (defvar minibuffer-default-add-done nil
1477 "When nil, add more elements to the end of the list of default values.
1478 The value nil causes `goto-history-element' to add more elements to
1479 the list of defaults when it reaches the end of this list. It does
1480 this by calling a function defined by `minibuffer-default-add-function'.")
1481
1482 (make-variable-buffer-local 'minibuffer-default-add-done)
1483
1484 (defun minibuffer-default-add-completions ()
1485 "Return a list of all completions without the default value.
1486 This function is used to add all elements of the completion table to
1487 the end of the list of defaults just after the default value."
1488 (let ((def minibuffer-default)
1489 (all (all-completions ""
1490 minibuffer-completion-table
1491 minibuffer-completion-predicate)))
1492 (if (listp def)
1493 (append def all)
1494 (cons def (delete def all)))))
1495
1496 (defun goto-history-element (nabs)
1497 "Puts element of the minibuffer history in the minibuffer.
1498 The argument NABS specifies the absolute history position."
1499 (interactive "p")
1500 (when (and (not minibuffer-default-add-done)
1501 (functionp minibuffer-default-add-function)
1502 (< nabs (- (if (listp minibuffer-default)
1503 (length minibuffer-default)
1504 1))))
1505 (setq minibuffer-default-add-done t
1506 minibuffer-default (funcall minibuffer-default-add-function)))
1507 (let ((minimum (if minibuffer-default
1508 (- (if (listp minibuffer-default)
1509 (length minibuffer-default)
1510 1))
1511 0))
1512 elt minibuffer-returned-to-present)
1513 (if (and (zerop minibuffer-history-position)
1514 (null minibuffer-text-before-history))
1515 (setq minibuffer-text-before-history
1516 (minibuffer-contents-no-properties)))
1517 (if (< nabs minimum)
1518 (if minibuffer-default
1519 (error "End of defaults; no next item")
1520 (error "End of history; no default available")))
1521 (if (> nabs (length (symbol-value minibuffer-history-variable)))
1522 (error "Beginning of history; no preceding item"))
1523 (unless (memq last-command '(next-history-element
1524 previous-history-element))
1525 (let ((prompt-end (minibuffer-prompt-end)))
1526 (set (make-local-variable 'minibuffer-temporary-goal-position)
1527 (cond ((<= (point) prompt-end) prompt-end)
1528 ((eobp) nil)
1529 (t (point))))))
1530 (goto-char (point-max))
1531 (delete-minibuffer-contents)
1532 (setq minibuffer-history-position nabs)
1533 (cond ((< nabs 0)
1534 (setq elt (if (listp minibuffer-default)
1535 (nth (1- (abs nabs)) minibuffer-default)
1536 minibuffer-default)))
1537 ((= nabs 0)
1538 (setq elt (or minibuffer-text-before-history ""))
1539 (setq minibuffer-returned-to-present t)
1540 (setq minibuffer-text-before-history nil))
1541 (t (setq elt (nth (1- minibuffer-history-position)
1542 (symbol-value minibuffer-history-variable)))))
1543 (insert
1544 (if (and (eq minibuffer-history-sexp-flag (minibuffer-depth))
1545 (not minibuffer-returned-to-present))
1546 (let ((print-level nil))
1547 (prin1-to-string elt))
1548 elt))
1549 (goto-char (or minibuffer-temporary-goal-position (point-max)))))
1550
1551 (defun next-history-element (n)
1552 "Puts next element of the minibuffer history in the minibuffer.
1553 With argument N, it uses the Nth following element."
1554 (interactive "p")
1555 (or (zerop n)
1556 (goto-history-element (- minibuffer-history-position n))))
1557
1558 (defun previous-history-element (n)
1559 "Puts previous element of the minibuffer history in the minibuffer.
1560 With argument N, it uses the Nth previous element."
1561 (interactive "p")
1562 (or (zerop n)
1563 (goto-history-element (+ minibuffer-history-position n))))
1564
1565 (defun next-complete-history-element (n)
1566 "Get next history element which completes the minibuffer before the point.
1567 The contents of the minibuffer after the point are deleted, and replaced
1568 by the new completion."
1569 (interactive "p")
1570 (let ((point-at-start (point)))
1571 (next-matching-history-element
1572 (concat
1573 "^" (regexp-quote (buffer-substring (minibuffer-prompt-end) (point))))
1574 n)
1575 ;; next-matching-history-element always puts us at (point-min).
1576 ;; Move to the position we were at before changing the buffer contents.
1577 ;; This is still sensical, because the text before point has not changed.
1578 (goto-char point-at-start)))
1579
1580 (defun previous-complete-history-element (n)
1581 "\
1582 Get previous history element which completes the minibuffer before the point.
1583 The contents of the minibuffer after the point are deleted, and replaced
1584 by the new completion."
1585 (interactive "p")
1586 (next-complete-history-element (- n)))
1587
1588 ;; For compatibility with the old subr of the same name.
1589 (defun minibuffer-prompt-width ()
1590 "Return the display width of the minibuffer prompt.
1591 Return 0 if current buffer is not a minibuffer."
1592 ;; Return the width of everything before the field at the end of
1593 ;; the buffer; this should be 0 for normal buffers.
1594 (1- (minibuffer-prompt-end)))
1595 \f
1596 ;; isearch minibuffer history
1597 (add-hook 'minibuffer-setup-hook 'minibuffer-history-isearch-setup)
1598
1599 (defvar minibuffer-history-isearch-message-overlay)
1600 (make-variable-buffer-local 'minibuffer-history-isearch-message-overlay)
1601
1602 (defun minibuffer-history-isearch-setup ()
1603 "Set up a minibuffer for using isearch to search the minibuffer history.
1604 Intended to be added to `minibuffer-setup-hook'."
1605 (set (make-local-variable 'isearch-search-fun-function)
1606 'minibuffer-history-isearch-search)
1607 (set (make-local-variable 'isearch-message-function)
1608 'minibuffer-history-isearch-message)
1609 (set (make-local-variable 'isearch-wrap-function)
1610 'minibuffer-history-isearch-wrap)
1611 (set (make-local-variable 'isearch-push-state-function)
1612 'minibuffer-history-isearch-push-state)
1613 (add-hook 'isearch-mode-end-hook 'minibuffer-history-isearch-end nil t))
1614
1615 (defun minibuffer-history-isearch-end ()
1616 "Clean up the minibuffer after terminating isearch in the minibuffer."
1617 (if minibuffer-history-isearch-message-overlay
1618 (delete-overlay minibuffer-history-isearch-message-overlay)))
1619
1620 (defun minibuffer-history-isearch-search ()
1621 "Return the proper search function, for isearch in minibuffer history."
1622 (cond
1623 (isearch-word
1624 (if isearch-forward 'word-search-forward 'word-search-backward))
1625 (t
1626 (lambda (string bound noerror)
1627 (let ((search-fun
1628 ;; Use standard functions to search within minibuffer text
1629 (cond
1630 (isearch-regexp
1631 (if isearch-forward 're-search-forward 're-search-backward))
1632 (t
1633 (if isearch-forward 'search-forward 'search-backward))))
1634 found)
1635 ;; Avoid lazy-highlighting matches in the minibuffer prompt when
1636 ;; searching forward. Lazy-highlight calls this lambda with the
1637 ;; bound arg, so skip the minibuffer prompt.
1638 (if (and bound isearch-forward (< (point) (minibuffer-prompt-end)))
1639 (goto-char (minibuffer-prompt-end)))
1640 (or
1641 ;; 1. First try searching in the initial minibuffer text
1642 (funcall search-fun string
1643 (if isearch-forward bound (minibuffer-prompt-end))
1644 noerror)
1645 ;; 2. If the above search fails, start putting next/prev history
1646 ;; elements in the minibuffer successively, and search the string
1647 ;; in them. Do this only when bound is nil (i.e. not while
1648 ;; lazy-highlighting search strings in the current minibuffer text).
1649 (unless bound
1650 (condition-case nil
1651 (progn
1652 (while (not found)
1653 (cond (isearch-forward
1654 (next-history-element 1)
1655 (goto-char (minibuffer-prompt-end)))
1656 (t
1657 (previous-history-element 1)
1658 (goto-char (point-max))))
1659 (setq isearch-barrier (point) isearch-opoint (point))
1660 ;; After putting the next/prev history element, search
1661 ;; the string in them again, until next-history-element
1662 ;; or previous-history-element raises an error at the
1663 ;; beginning/end of history.
1664 (setq found (funcall search-fun string
1665 (unless isearch-forward
1666 ;; For backward search, don't search
1667 ;; in the minibuffer prompt
1668 (minibuffer-prompt-end))
1669 noerror)))
1670 ;; Return point of the new search result
1671 (point))
1672 ;; Return nil when next(prev)-history-element fails
1673 (error nil)))))))))
1674
1675 (defun minibuffer-history-isearch-message (&optional c-q-hack ellipsis)
1676 "Display the minibuffer history search prompt.
1677 If there are no search errors, this function displays an overlay with
1678 the isearch prompt which replaces the original minibuffer prompt.
1679 Otherwise, it displays the standard isearch message returned from
1680 `isearch-message'."
1681 (if (not (and (minibufferp) isearch-success (not isearch-error)))
1682 ;; Use standard function `isearch-message' when not in the minibuffer,
1683 ;; or search fails, or has an error (like incomplete regexp).
1684 ;; This function overwrites minibuffer text with isearch message,
1685 ;; so it's possible to see what is wrong in the search string.
1686 (isearch-message c-q-hack ellipsis)
1687 ;; Otherwise, put the overlay with the standard isearch prompt over
1688 ;; the initial minibuffer prompt.
1689 (if (overlayp minibuffer-history-isearch-message-overlay)
1690 (move-overlay minibuffer-history-isearch-message-overlay
1691 (point-min) (minibuffer-prompt-end))
1692 (setq minibuffer-history-isearch-message-overlay
1693 (make-overlay (point-min) (minibuffer-prompt-end)))
1694 (overlay-put minibuffer-history-isearch-message-overlay 'evaporate t))
1695 (overlay-put minibuffer-history-isearch-message-overlay
1696 'display (isearch-message-prefix c-q-hack ellipsis))
1697 ;; And clear any previous isearch message.
1698 (message "")))
1699
1700 (defun minibuffer-history-isearch-wrap ()
1701 "Wrap the minibuffer history search when search fails.
1702 Move point to the first history element for a forward search,
1703 or to the last history element for a backward search."
1704 (unless isearch-word
1705 ;; When `minibuffer-history-isearch-search' fails on reaching the
1706 ;; beginning/end of the history, wrap the search to the first/last
1707 ;; minibuffer history element.
1708 (if isearch-forward
1709 (goto-history-element (length (symbol-value minibuffer-history-variable)))
1710 (goto-history-element 0))
1711 (setq isearch-success t))
1712 (goto-char (if isearch-forward (minibuffer-prompt-end) (point-max))))
1713
1714 (defun minibuffer-history-isearch-push-state ()
1715 "Save a function restoring the state of minibuffer history search.
1716 Save `minibuffer-history-position' to the additional state parameter
1717 in the search status stack."
1718 `(lambda (cmd)
1719 (minibuffer-history-isearch-pop-state cmd ,minibuffer-history-position)))
1720
1721 (defun minibuffer-history-isearch-pop-state (cmd hist-pos)
1722 "Restore the minibuffer history search state.
1723 Go to the history element by the absolute history position HIST-POS."
1724 (goto-history-element hist-pos))
1725
1726 \f
1727 ;Put this on C-x u, so we can force that rather than C-_ into startup msg
1728 (define-obsolete-function-alias 'advertised-undo 'undo "23.2")
1729
1730 (defconst undo-equiv-table (make-hash-table :test 'eq :weakness t)
1731 "Table mapping redo records to the corresponding undo one.
1732 A redo record for undo-in-region maps to t.
1733 A redo record for ordinary undo maps to the following (earlier) undo.")
1734
1735 (defvar undo-in-region nil
1736 "Non-nil if `pending-undo-list' is not just a tail of `buffer-undo-list'.")
1737
1738 (defvar undo-no-redo nil
1739 "If t, `undo' doesn't go through redo entries.")
1740
1741 (defvar pending-undo-list nil
1742 "Within a run of consecutive undo commands, list remaining to be undone.
1743 If t, we undid all the way to the end of it.")
1744
1745 (defun undo (&optional arg)
1746 "Undo some previous changes.
1747 Repeat this command to undo more changes.
1748 A numeric ARG serves as a repeat count.
1749
1750 In Transient Mark mode when the mark is active, only undo changes within
1751 the current region. Similarly, when not in Transient Mark mode, just \\[universal-argument]
1752 as an argument limits undo to changes within the current region."
1753 (interactive "*P")
1754 ;; Make last-command indicate for the next command that this was an undo.
1755 ;; That way, another undo will undo more.
1756 ;; If we get to the end of the undo history and get an error,
1757 ;; another undo command will find the undo history empty
1758 ;; and will get another error. To begin undoing the undos,
1759 ;; you must type some other command.
1760 (let ((modified (buffer-modified-p))
1761 (recent-save (recent-auto-save-p))
1762 message)
1763 ;; If we get an error in undo-start,
1764 ;; the next command should not be a "consecutive undo".
1765 ;; So set `this-command' to something other than `undo'.
1766 (setq this-command 'undo-start)
1767
1768 (unless (and (eq last-command 'undo)
1769 (or (eq pending-undo-list t)
1770 ;; If something (a timer or filter?) changed the buffer
1771 ;; since the previous command, don't continue the undo seq.
1772 (let ((list buffer-undo-list))
1773 (while (eq (car list) nil)
1774 (setq list (cdr list)))
1775 ;; If the last undo record made was made by undo
1776 ;; it shows nothing else happened in between.
1777 (gethash list undo-equiv-table))))
1778 (setq undo-in-region
1779 (or (region-active-p) (and arg (not (numberp arg)))))
1780 (if undo-in-region
1781 (undo-start (region-beginning) (region-end))
1782 (undo-start))
1783 ;; get rid of initial undo boundary
1784 (undo-more 1))
1785 ;; If we got this far, the next command should be a consecutive undo.
1786 (setq this-command 'undo)
1787 ;; Check to see whether we're hitting a redo record, and if
1788 ;; so, ask the user whether she wants to skip the redo/undo pair.
1789 (let ((equiv (gethash pending-undo-list undo-equiv-table)))
1790 (or (eq (selected-window) (minibuffer-window))
1791 (setq message (if undo-in-region
1792 (if equiv "Redo in region!" "Undo in region!")
1793 (if equiv "Redo!" "Undo!"))))
1794 (when (and (consp equiv) undo-no-redo)
1795 ;; The equiv entry might point to another redo record if we have done
1796 ;; undo-redo-undo-redo-... so skip to the very last equiv.
1797 (while (let ((next (gethash equiv undo-equiv-table)))
1798 (if next (setq equiv next))))
1799 (setq pending-undo-list equiv)))
1800 (undo-more
1801 (if (numberp arg)
1802 (prefix-numeric-value arg)
1803 1))
1804 ;; Record the fact that the just-generated undo records come from an
1805 ;; undo operation--that is, they are redo records.
1806 ;; In the ordinary case (not within a region), map the redo
1807 ;; record to the following undos.
1808 ;; I don't know how to do that in the undo-in-region case.
1809 (let ((list buffer-undo-list))
1810 ;; Strip any leading undo boundaries there might be, like we do
1811 ;; above when checking.
1812 (while (eq (car list) nil)
1813 (setq list (cdr list)))
1814 (puthash list (if undo-in-region t pending-undo-list)
1815 undo-equiv-table))
1816 ;; Don't specify a position in the undo record for the undo command.
1817 ;; Instead, undoing this should move point to where the change is.
1818 (let ((tail buffer-undo-list)
1819 (prev nil))
1820 (while (car tail)
1821 (when (integerp (car tail))
1822 (let ((pos (car tail)))
1823 (if prev
1824 (setcdr prev (cdr tail))
1825 (setq buffer-undo-list (cdr tail)))
1826 (setq tail (cdr tail))
1827 (while (car tail)
1828 (if (eq pos (car tail))
1829 (if prev
1830 (setcdr prev (cdr tail))
1831 (setq buffer-undo-list (cdr tail)))
1832 (setq prev tail))
1833 (setq tail (cdr tail)))
1834 (setq tail nil)))
1835 (setq prev tail tail (cdr tail))))
1836 ;; Record what the current undo list says,
1837 ;; so the next command can tell if the buffer was modified in between.
1838 (and modified (not (buffer-modified-p))
1839 (delete-auto-save-file-if-necessary recent-save))
1840 ;; Display a message announcing success.
1841 (if message
1842 (message "%s" message))))
1843
1844 (defun buffer-disable-undo (&optional buffer)
1845 "Make BUFFER stop keeping undo information.
1846 No argument or nil as argument means do this for the current buffer."
1847 (interactive)
1848 (with-current-buffer (if buffer (get-buffer buffer) (current-buffer))
1849 (setq buffer-undo-list t)))
1850
1851 (defun undo-only (&optional arg)
1852 "Undo some previous changes.
1853 Repeat this command to undo more changes.
1854 A numeric ARG serves as a repeat count.
1855 Contrary to `undo', this will not redo a previous undo."
1856 (interactive "*p")
1857 (let ((undo-no-redo t)) (undo arg)))
1858
1859 (defvar undo-in-progress nil
1860 "Non-nil while performing an undo.
1861 Some change-hooks test this variable to do something different.")
1862
1863 (defun undo-more (n)
1864 "Undo back N undo-boundaries beyond what was already undone recently.
1865 Call `undo-start' to get ready to undo recent changes,
1866 then call `undo-more' one or more times to undo them."
1867 (or (listp pending-undo-list)
1868 (error (concat "No further undo information"
1869 (and undo-in-region " for region"))))
1870 (let ((undo-in-progress t))
1871 ;; Note: The following, while pulling elements off
1872 ;; `pending-undo-list' will call primitive change functions which
1873 ;; will push more elements onto `buffer-undo-list'.
1874 (setq pending-undo-list (primitive-undo n pending-undo-list))
1875 (if (null pending-undo-list)
1876 (setq pending-undo-list t))))
1877
1878 ;; Deep copy of a list
1879 (defun undo-copy-list (list)
1880 "Make a copy of undo list LIST."
1881 (mapcar 'undo-copy-list-1 list))
1882
1883 (defun undo-copy-list-1 (elt)
1884 (if (consp elt)
1885 (cons (car elt) (undo-copy-list-1 (cdr elt)))
1886 elt))
1887
1888 (defun undo-start (&optional beg end)
1889 "Set `pending-undo-list' to the front of the undo list.
1890 The next call to `undo-more' will undo the most recently made change.
1891 If BEG and END are specified, then only undo elements
1892 that apply to text between BEG and END are used; other undo elements
1893 are ignored. If BEG and END are nil, all undo elements are used."
1894 (if (eq buffer-undo-list t)
1895 (error "No undo information in this buffer"))
1896 (setq pending-undo-list
1897 (if (and beg end (not (= beg end)))
1898 (undo-make-selective-list (min beg end) (max beg end))
1899 buffer-undo-list)))
1900
1901 (defvar undo-adjusted-markers)
1902
1903 (defun undo-make-selective-list (start end)
1904 "Return a list of undo elements for the region START to END.
1905 The elements come from `buffer-undo-list', but we keep only
1906 the elements inside this region, and discard those outside this region.
1907 If we find an element that crosses an edge of this region,
1908 we stop and ignore all further elements."
1909 (let ((undo-list-copy (undo-copy-list buffer-undo-list))
1910 (undo-list (list nil))
1911 undo-adjusted-markers
1912 some-rejected
1913 undo-elt undo-elt temp-undo-list delta)
1914 (while undo-list-copy
1915 (setq undo-elt (car undo-list-copy))
1916 (let ((keep-this
1917 (cond ((and (consp undo-elt) (eq (car undo-elt) t))
1918 ;; This is a "was unmodified" element.
1919 ;; Keep it if we have kept everything thus far.
1920 (not some-rejected))
1921 (t
1922 (undo-elt-in-region undo-elt start end)))))
1923 (if keep-this
1924 (progn
1925 (setq end (+ end (cdr (undo-delta undo-elt))))
1926 ;; Don't put two nils together in the list
1927 (if (not (and (eq (car undo-list) nil)
1928 (eq undo-elt nil)))
1929 (setq undo-list (cons undo-elt undo-list))))
1930 (if (undo-elt-crosses-region undo-elt start end)
1931 (setq undo-list-copy nil)
1932 (setq some-rejected t)
1933 (setq temp-undo-list (cdr undo-list-copy))
1934 (setq delta (undo-delta undo-elt))
1935
1936 (when (/= (cdr delta) 0)
1937 (let ((position (car delta))
1938 (offset (cdr delta)))
1939
1940 ;; Loop down the earlier events adjusting their buffer
1941 ;; positions to reflect the fact that a change to the buffer
1942 ;; isn't being undone. We only need to process those element
1943 ;; types which undo-elt-in-region will return as being in
1944 ;; the region since only those types can ever get into the
1945 ;; output
1946
1947 (while temp-undo-list
1948 (setq undo-elt (car temp-undo-list))
1949 (cond ((integerp undo-elt)
1950 (if (>= undo-elt position)
1951 (setcar temp-undo-list (- undo-elt offset))))
1952 ((atom undo-elt) nil)
1953 ((stringp (car undo-elt))
1954 ;; (TEXT . POSITION)
1955 (let ((text-pos (abs (cdr undo-elt)))
1956 (point-at-end (< (cdr undo-elt) 0 )))
1957 (if (>= text-pos position)
1958 (setcdr undo-elt (* (if point-at-end -1 1)
1959 (- text-pos offset))))))
1960 ((integerp (car undo-elt))
1961 ;; (BEGIN . END)
1962 (when (>= (car undo-elt) position)
1963 (setcar undo-elt (- (car undo-elt) offset))
1964 (setcdr undo-elt (- (cdr undo-elt) offset))))
1965 ((null (car undo-elt))
1966 ;; (nil PROPERTY VALUE BEG . END)
1967 (let ((tail (nthcdr 3 undo-elt)))
1968 (when (>= (car tail) position)
1969 (setcar tail (- (car tail) offset))
1970 (setcdr tail (- (cdr tail) offset))))))
1971 (setq temp-undo-list (cdr temp-undo-list))))))))
1972 (setq undo-list-copy (cdr undo-list-copy)))
1973 (nreverse undo-list)))
1974
1975 (defun undo-elt-in-region (undo-elt start end)
1976 "Determine whether UNDO-ELT falls inside the region START ... END.
1977 If it crosses the edge, we return nil."
1978 (cond ((integerp undo-elt)
1979 (and (>= undo-elt start)
1980 (<= undo-elt end)))
1981 ((eq undo-elt nil)
1982 t)
1983 ((atom undo-elt)
1984 nil)
1985 ((stringp (car undo-elt))
1986 ;; (TEXT . POSITION)
1987 (and (>= (abs (cdr undo-elt)) start)
1988 (< (abs (cdr undo-elt)) end)))
1989 ((and (consp undo-elt) (markerp (car undo-elt)))
1990 ;; This is a marker-adjustment element (MARKER . ADJUSTMENT).
1991 ;; See if MARKER is inside the region.
1992 (let ((alist-elt (assq (car undo-elt) undo-adjusted-markers)))
1993 (unless alist-elt
1994 (setq alist-elt (cons (car undo-elt)
1995 (marker-position (car undo-elt))))
1996 (setq undo-adjusted-markers
1997 (cons alist-elt undo-adjusted-markers)))
1998 (and (cdr alist-elt)
1999 (>= (cdr alist-elt) start)
2000 (<= (cdr alist-elt) end))))
2001 ((null (car undo-elt))
2002 ;; (nil PROPERTY VALUE BEG . END)
2003 (let ((tail (nthcdr 3 undo-elt)))
2004 (and (>= (car tail) start)
2005 (<= (cdr tail) end))))
2006 ((integerp (car undo-elt))
2007 ;; (BEGIN . END)
2008 (and (>= (car undo-elt) start)
2009 (<= (cdr undo-elt) end)))))
2010
2011 (defun undo-elt-crosses-region (undo-elt start end)
2012 "Test whether UNDO-ELT crosses one edge of that region START ... END.
2013 This assumes we have already decided that UNDO-ELT
2014 is not *inside* the region START...END."
2015 (cond ((atom undo-elt) nil)
2016 ((null (car undo-elt))
2017 ;; (nil PROPERTY VALUE BEG . END)
2018 (let ((tail (nthcdr 3 undo-elt)))
2019 (and (< (car tail) end)
2020 (> (cdr tail) start))))
2021 ((integerp (car undo-elt))
2022 ;; (BEGIN . END)
2023 (and (< (car undo-elt) end)
2024 (> (cdr undo-elt) start)))))
2025
2026 ;; Return the first affected buffer position and the delta for an undo element
2027 ;; delta is defined as the change in subsequent buffer positions if we *did*
2028 ;; the undo.
2029 (defun undo-delta (undo-elt)
2030 (if (consp undo-elt)
2031 (cond ((stringp (car undo-elt))
2032 ;; (TEXT . POSITION)
2033 (cons (abs (cdr undo-elt)) (length (car undo-elt))))
2034 ((integerp (car undo-elt))
2035 ;; (BEGIN . END)
2036 (cons (car undo-elt) (- (car undo-elt) (cdr undo-elt))))
2037 (t
2038 '(0 . 0)))
2039 '(0 . 0)))
2040
2041 (defcustom undo-ask-before-discard nil
2042 "If non-nil ask about discarding undo info for the current command.
2043 Normally, Emacs discards the undo info for the current command if
2044 it exceeds `undo-outer-limit'. But if you set this option
2045 non-nil, it asks in the echo area whether to discard the info.
2046 If you answer no, there is a slight risk that Emacs might crash, so
2047 only do it if you really want to undo the command.
2048
2049 This option is mainly intended for debugging. You have to be
2050 careful if you use it for other purposes. Garbage collection is
2051 inhibited while the question is asked, meaning that Emacs might
2052 leak memory. So you should make sure that you do not wait
2053 excessively long before answering the question."
2054 :type 'boolean
2055 :group 'undo
2056 :version "22.1")
2057
2058 (defvar undo-extra-outer-limit nil
2059 "If non-nil, an extra level of size that's ok in an undo item.
2060 We don't ask the user about truncating the undo list until the
2061 current item gets bigger than this amount.
2062
2063 This variable only matters if `undo-ask-before-discard' is non-nil.")
2064 (make-variable-buffer-local 'undo-extra-outer-limit)
2065
2066 ;; When the first undo batch in an undo list is longer than
2067 ;; undo-outer-limit, this function gets called to warn the user that
2068 ;; the undo info for the current command was discarded. Garbage
2069 ;; collection is inhibited around the call, so it had better not do a
2070 ;; lot of consing.
2071 (setq undo-outer-limit-function 'undo-outer-limit-truncate)
2072 (defun undo-outer-limit-truncate (size)
2073 (if undo-ask-before-discard
2074 (when (or (null undo-extra-outer-limit)
2075 (> size undo-extra-outer-limit))
2076 ;; Don't ask the question again unless it gets even bigger.
2077 ;; This applies, in particular, if the user quits from the question.
2078 ;; Such a quit quits out of GC, but something else will call GC
2079 ;; again momentarily. It will call this function again,
2080 ;; but we don't want to ask the question again.
2081 (setq undo-extra-outer-limit (+ size 50000))
2082 (if (let (use-dialog-box track-mouse executing-kbd-macro )
2083 (yes-or-no-p (format "Buffer `%s' undo info is %d bytes long; discard it? "
2084 (buffer-name) size)))
2085 (progn (setq buffer-undo-list nil)
2086 (setq undo-extra-outer-limit nil)
2087 t)
2088 nil))
2089 (display-warning '(undo discard-info)
2090 (concat
2091 (format "Buffer `%s' undo info was %d bytes long.\n"
2092 (buffer-name) size)
2093 "The undo info was discarded because it exceeded \
2094 `undo-outer-limit'.
2095
2096 This is normal if you executed a command that made a huge change
2097 to the buffer. In that case, to prevent similar problems in the
2098 future, set `undo-outer-limit' to a value that is large enough to
2099 cover the maximum size of normal changes you expect a single
2100 command to make, but not so large that it might exceed the
2101 maximum memory allotted to Emacs.
2102
2103 If you did not execute any such command, the situation is
2104 probably due to a bug and you should report it.
2105
2106 You can disable the popping up of this buffer by adding the entry
2107 \(undo discard-info) to the user option `warning-suppress-types',
2108 which is defined in the `warnings' library.\n")
2109 :warning)
2110 (setq buffer-undo-list nil)
2111 t))
2112 \f
2113 (defvar shell-command-history nil
2114 "History list for some commands that read shell commands.
2115
2116 Maximum length of the history list is determined by the value
2117 of `history-length', which see.")
2118
2119 (defvar shell-command-switch (purecopy "-c")
2120 "Switch used to have the shell execute its command line argument.")
2121
2122 (defvar shell-command-default-error-buffer nil
2123 "*Buffer name for `shell-command' and `shell-command-on-region' error output.
2124 This buffer is used when `shell-command' or `shell-command-on-region'
2125 is run interactively. A value of nil means that output to stderr and
2126 stdout will be intermixed in the output stream.")
2127
2128 (declare-function mailcap-file-default-commands "mailcap" (files))
2129 (declare-function dired-get-filename "dired" (&optional localp no-error-if-not-filep))
2130
2131 (defun minibuffer-default-add-shell-commands ()
2132 "Return a list of all commands associated with the current file.
2133 This function is used to add all related commands retrieved by `mailcap'
2134 to the end of the list of defaults just after the default value."
2135 (interactive)
2136 (let* ((filename (if (listp minibuffer-default)
2137 (car minibuffer-default)
2138 minibuffer-default))
2139 (commands (and filename (require 'mailcap nil t)
2140 (mailcap-file-default-commands (list filename)))))
2141 (setq commands (mapcar (lambda (command)
2142 (concat command " " filename))
2143 commands))
2144 (if (listp minibuffer-default)
2145 (append minibuffer-default commands)
2146 (cons minibuffer-default commands))))
2147
2148 (defvar shell-delimiter-argument-list)
2149 (defvar shell-file-name-chars)
2150 (defvar shell-file-name-quote-list)
2151
2152 (defun minibuffer-complete-shell-command ()
2153 "Dynamically complete shell command at point."
2154 (interactive)
2155 (require 'shell)
2156 (let ((comint-delimiter-argument-list shell-delimiter-argument-list)
2157 (comint-file-name-chars shell-file-name-chars)
2158 (comint-file-name-quote-list shell-file-name-quote-list))
2159 (run-hook-with-args-until-success 'shell-dynamic-complete-functions)))
2160
2161 (defvar minibuffer-local-shell-command-map
2162 (let ((map (make-sparse-keymap)))
2163 (set-keymap-parent map minibuffer-local-map)
2164 (define-key map "\t" 'minibuffer-complete-shell-command)
2165 map)
2166 "Keymap used for completing shell commands in minibuffer.")
2167
2168 (defun read-shell-command (prompt &optional initial-contents hist &rest args)
2169 "Read a shell command from the minibuffer.
2170 The arguments are the same as the ones of `read-from-minibuffer',
2171 except READ and KEYMAP are missing and HIST defaults
2172 to `shell-command-history'."
2173 (minibuffer-with-setup-hook
2174 (lambda ()
2175 (set (make-local-variable 'minibuffer-default-add-function)
2176 'minibuffer-default-add-shell-commands))
2177 (apply 'read-from-minibuffer prompt initial-contents
2178 minibuffer-local-shell-command-map
2179 nil
2180 (or hist 'shell-command-history)
2181 args)))
2182
2183 (defun async-shell-command (command &optional output-buffer error-buffer)
2184 "Execute string COMMAND asynchronously in background.
2185
2186 Like `shell-command' but if COMMAND doesn't end in ampersand, adds `&'
2187 surrounded by whitespace and executes the command asynchronously.
2188 The output appears in the buffer `*Async Shell Command*'.
2189
2190 In Elisp, you will often be better served by calling `start-process'
2191 directly, since it offers more control and does not impose the use of a
2192 shell (with its need to quote arguments)."
2193 (interactive
2194 (list
2195 (read-shell-command "Async shell command: " nil nil
2196 (and buffer-file-name
2197 (file-relative-name buffer-file-name)))
2198 current-prefix-arg
2199 shell-command-default-error-buffer))
2200 (unless (string-match "&[ \t]*\\'" command)
2201 (setq command (concat command " &")))
2202 (shell-command command output-buffer error-buffer))
2203
2204 (defun shell-command (command &optional output-buffer error-buffer)
2205 "Execute string COMMAND in inferior shell; display output, if any.
2206 With prefix argument, insert the COMMAND's output at point.
2207
2208 If COMMAND ends in ampersand, execute it asynchronously.
2209 The output appears in the buffer `*Async Shell Command*'.
2210 That buffer is in shell mode.
2211
2212 Otherwise, COMMAND is executed synchronously. The output appears in
2213 the buffer `*Shell Command Output*'. If the output is short enough to
2214 display in the echo area (which is determined by the variables
2215 `resize-mini-windows' and `max-mini-window-height'), it is shown
2216 there, but it is nonetheless available in buffer `*Shell Command
2217 Output*' even though that buffer is not automatically displayed.
2218
2219 To specify a coding system for converting non-ASCII characters
2220 in the shell command output, use \\[universal-coding-system-argument] \
2221 before this command.
2222
2223 Noninteractive callers can specify coding systems by binding
2224 `coding-system-for-read' and `coding-system-for-write'.
2225
2226 The optional second argument OUTPUT-BUFFER, if non-nil,
2227 says to put the output in some other buffer.
2228 If OUTPUT-BUFFER is a buffer or buffer name, put the output there.
2229 If OUTPUT-BUFFER is not a buffer and not nil,
2230 insert output in current buffer. (This cannot be done asynchronously.)
2231 In either case, the buffer is first erased, and the output is
2232 inserted after point (leaving mark after it).
2233
2234 If the command terminates without error, but generates output,
2235 and you did not specify \"insert it in the current buffer\",
2236 the output can be displayed in the echo area or in its buffer.
2237 If the output is short enough to display in the echo area
2238 \(determined by the variable `max-mini-window-height' if
2239 `resize-mini-windows' is non-nil), it is shown there.
2240 Otherwise,the buffer containing the output is displayed.
2241
2242 If there is output and an error, and you did not specify \"insert it
2243 in the current buffer\", a message about the error goes at the end
2244 of the output.
2245
2246 If there is no output, or if output is inserted in the current buffer,
2247 then `*Shell Command Output*' is deleted.
2248
2249 If the optional third argument ERROR-BUFFER is non-nil, it is a buffer
2250 or buffer name to which to direct the command's standard error output.
2251 If it is nil, error output is mingled with regular output.
2252 In an interactive call, the variable `shell-command-default-error-buffer'
2253 specifies the value of ERROR-BUFFER.
2254
2255 In Elisp, you will often be better served by calling `call-process' or
2256 `start-process' directly, since it offers more control and does not impose
2257 the use of a shell (with its need to quote arguments)."
2258
2259 (interactive
2260 (list
2261 (read-shell-command "Shell command: " nil nil
2262 (let ((filename
2263 (cond
2264 (buffer-file-name)
2265 ((eq major-mode 'dired-mode)
2266 (dired-get-filename nil t)))))
2267 (and filename (file-relative-name filename))))
2268 current-prefix-arg
2269 shell-command-default-error-buffer))
2270 ;; Look for a handler in case default-directory is a remote file name.
2271 (let ((handler
2272 (find-file-name-handler (directory-file-name default-directory)
2273 'shell-command)))
2274 (if handler
2275 (funcall handler 'shell-command command output-buffer error-buffer)
2276 (if (and output-buffer
2277 (not (or (bufferp output-buffer) (stringp output-buffer))))
2278 ;; Output goes in current buffer.
2279 (let ((error-file
2280 (if error-buffer
2281 (make-temp-file
2282 (expand-file-name "scor"
2283 (or small-temporary-file-directory
2284 temporary-file-directory)))
2285 nil)))
2286 (barf-if-buffer-read-only)
2287 (push-mark nil t)
2288 ;; We do not use -f for csh; we will not support broken use of
2289 ;; .cshrcs. Even the BSD csh manual says to use
2290 ;; "if ($?prompt) exit" before things which are not useful
2291 ;; non-interactively. Besides, if someone wants their other
2292 ;; aliases for shell commands then they can still have them.
2293 (call-process shell-file-name nil
2294 (if error-file
2295 (list t error-file)
2296 t)
2297 nil shell-command-switch command)
2298 (when (and error-file (file-exists-p error-file))
2299 (if (< 0 (nth 7 (file-attributes error-file)))
2300 (with-current-buffer (get-buffer-create error-buffer)
2301 (let ((pos-from-end (- (point-max) (point))))
2302 (or (bobp)
2303 (insert "\f\n"))
2304 ;; Do no formatting while reading error file,
2305 ;; because that can run a shell command, and we
2306 ;; don't want that to cause an infinite recursion.
2307 (format-insert-file error-file nil)
2308 ;; Put point after the inserted errors.
2309 (goto-char (- (point-max) pos-from-end)))
2310 (display-buffer (current-buffer))))
2311 (delete-file error-file))
2312 ;; This is like exchange-point-and-mark, but doesn't
2313 ;; activate the mark. It is cleaner to avoid activation,
2314 ;; even though the command loop would deactivate the mark
2315 ;; because we inserted text.
2316 (goto-char (prog1 (mark t)
2317 (set-marker (mark-marker) (point)
2318 (current-buffer)))))
2319 ;; Output goes in a separate buffer.
2320 ;; Preserve the match data in case called from a program.
2321 (save-match-data
2322 (if (string-match "[ \t]*&[ \t]*\\'" command)
2323 ;; Command ending with ampersand means asynchronous.
2324 (let ((buffer (get-buffer-create
2325 (or output-buffer "*Async Shell Command*")))
2326 (directory default-directory)
2327 proc)
2328 ;; Remove the ampersand.
2329 (setq command (substring command 0 (match-beginning 0)))
2330 ;; If will kill a process, query first.
2331 (setq proc (get-buffer-process buffer))
2332 (if proc
2333 (if (yes-or-no-p "A command is running. Kill it? ")
2334 (kill-process proc)
2335 (error "Shell command in progress")))
2336 (with-current-buffer buffer
2337 (setq buffer-read-only nil)
2338 (erase-buffer)
2339 (display-buffer buffer)
2340 (setq default-directory directory)
2341 (setq proc (start-process "Shell" buffer shell-file-name
2342 shell-command-switch command))
2343 (setq mode-line-process '(":%s"))
2344 (require 'shell) (shell-mode)
2345 (set-process-sentinel proc 'shell-command-sentinel)
2346 ;; Use the comint filter for proper handling of carriage motion
2347 ;; (see `comint-inhibit-carriage-motion'),.
2348 (set-process-filter proc 'comint-output-filter)
2349 ))
2350 ;; Otherwise, command is executed synchronously.
2351 (shell-command-on-region (point) (point) command
2352 output-buffer nil error-buffer)))))))
2353
2354 (defun display-message-or-buffer (message
2355 &optional buffer-name not-this-window frame)
2356 "Display MESSAGE in the echo area if possible, otherwise in a pop-up buffer.
2357 MESSAGE may be either a string or a buffer.
2358
2359 A buffer is displayed using `display-buffer' if MESSAGE is too long for
2360 the maximum height of the echo area, as defined by `max-mini-window-height'
2361 if `resize-mini-windows' is non-nil.
2362
2363 Returns either the string shown in the echo area, or when a pop-up
2364 buffer is used, the window used to display it.
2365
2366 If MESSAGE is a string, then the optional argument BUFFER-NAME is the
2367 name of the buffer used to display it in the case where a pop-up buffer
2368 is used, defaulting to `*Message*'. In the case where MESSAGE is a
2369 string and it is displayed in the echo area, it is not specified whether
2370 the contents are inserted into the buffer anyway.
2371
2372 Optional arguments NOT-THIS-WINDOW and FRAME are as for `display-buffer',
2373 and only used if a buffer is displayed."
2374 (cond ((and (stringp message) (not (string-match "\n" message)))
2375 ;; Trivial case where we can use the echo area
2376 (message "%s" message))
2377 ((and (stringp message)
2378 (= (string-match "\n" message) (1- (length message))))
2379 ;; Trivial case where we can just remove single trailing newline
2380 (message "%s" (substring message 0 (1- (length message)))))
2381 (t
2382 ;; General case
2383 (with-current-buffer
2384 (if (bufferp message)
2385 message
2386 (get-buffer-create (or buffer-name "*Message*")))
2387
2388 (unless (bufferp message)
2389 (erase-buffer)
2390 (insert message))
2391
2392 (let ((lines
2393 (if (= (buffer-size) 0)
2394 0
2395 (count-screen-lines nil nil nil (minibuffer-window)))))
2396 (cond ((= lines 0))
2397 ((and (or (<= lines 1)
2398 (<= lines
2399 (if resize-mini-windows
2400 (cond ((floatp max-mini-window-height)
2401 (* (frame-height)
2402 max-mini-window-height))
2403 ((integerp max-mini-window-height)
2404 max-mini-window-height)
2405 (t
2406 1))
2407 1)))
2408 ;; Don't use the echo area if the output buffer is
2409 ;; already dispayed in the selected frame.
2410 (not (get-buffer-window (current-buffer))))
2411 ;; Echo area
2412 (goto-char (point-max))
2413 (when (bolp)
2414 (backward-char 1))
2415 (message "%s" (buffer-substring (point-min) (point))))
2416 (t
2417 ;; Buffer
2418 (goto-char (point-min))
2419 (display-buffer (current-buffer)
2420 not-this-window frame))))))))
2421
2422
2423 ;; We have a sentinel to prevent insertion of a termination message
2424 ;; in the buffer itself.
2425 (defun shell-command-sentinel (process signal)
2426 (if (memq (process-status process) '(exit signal))
2427 (message "%s: %s."
2428 (car (cdr (cdr (process-command process))))
2429 (substring signal 0 -1))))
2430
2431 (defun shell-command-on-region (start end command
2432 &optional output-buffer replace
2433 error-buffer display-error-buffer)
2434 "Execute string COMMAND in inferior shell with region as input.
2435 Normally display output (if any) in temp buffer `*Shell Command Output*';
2436 Prefix arg means replace the region with it. Return the exit code of
2437 COMMAND.
2438
2439 To specify a coding system for converting non-ASCII characters
2440 in the input and output to the shell command, use \\[universal-coding-system-argument]
2441 before this command. By default, the input (from the current buffer)
2442 is encoded in the same coding system that will be used to save the file,
2443 `buffer-file-coding-system'. If the output is going to replace the region,
2444 then it is decoded from that same coding system.
2445
2446 The noninteractive arguments are START, END, COMMAND,
2447 OUTPUT-BUFFER, REPLACE, ERROR-BUFFER, and DISPLAY-ERROR-BUFFER.
2448 Noninteractive callers can specify coding systems by binding
2449 `coding-system-for-read' and `coding-system-for-write'.
2450
2451 If the command generates output, the output may be displayed
2452 in the echo area or in a buffer.
2453 If the output is short enough to display in the echo area
2454 \(determined by the variable `max-mini-window-height' if
2455 `resize-mini-windows' is non-nil), it is shown there. Otherwise
2456 it is displayed in the buffer `*Shell Command Output*'. The output
2457 is available in that buffer in both cases.
2458
2459 If there is output and an error, a message about the error
2460 appears at the end of the output.
2461
2462 If there is no output, or if output is inserted in the current buffer,
2463 then `*Shell Command Output*' is deleted.
2464
2465 If the optional fourth argument OUTPUT-BUFFER is non-nil,
2466 that says to put the output in some other buffer.
2467 If OUTPUT-BUFFER is a buffer or buffer name, put the output there.
2468 If OUTPUT-BUFFER is not a buffer and not nil,
2469 insert output in the current buffer.
2470 In either case, the output is inserted after point (leaving mark after it).
2471
2472 If REPLACE, the optional fifth argument, is non-nil, that means insert
2473 the output in place of text from START to END, putting point and mark
2474 around it.
2475
2476 If optional sixth argument ERROR-BUFFER is non-nil, it is a buffer
2477 or buffer name to which to direct the command's standard error output.
2478 If it is nil, error output is mingled with regular output.
2479 If DISPLAY-ERROR-BUFFER is non-nil, display the error buffer if there
2480 were any errors. (This is always t, interactively.)
2481 In an interactive call, the variable `shell-command-default-error-buffer'
2482 specifies the value of ERROR-BUFFER."
2483 (interactive (let (string)
2484 (unless (mark)
2485 (error "The mark is not set now, so there is no region"))
2486 ;; Do this before calling region-beginning
2487 ;; and region-end, in case subprocess output
2488 ;; relocates them while we are in the minibuffer.
2489 (setq string (read-shell-command "Shell command on region: "))
2490 ;; call-interactively recognizes region-beginning and
2491 ;; region-end specially, leaving them in the history.
2492 (list (region-beginning) (region-end)
2493 string
2494 current-prefix-arg
2495 current-prefix-arg
2496 shell-command-default-error-buffer
2497 t)))
2498 (let ((error-file
2499 (if error-buffer
2500 (make-temp-file
2501 (expand-file-name "scor"
2502 (or small-temporary-file-directory
2503 temporary-file-directory)))
2504 nil))
2505 exit-status)
2506 (if (or replace
2507 (and output-buffer
2508 (not (or (bufferp output-buffer) (stringp output-buffer)))))
2509 ;; Replace specified region with output from command.
2510 (let ((swap (and replace (< start end))))
2511 ;; Don't muck with mark unless REPLACE says we should.
2512 (goto-char start)
2513 (and replace (push-mark (point) 'nomsg))
2514 (setq exit-status
2515 (call-process-region start end shell-file-name t
2516 (if error-file
2517 (list t error-file)
2518 t)
2519 nil shell-command-switch command))
2520 ;; It is rude to delete a buffer which the command is not using.
2521 ;; (let ((shell-buffer (get-buffer "*Shell Command Output*")))
2522 ;; (and shell-buffer (not (eq shell-buffer (current-buffer)))
2523 ;; (kill-buffer shell-buffer)))
2524 ;; Don't muck with mark unless REPLACE says we should.
2525 (and replace swap (exchange-point-and-mark)))
2526 ;; No prefix argument: put the output in a temp buffer,
2527 ;; replacing its entire contents.
2528 (let ((buffer (get-buffer-create
2529 (or output-buffer "*Shell Command Output*"))))
2530 (unwind-protect
2531 (if (eq buffer (current-buffer))
2532 ;; If the input is the same buffer as the output,
2533 ;; delete everything but the specified region,
2534 ;; then replace that region with the output.
2535 (progn (setq buffer-read-only nil)
2536 (delete-region (max start end) (point-max))
2537 (delete-region (point-min) (min start end))
2538 (setq exit-status
2539 (call-process-region (point-min) (point-max)
2540 shell-file-name t
2541 (if error-file
2542 (list t error-file)
2543 t)
2544 nil shell-command-switch
2545 command)))
2546 ;; Clear the output buffer, then run the command with
2547 ;; output there.
2548 (let ((directory default-directory))
2549 (with-current-buffer buffer
2550 (setq buffer-read-only nil)
2551 (if (not output-buffer)
2552 (setq default-directory directory))
2553 (erase-buffer)))
2554 (setq exit-status
2555 (call-process-region start end shell-file-name nil
2556 (if error-file
2557 (list buffer error-file)
2558 buffer)
2559 nil shell-command-switch command)))
2560 ;; Report the output.
2561 (with-current-buffer buffer
2562 (setq mode-line-process
2563 (cond ((null exit-status)
2564 " - Error")
2565 ((stringp exit-status)
2566 (format " - Signal [%s]" exit-status))
2567 ((not (equal 0 exit-status))
2568 (format " - Exit [%d]" exit-status)))))
2569 (if (with-current-buffer buffer (> (point-max) (point-min)))
2570 ;; There's some output, display it
2571 (display-message-or-buffer buffer)
2572 ;; No output; error?
2573 (let ((output
2574 (if (and error-file
2575 (< 0 (nth 7 (file-attributes error-file))))
2576 "some error output"
2577 "no output")))
2578 (cond ((null exit-status)
2579 (message "(Shell command failed with error)"))
2580 ((equal 0 exit-status)
2581 (message "(Shell command succeeded with %s)"
2582 output))
2583 ((stringp exit-status)
2584 (message "(Shell command killed by signal %s)"
2585 exit-status))
2586 (t
2587 (message "(Shell command failed with code %d and %s)"
2588 exit-status output))))
2589 ;; Don't kill: there might be useful info in the undo-log.
2590 ;; (kill-buffer buffer)
2591 ))))
2592
2593 (when (and error-file (file-exists-p error-file))
2594 (if (< 0 (nth 7 (file-attributes error-file)))
2595 (with-current-buffer (get-buffer-create error-buffer)
2596 (let ((pos-from-end (- (point-max) (point))))
2597 (or (bobp)
2598 (insert "\f\n"))
2599 ;; Do no formatting while reading error file,
2600 ;; because that can run a shell command, and we
2601 ;; don't want that to cause an infinite recursion.
2602 (format-insert-file error-file nil)
2603 ;; Put point after the inserted errors.
2604 (goto-char (- (point-max) pos-from-end)))
2605 (and display-error-buffer
2606 (display-buffer (current-buffer)))))
2607 (delete-file error-file))
2608 exit-status))
2609
2610 (defun shell-command-to-string (command)
2611 "Execute shell command COMMAND and return its output as a string."
2612 (with-output-to-string
2613 (with-current-buffer
2614 standard-output
2615 (call-process shell-file-name nil t nil shell-command-switch command))))
2616
2617 (defun process-file (program &optional infile buffer display &rest args)
2618 "Process files synchronously in a separate process.
2619 Similar to `call-process', but may invoke a file handler based on
2620 `default-directory'. The current working directory of the
2621 subprocess is `default-directory'.
2622
2623 File names in INFILE and BUFFER are handled normally, but file
2624 names in ARGS should be relative to `default-directory', as they
2625 are passed to the process verbatim. \(This is a difference to
2626 `call-process' which does not support file handlers for INFILE
2627 and BUFFER.\)
2628
2629 Some file handlers might not support all variants, for example
2630 they might behave as if DISPLAY was nil, regardless of the actual
2631 value passed."
2632 (let ((fh (find-file-name-handler default-directory 'process-file))
2633 lc stderr-file)
2634 (unwind-protect
2635 (if fh (apply fh 'process-file program infile buffer display args)
2636 (when infile (setq lc (file-local-copy infile)))
2637 (setq stderr-file (when (and (consp buffer) (stringp (cadr buffer)))
2638 (make-temp-file "emacs")))
2639 (prog1
2640 (apply 'call-process program
2641 (or lc infile)
2642 (if stderr-file (list (car buffer) stderr-file) buffer)
2643 display args)
2644 (when stderr-file (copy-file stderr-file (cadr buffer)))))
2645 (when stderr-file (delete-file stderr-file))
2646 (when lc (delete-file lc)))))
2647
2648 (defvar process-file-side-effects t
2649 "Whether a call of `process-file' changes remote files.
2650
2651 Per default, this variable is always set to `t', meaning that a
2652 call of `process-file' could potentially change any file on a
2653 remote host. When set to `nil', a file handler could optimize
2654 its behaviour with respect to remote file attributes caching.
2655
2656 This variable should never be changed by `setq'. Instead of, it
2657 shall be set only by let-binding.")
2658
2659 (defun start-file-process (name buffer program &rest program-args)
2660 "Start a program in a subprocess. Return the process object for it.
2661
2662 Similar to `start-process', but may invoke a file handler based on
2663 `default-directory'. See Info node `(elisp)Magic File Names'.
2664
2665 This handler ought to run PROGRAM, perhaps on the local host,
2666 perhaps on a remote host that corresponds to `default-directory'.
2667 In the latter case, the local part of `default-directory' becomes
2668 the working directory of the process.
2669
2670 PROGRAM and PROGRAM-ARGS might be file names. They are not
2671 objects of file handler invocation. File handlers might not
2672 support pty association, if PROGRAM is nil."
2673 (let ((fh (find-file-name-handler default-directory 'start-file-process)))
2674 (if fh (apply fh 'start-file-process name buffer program program-args)
2675 (apply 'start-process name buffer program program-args))))
2676
2677 \f
2678 (defvar universal-argument-map
2679 (let ((map (make-sparse-keymap)))
2680 (define-key map [t] 'universal-argument-other-key)
2681 (define-key map (vector meta-prefix-char t) 'universal-argument-other-key)
2682 (define-key map [switch-frame] nil)
2683 (define-key map [?\C-u] 'universal-argument-more)
2684 (define-key map [?-] 'universal-argument-minus)
2685 (define-key map [?0] 'digit-argument)
2686 (define-key map [?1] 'digit-argument)
2687 (define-key map [?2] 'digit-argument)
2688 (define-key map [?3] 'digit-argument)
2689 (define-key map [?4] 'digit-argument)
2690 (define-key map [?5] 'digit-argument)
2691 (define-key map [?6] 'digit-argument)
2692 (define-key map [?7] 'digit-argument)
2693 (define-key map [?8] 'digit-argument)
2694 (define-key map [?9] 'digit-argument)
2695 (define-key map [kp-0] 'digit-argument)
2696 (define-key map [kp-1] 'digit-argument)
2697 (define-key map [kp-2] 'digit-argument)
2698 (define-key map [kp-3] 'digit-argument)
2699 (define-key map [kp-4] 'digit-argument)
2700 (define-key map [kp-5] 'digit-argument)
2701 (define-key map [kp-6] 'digit-argument)
2702 (define-key map [kp-7] 'digit-argument)
2703 (define-key map [kp-8] 'digit-argument)
2704 (define-key map [kp-9] 'digit-argument)
2705 (define-key map [kp-subtract] 'universal-argument-minus)
2706 map)
2707 "Keymap used while processing \\[universal-argument].")
2708
2709 (defvar universal-argument-num-events nil
2710 "Number of argument-specifying events read by `universal-argument'.
2711 `universal-argument-other-key' uses this to discard those events
2712 from (this-command-keys), and reread only the final command.")
2713
2714 (defvar overriding-map-is-bound nil
2715 "Non-nil when `overriding-terminal-local-map' is `universal-argument-map'.")
2716
2717 (defvar saved-overriding-map nil
2718 "The saved value of `overriding-terminal-local-map'.
2719 That variable gets restored to this value on exiting \"universal
2720 argument mode\".")
2721
2722 (defun ensure-overriding-map-is-bound ()
2723 "Check `overriding-terminal-local-map' is `universal-argument-map'."
2724 (unless overriding-map-is-bound
2725 (setq saved-overriding-map overriding-terminal-local-map)
2726 (setq overriding-terminal-local-map universal-argument-map)
2727 (setq overriding-map-is-bound t)))
2728
2729 (defun restore-overriding-map ()
2730 "Restore `overriding-terminal-local-map' to its saved value."
2731 (setq overriding-terminal-local-map saved-overriding-map)
2732 (setq overriding-map-is-bound nil))
2733
2734 (defun universal-argument ()
2735 "Begin a numeric argument for the following command.
2736 Digits or minus sign following \\[universal-argument] make up the numeric argument.
2737 \\[universal-argument] following the digits or minus sign ends the argument.
2738 \\[universal-argument] without digits or minus sign provides 4 as argument.
2739 Repeating \\[universal-argument] without digits or minus sign
2740 multiplies the argument by 4 each time.
2741 For some commands, just \\[universal-argument] by itself serves as a flag
2742 which is different in effect from any particular numeric argument.
2743 These commands include \\[set-mark-command] and \\[start-kbd-macro]."
2744 (interactive)
2745 (setq prefix-arg (list 4))
2746 (setq universal-argument-num-events (length (this-command-keys)))
2747 (ensure-overriding-map-is-bound))
2748
2749 ;; A subsequent C-u means to multiply the factor by 4 if we've typed
2750 ;; nothing but C-u's; otherwise it means to terminate the prefix arg.
2751 (defun universal-argument-more (arg)
2752 (interactive "P")
2753 (if (consp arg)
2754 (setq prefix-arg (list (* 4 (car arg))))
2755 (if (eq arg '-)
2756 (setq prefix-arg (list -4))
2757 (setq prefix-arg arg)
2758 (restore-overriding-map)))
2759 (setq universal-argument-num-events (length (this-command-keys))))
2760
2761 (defun negative-argument (arg)
2762 "Begin a negative numeric argument for the next command.
2763 \\[universal-argument] following digits or minus sign ends the argument."
2764 (interactive "P")
2765 (cond ((integerp arg)
2766 (setq prefix-arg (- arg)))
2767 ((eq arg '-)
2768 (setq prefix-arg nil))
2769 (t
2770 (setq prefix-arg '-)))
2771 (setq universal-argument-num-events (length (this-command-keys)))
2772 (ensure-overriding-map-is-bound))
2773
2774 (defun digit-argument (arg)
2775 "Part of the numeric argument for the next command.
2776 \\[universal-argument] following digits or minus sign ends the argument."
2777 (interactive "P")
2778 (let* ((char (if (integerp last-command-event)
2779 last-command-event
2780 (get last-command-event 'ascii-character)))
2781 (digit (- (logand char ?\177) ?0)))
2782 (cond ((integerp arg)
2783 (setq prefix-arg (+ (* arg 10)
2784 (if (< arg 0) (- digit) digit))))
2785 ((eq arg '-)
2786 ;; Treat -0 as just -, so that -01 will work.
2787 (setq prefix-arg (if (zerop digit) '- (- digit))))
2788 (t
2789 (setq prefix-arg digit))))
2790 (setq universal-argument-num-events (length (this-command-keys)))
2791 (ensure-overriding-map-is-bound))
2792
2793 ;; For backward compatibility, minus with no modifiers is an ordinary
2794 ;; command if digits have already been entered.
2795 (defun universal-argument-minus (arg)
2796 (interactive "P")
2797 (if (integerp arg)
2798 (universal-argument-other-key arg)
2799 (negative-argument arg)))
2800
2801 ;; Anything else terminates the argument and is left in the queue to be
2802 ;; executed as a command.
2803 (defun universal-argument-other-key (arg)
2804 (interactive "P")
2805 (setq prefix-arg arg)
2806 (let* ((key (this-command-keys))
2807 (keylist (listify-key-sequence key)))
2808 (setq unread-command-events
2809 (append (nthcdr universal-argument-num-events keylist)
2810 unread-command-events)))
2811 (reset-this-command-lengths)
2812 (restore-overriding-map))
2813 \f
2814 ;; This function is here rather than in subr.el because it uses CL.
2815 (defmacro with-wrapper-hook (var args &rest body)
2816 "Run BODY wrapped with the VAR hook.
2817 VAR is a special hook: its functions are called with a first argument
2818 which is the \"original\" code (the BODY), so the hook function can wrap
2819 the original function, or call it any number of times (including not calling
2820 it at all). This is similar to an `around' advice.
2821 VAR is normally a symbol (a variable) in which case it is treated like
2822 a hook, with a buffer-local and a global part. But it can also be an
2823 arbitrary expression.
2824 ARGS is a list of variables which will be passed as additional arguments
2825 to each function, after the initial argument, and which the first argument
2826 expects to receive when called."
2827 (declare (indent 2) (debug t))
2828 ;; We need those two gensyms because CL's lexical scoping is not available
2829 ;; for function arguments :-(
2830 (let ((funs (make-symbol "funs"))
2831 (global (make-symbol "global"))
2832 (argssym (make-symbol "args")))
2833 ;; Since the hook is a wrapper, the loop has to be done via
2834 ;; recursion: a given hook function will call its parameter in order to
2835 ;; continue looping.
2836 `(labels ((runrestofhook (,funs ,global ,argssym)
2837 ;; `funs' holds the functions left on the hook and `global'
2838 ;; holds the functions left on the global part of the hook
2839 ;; (in case the hook is local).
2840 (lexical-let ((funs ,funs)
2841 (global ,global))
2842 (if (consp funs)
2843 (if (eq t (car funs))
2844 (runrestofhook
2845 (append global (cdr funs)) nil ,argssym)
2846 (apply (car funs)
2847 (lambda (&rest ,argssym)
2848 (runrestofhook (cdr funs) global ,argssym))
2849 ,argssym))
2850 ;; Once there are no more functions on the hook, run
2851 ;; the original body.
2852 (apply (lambda ,args ,@body) ,argssym)))))
2853 (runrestofhook ,var
2854 ;; The global part of the hook, if any.
2855 ,(if (symbolp var)
2856 `(if (local-variable-p ',var)
2857 (default-value ',var)))
2858 (list ,@args)))))
2859
2860 (defvar filter-buffer-substring-functions nil
2861 "Wrapper hook around `filter-buffer-substring'.
2862 The functions on this special hook are called with 4 arguments:
2863 NEXT-FUN BEG END DELETE
2864 NEXT-FUN is a function of 3 arguments (BEG END DELETE)
2865 that performs the default operation. The other 3 arguments are like
2866 the ones passed to `filter-buffer-substring'.")
2867
2868 (defvar buffer-substring-filters nil
2869 "List of filter functions for `filter-buffer-substring'.
2870 Each function must accept a single argument, a string, and return
2871 a string. The buffer substring is passed to the first function
2872 in the list, and the return value of each function is passed to
2873 the next. The return value of the last function is used as the
2874 return value of `filter-buffer-substring'.
2875
2876 If this variable is nil, no filtering is performed.")
2877 (make-obsolete-variable 'buffer-substring-filters
2878 'filter-buffer-substring-functions "24.1")
2879
2880 (defun filter-buffer-substring (beg end &optional delete)
2881 "Return the buffer substring between BEG and END, after filtering.
2882 The filtering is performed by `filter-buffer-substring-functions'.
2883
2884 If DELETE is non-nil, the text between BEG and END is deleted
2885 from the buffer.
2886
2887 This function should be used instead of `buffer-substring',
2888 `buffer-substring-no-properties', or `delete-and-extract-region'
2889 when you want to allow filtering to take place. For example,
2890 major or minor modes can use `filter-buffer-substring-functions' to
2891 extract characters that are special to a buffer, and should not
2892 be copied into other buffers."
2893 (with-wrapper-hook filter-buffer-substring-functions (beg end delete)
2894 (cond
2895 ((or delete buffer-substring-filters)
2896 (save-excursion
2897 (goto-char beg)
2898 (let ((string (if delete (delete-and-extract-region beg end)
2899 (buffer-substring beg end))))
2900 (dolist (filter buffer-substring-filters)
2901 (setq string (funcall filter string)))
2902 string)))
2903 (t
2904 (buffer-substring beg end)))))
2905
2906
2907 ;;;; Window system cut and paste hooks.
2908
2909 (defvar interprogram-cut-function nil
2910 "Function to call to make a killed region available to other programs.
2911
2912 Most window systems provide some sort of facility for cutting and
2913 pasting text between the windows of different programs.
2914 This variable holds a function that Emacs calls whenever text
2915 is put in the kill ring, to make the new kill available to other
2916 programs.
2917
2918 The function takes one argument, TEXT, which is a string containing
2919 the text which should be made available.")
2920
2921 (defvar interprogram-paste-function nil
2922 "Function to call to get text cut from other programs.
2923
2924 Most window systems provide some sort of facility for cutting and
2925 pasting text between the windows of different programs.
2926 This variable holds a function that Emacs calls to obtain
2927 text that other programs have provided for pasting.
2928
2929 The function should be called with no arguments. If the function
2930 returns nil, then no other program has provided such text, and the top
2931 of the Emacs kill ring should be used. If the function returns a
2932 string, then the caller of the function \(usually `current-kill')
2933 should put this string in the kill ring as the latest kill.
2934
2935 This function may also return a list of strings if the window
2936 system supports multiple selections. The first string will be
2937 used as the pasted text, but the other will be placed in the
2938 kill ring for easy access via `yank-pop'.
2939
2940 Note that the function should return a string only if a program other
2941 than Emacs has provided a string for pasting; if Emacs provided the
2942 most recent string, the function should return nil. If it is
2943 difficult to tell whether Emacs or some other program provided the
2944 current string, it is probably good enough to return nil if the string
2945 is equal (according to `string=') to the last text Emacs provided.")
2946 \f
2947
2948
2949 ;;;; The kill ring data structure.
2950
2951 (defvar kill-ring nil
2952 "List of killed text sequences.
2953 Since the kill ring is supposed to interact nicely with cut-and-paste
2954 facilities offered by window systems, use of this variable should
2955 interact nicely with `interprogram-cut-function' and
2956 `interprogram-paste-function'. The functions `kill-new',
2957 `kill-append', and `current-kill' are supposed to implement this
2958 interaction; you may want to use them instead of manipulating the kill
2959 ring directly.")
2960
2961 (defcustom kill-ring-max 60
2962 "Maximum length of kill ring before oldest elements are thrown away."
2963 :type 'integer
2964 :group 'killing)
2965
2966 (defvar kill-ring-yank-pointer nil
2967 "The tail of the kill ring whose car is the last thing yanked.")
2968
2969 (defcustom save-interprogram-paste-before-kill nil
2970 "Save clipboard strings into kill ring before replacing them.
2971 When one selects something in another program to paste it into Emacs,
2972 but kills something in Emacs before actually pasting it,
2973 this selection is gone unless this variable is non-nil,
2974 in which case the other program's selection is saved in the `kill-ring'
2975 before the Emacs kill and one can still paste it using \\[yank] \\[yank-pop]."
2976 :type 'boolean
2977 :group 'killing
2978 :version "23.2")
2979
2980 (defcustom kill-do-not-save-duplicates nil
2981 "Do not add a new string to `kill-ring' when it is the same as the last one."
2982 :type 'boolean
2983 :group 'killing
2984 :version "23.2")
2985
2986 (defun kill-new (string &optional replace yank-handler)
2987 "Make STRING the latest kill in the kill ring.
2988 Set `kill-ring-yank-pointer' to point to it.
2989 If `interprogram-cut-function' is non-nil, apply it to STRING.
2990 Optional second argument REPLACE non-nil means that STRING will replace
2991 the front of the kill ring, rather than being added to the list.
2992
2993 Optional third arguments YANK-HANDLER controls how the STRING is later
2994 inserted into a buffer; see `insert-for-yank' for details.
2995 When a yank handler is specified, STRING must be non-empty (the yank
2996 handler, if non-nil, is stored as a `yank-handler' text property on STRING).
2997
2998 When `save-interprogram-paste-before-kill' and `interprogram-paste-function'
2999 are non-nil, saves the interprogram paste string(s) into `kill-ring' before
3000 STRING.
3001
3002 When the yank handler has a non-nil PARAM element, the original STRING
3003 argument is not used by `insert-for-yank'. However, since Lisp code
3004 may access and use elements from the kill ring directly, the STRING
3005 argument should still be a \"useful\" string for such uses."
3006 (if (> (length string) 0)
3007 (if yank-handler
3008 (put-text-property 0 (length string)
3009 'yank-handler yank-handler string))
3010 (if yank-handler
3011 (signal 'args-out-of-range
3012 (list string "yank-handler specified for empty string"))))
3013 (unless (and kill-do-not-save-duplicates
3014 (equal string (car kill-ring)))
3015 (if (fboundp 'menu-bar-update-yank-menu)
3016 (menu-bar-update-yank-menu string (and replace (car kill-ring)))))
3017 (when save-interprogram-paste-before-kill
3018 (let ((interprogram-paste (and interprogram-paste-function
3019 (funcall interprogram-paste-function))))
3020 (when interprogram-paste
3021 (dolist (s (if (listp interprogram-paste)
3022 (nreverse interprogram-paste)
3023 (list interprogram-paste)))
3024 (unless (and kill-do-not-save-duplicates
3025 (equal s (car kill-ring)))
3026 (push s kill-ring))))))
3027 (unless (and kill-do-not-save-duplicates
3028 (equal string (car kill-ring)))
3029 (if (and replace kill-ring)
3030 (setcar kill-ring string)
3031 (push string kill-ring)
3032 (if (> (length kill-ring) kill-ring-max)
3033 (setcdr (nthcdr (1- kill-ring-max) kill-ring) nil))))
3034 (setq kill-ring-yank-pointer kill-ring)
3035 (if interprogram-cut-function
3036 (funcall interprogram-cut-function string)))
3037
3038 (defun kill-append (string before-p &optional yank-handler)
3039 "Append STRING to the end of the latest kill in the kill ring.
3040 If BEFORE-P is non-nil, prepend STRING to the kill.
3041 Optional third argument YANK-HANDLER, if non-nil, specifies the
3042 yank-handler text property to be set on the combined kill ring
3043 string. If the specified yank-handler arg differs from the
3044 yank-handler property of the latest kill string, this function
3045 adds the combined string to the kill ring as a new element,
3046 instead of replacing the last kill with it.
3047 If `interprogram-cut-function' is set, pass the resulting kill to it."
3048 (let* ((cur (car kill-ring)))
3049 (kill-new (if before-p (concat string cur) (concat cur string))
3050 (or (= (length cur) 0)
3051 (equal yank-handler (get-text-property 0 'yank-handler cur)))
3052 yank-handler)))
3053
3054 (defcustom yank-pop-change-selection nil
3055 "If non-nil, rotating the kill ring changes the window system selection."
3056 :type 'boolean
3057 :group 'killing
3058 :version "23.1")
3059
3060 (defun current-kill (n &optional do-not-move)
3061 "Rotate the yanking point by N places, and then return that kill.
3062 If N is zero, `interprogram-paste-function' is set, and calling
3063 it returns a string or list of strings, then that string (or
3064 list) is added to the front of the kill ring and the string (or
3065 first string in the list) is returned as the latest kill.
3066
3067 If N is not zero, and if `yank-pop-change-selection' is
3068 non-nil, use `interprogram-cut-function' to transfer the
3069 kill at the new yank point into the window system selection.
3070
3071 If optional arg DO-NOT-MOVE is non-nil, then don't actually
3072 move the yanking point; just return the Nth kill forward."
3073
3074 (let ((interprogram-paste (and (= n 0)
3075 interprogram-paste-function
3076 (funcall interprogram-paste-function))))
3077 (if interprogram-paste
3078 (progn
3079 ;; Disable the interprogram cut function when we add the new
3080 ;; text to the kill ring, so Emacs doesn't try to own the
3081 ;; selection, with identical text.
3082 (let ((interprogram-cut-function nil))
3083 (if (listp interprogram-paste)
3084 (mapc 'kill-new (nreverse interprogram-paste))
3085 (kill-new interprogram-paste)))
3086 (car kill-ring))
3087 (or kill-ring (error "Kill ring is empty"))
3088 (let ((ARGth-kill-element
3089 (nthcdr (mod (- n (length kill-ring-yank-pointer))
3090 (length kill-ring))
3091 kill-ring)))
3092 (unless do-not-move
3093 (setq kill-ring-yank-pointer ARGth-kill-element)
3094 (when (and yank-pop-change-selection
3095 (> n 0)
3096 interprogram-cut-function)
3097 (funcall interprogram-cut-function (car ARGth-kill-element))))
3098 (car ARGth-kill-element)))))
3099
3100
3101
3102 ;;;; Commands for manipulating the kill ring.
3103
3104 (defcustom kill-read-only-ok nil
3105 "Non-nil means don't signal an error for killing read-only text."
3106 :type 'boolean
3107 :group 'killing)
3108
3109 (put 'text-read-only 'error-conditions
3110 '(text-read-only buffer-read-only error))
3111 (put 'text-read-only 'error-message (purecopy "Text is read-only"))
3112
3113 (defun kill-region (beg end &optional yank-handler)
3114 "Kill (\"cut\") text between point and mark.
3115 This deletes the text from the buffer and saves it in the kill ring.
3116 The command \\[yank] can retrieve it from there.
3117 \(If you want to save the region without killing it, use \\[kill-ring-save].)
3118
3119 If you want to append the killed region to the last killed text,
3120 use \\[append-next-kill] before \\[kill-region].
3121
3122 If the buffer is read-only, Emacs will beep and refrain from deleting
3123 the text, but put the text in the kill ring anyway. This means that
3124 you can use the killing commands to copy text from a read-only buffer.
3125
3126 Lisp programs should use this function for killing text.
3127 (To delete text, use `delete-region'.)
3128 Supply two arguments, character positions indicating the stretch of text
3129 to be killed.
3130 Any command that calls this function is a \"kill command\".
3131 If the previous command was also a kill command,
3132 the text killed this time appends to the text killed last time
3133 to make one entry in the kill ring.
3134
3135 In Lisp code, optional third arg YANK-HANDLER, if non-nil,
3136 specifies the yank-handler text property to be set on the killed
3137 text. See `insert-for-yank'."
3138 ;; Pass point first, then mark, because the order matters
3139 ;; when calling kill-append.
3140 (interactive (list (point) (mark)))
3141 (unless (and beg end)
3142 (error "The mark is not set now, so there is no region"))
3143 (condition-case nil
3144 (let ((string (filter-buffer-substring beg end t)))
3145 (when string ;STRING is nil if BEG = END
3146 ;; Add that string to the kill ring, one way or another.
3147 (if (eq last-command 'kill-region)
3148 (kill-append string (< end beg) yank-handler)
3149 (kill-new string nil yank-handler)))
3150 (when (or string (eq last-command 'kill-region))
3151 (setq this-command 'kill-region))
3152 nil)
3153 ((buffer-read-only text-read-only)
3154 ;; The code above failed because the buffer, or some of the characters
3155 ;; in the region, are read-only.
3156 ;; We should beep, in case the user just isn't aware of this.
3157 ;; However, there's no harm in putting
3158 ;; the region's text in the kill ring, anyway.
3159 (copy-region-as-kill beg end)
3160 ;; Set this-command now, so it will be set even if we get an error.
3161 (setq this-command 'kill-region)
3162 ;; This should barf, if appropriate, and give us the correct error.
3163 (if kill-read-only-ok
3164 (progn (message "Read only text copied to kill ring") nil)
3165 ;; Signal an error if the buffer is read-only.
3166 (barf-if-buffer-read-only)
3167 ;; If the buffer isn't read-only, the text is.
3168 (signal 'text-read-only (list (current-buffer)))))))
3169
3170 ;; copy-region-as-kill no longer sets this-command, because it's confusing
3171 ;; to get two copies of the text when the user accidentally types M-w and
3172 ;; then corrects it with the intended C-w.
3173 (defun copy-region-as-kill (beg end)
3174 "Save the region as if killed, but don't kill it.
3175 In Transient Mark mode, deactivate the mark.
3176 If `interprogram-cut-function' is non-nil, also save the text for a window
3177 system cut and paste.
3178
3179 This command's old key binding has been given to `kill-ring-save'."
3180 (interactive "r")
3181 (if (eq last-command 'kill-region)
3182 (kill-append (filter-buffer-substring beg end) (< end beg))
3183 (kill-new (filter-buffer-substring beg end)))
3184 (setq deactivate-mark t)
3185 nil)
3186
3187 (defun kill-ring-save (beg end)
3188 "Save the region as if killed, but don't kill it.
3189 In Transient Mark mode, deactivate the mark.
3190 If `interprogram-cut-function' is non-nil, also save the text for a window
3191 system cut and paste.
3192
3193 If you want to append the killed line to the last killed text,
3194 use \\[append-next-kill] before \\[kill-ring-save].
3195
3196 This command is similar to `copy-region-as-kill', except that it gives
3197 visual feedback indicating the extent of the region being copied."
3198 (interactive "r")
3199 (copy-region-as-kill beg end)
3200 ;; This use of called-interactively-p is correct
3201 ;; because the code it controls just gives the user visual feedback.
3202 (if (called-interactively-p 'interactive)
3203 (let ((other-end (if (= (point) beg) end beg))
3204 (opoint (point))
3205 ;; Inhibit quitting so we can make a quit here
3206 ;; look like a C-g typed as a command.
3207 (inhibit-quit t))
3208 (if (pos-visible-in-window-p other-end (selected-window))
3209 ;; Swap point-and-mark quickly so as to show the region that
3210 ;; was selected. Don't do it if the region is highlighted.
3211 (unless (and (region-active-p)
3212 (face-background 'region))
3213 ;; Swap point and mark.
3214 (set-marker (mark-marker) (point) (current-buffer))
3215 (goto-char other-end)
3216 (sit-for blink-matching-delay)
3217 ;; Swap back.
3218 (set-marker (mark-marker) other-end (current-buffer))
3219 (goto-char opoint)
3220 ;; If user quit, deactivate the mark
3221 ;; as C-g would as a command.
3222 (and quit-flag mark-active
3223 (deactivate-mark)))
3224 (let* ((killed-text (current-kill 0))
3225 (message-len (min (length killed-text) 40)))
3226 (if (= (point) beg)
3227 ;; Don't say "killed"; that is misleading.
3228 (message "Saved text until \"%s\""
3229 (substring killed-text (- message-len)))
3230 (message "Saved text from \"%s\""
3231 (substring killed-text 0 message-len))))))))
3232
3233 (defun append-next-kill (&optional interactive)
3234 "Cause following command, if it kills, to append to previous kill.
3235 The argument is used for internal purposes; do not supply one."
3236 (interactive "p")
3237 ;; We don't use (interactive-p), since that breaks kbd macros.
3238 (if interactive
3239 (progn
3240 (setq this-command 'kill-region)
3241 (message "If the next command is a kill, it will append"))
3242 (setq last-command 'kill-region)))
3243 \f
3244 ;; Yanking.
3245
3246 ;; This is actually used in subr.el but defcustom does not work there.
3247 (defcustom yank-excluded-properties
3248 '(read-only invisible intangible field mouse-face help-echo local-map keymap
3249 yank-handler follow-link fontified)
3250 "Text properties to discard when yanking.
3251 The value should be a list of text properties to discard or t,
3252 which means to discard all text properties."
3253 :type '(choice (const :tag "All" t) (repeat symbol))
3254 :group 'killing
3255 :version "22.1")
3256
3257 (defvar yank-window-start nil)
3258 (defvar yank-undo-function nil
3259 "If non-nil, function used by `yank-pop' to delete last stretch of yanked text.
3260 Function is called with two parameters, START and END corresponding to
3261 the value of the mark and point; it is guaranteed that START <= END.
3262 Normally set from the UNDO element of a yank-handler; see `insert-for-yank'.")
3263
3264 (defun yank-pop (&optional arg)
3265 "Replace just-yanked stretch of killed text with a different stretch.
3266 This command is allowed only immediately after a `yank' or a `yank-pop'.
3267 At such a time, the region contains a stretch of reinserted
3268 previously-killed text. `yank-pop' deletes that text and inserts in its
3269 place a different stretch of killed text.
3270
3271 With no argument, the previous kill is inserted.
3272 With argument N, insert the Nth previous kill.
3273 If N is negative, this is a more recent kill.
3274
3275 The sequence of kills wraps around, so that after the oldest one
3276 comes the newest one.
3277
3278 When this command inserts killed text into the buffer, it honors
3279 `yank-excluded-properties' and `yank-handler' as described in the
3280 doc string for `insert-for-yank-1', which see."
3281 (interactive "*p")
3282 (if (not (eq last-command 'yank))
3283 (error "Previous command was not a yank"))
3284 (setq this-command 'yank)
3285 (unless arg (setq arg 1))
3286 (let ((inhibit-read-only t)
3287 (before (< (point) (mark t))))
3288 (if before
3289 (funcall (or yank-undo-function 'delete-region) (point) (mark t))
3290 (funcall (or yank-undo-function 'delete-region) (mark t) (point)))
3291 (setq yank-undo-function nil)
3292 (set-marker (mark-marker) (point) (current-buffer))
3293 (insert-for-yank (current-kill arg))
3294 ;; Set the window start back where it was in the yank command,
3295 ;; if possible.
3296 (set-window-start (selected-window) yank-window-start t)
3297 (if before
3298 ;; This is like exchange-point-and-mark, but doesn't activate the mark.
3299 ;; It is cleaner to avoid activation, even though the command
3300 ;; loop would deactivate the mark because we inserted text.
3301 (goto-char (prog1 (mark t)
3302 (set-marker (mark-marker) (point) (current-buffer))))))
3303 nil)
3304
3305 (defun yank (&optional arg)
3306 "Reinsert (\"paste\") the last stretch of killed text.
3307 More precisely, reinsert the stretch of killed text most recently
3308 killed OR yanked. Put point at end, and set mark at beginning.
3309 With just \\[universal-argument] as argument, same but put point at beginning (and mark at end).
3310 With argument N, reinsert the Nth most recently killed stretch of killed
3311 text.
3312
3313 When this command inserts killed text into the buffer, it honors
3314 `yank-excluded-properties' and `yank-handler' as described in the
3315 doc string for `insert-for-yank-1', which see.
3316
3317 See also the command `yank-pop' (\\[yank-pop])."
3318 (interactive "*P")
3319 (setq yank-window-start (window-start))
3320 ;; If we don't get all the way thru, make last-command indicate that
3321 ;; for the following command.
3322 (setq this-command t)
3323 (push-mark (point))
3324 (insert-for-yank (current-kill (cond
3325 ((listp arg) 0)
3326 ((eq arg '-) -2)
3327 (t (1- arg)))))
3328 (if (consp arg)
3329 ;; This is like exchange-point-and-mark, but doesn't activate the mark.
3330 ;; It is cleaner to avoid activation, even though the command
3331 ;; loop would deactivate the mark because we inserted text.
3332 (goto-char (prog1 (mark t)
3333 (set-marker (mark-marker) (point) (current-buffer)))))
3334 ;; If we do get all the way thru, make this-command indicate that.
3335 (if (eq this-command t)
3336 (setq this-command 'yank))
3337 nil)
3338
3339 (defun rotate-yank-pointer (arg)
3340 "Rotate the yanking point in the kill ring.
3341 With ARG, rotate that many kills forward (or backward, if negative)."
3342 (interactive "p")
3343 (current-kill arg))
3344 \f
3345 ;; Some kill commands.
3346
3347 ;; Internal subroutine of delete-char
3348 (defun kill-forward-chars (arg)
3349 (if (listp arg) (setq arg (car arg)))
3350 (if (eq arg '-) (setq arg -1))
3351 (kill-region (point) (+ (point) arg)))
3352
3353 ;; Internal subroutine of backward-delete-char
3354 (defun kill-backward-chars (arg)
3355 (if (listp arg) (setq arg (car arg)))
3356 (if (eq arg '-) (setq arg -1))
3357 (kill-region (point) (- (point) arg)))
3358
3359 (defcustom backward-delete-char-untabify-method 'untabify
3360 "The method for untabifying when deleting backward.
3361 Can be `untabify' -- turn a tab to many spaces, then delete one space;
3362 `hungry' -- delete all whitespace, both tabs and spaces;
3363 `all' -- delete all whitespace, including tabs, spaces and newlines;
3364 nil -- just delete one character."
3365 :type '(choice (const untabify) (const hungry) (const all) (const nil))
3366 :version "20.3"
3367 :group 'killing)
3368
3369 (defun backward-delete-char-untabify (arg &optional killp)
3370 "Delete characters backward, changing tabs into spaces.
3371 The exact behavior depends on `backward-delete-char-untabify-method'.
3372 Delete ARG chars, and kill (save in kill ring) if KILLP is non-nil.
3373 Interactively, ARG is the prefix arg (default 1)
3374 and KILLP is t if a prefix arg was specified."
3375 (interactive "*p\nP")
3376 (when (eq backward-delete-char-untabify-method 'untabify)
3377 (let ((count arg))
3378 (save-excursion
3379 (while (and (> count 0) (not (bobp)))
3380 (if (= (preceding-char) ?\t)
3381 (let ((col (current-column)))
3382 (forward-char -1)
3383 (setq col (- col (current-column)))
3384 (insert-char ?\s col)
3385 (delete-char 1)))
3386 (forward-char -1)
3387 (setq count (1- count))))))
3388 (delete-backward-char
3389 (let ((skip (cond ((eq backward-delete-char-untabify-method 'hungry) " \t")
3390 ((eq backward-delete-char-untabify-method 'all)
3391 " \t\n\r"))))
3392 (if skip
3393 (let ((wh (- (point) (save-excursion (skip-chars-backward skip)
3394 (point)))))
3395 (+ arg (if (zerop wh) 0 (1- wh))))
3396 arg))
3397 killp))
3398
3399 (defun zap-to-char (arg char)
3400 "Kill up to and including ARGth occurrence of CHAR.
3401 Case is ignored if `case-fold-search' is non-nil in the current buffer.
3402 Goes backward if ARG is negative; error if CHAR not found."
3403 (interactive "p\ncZap to char: ")
3404 ;; Avoid "obsolete" warnings for translation-table-for-input.
3405 (with-no-warnings
3406 (if (char-table-p translation-table-for-input)
3407 (setq char (or (aref translation-table-for-input char) char))))
3408 (kill-region (point) (progn
3409 (search-forward (char-to-string char) nil nil arg)
3410 ; (goto-char (if (> arg 0) (1- (point)) (1+ (point))))
3411 (point))))
3412
3413 ;; kill-line and its subroutines.
3414
3415 (defcustom kill-whole-line nil
3416 "If non-nil, `kill-line' with no arg at beg of line kills the whole line."
3417 :type 'boolean
3418 :group 'killing)
3419
3420 (defun kill-line (&optional arg)
3421 "Kill the rest of the current line; if no nonblanks there, kill thru newline.
3422 With prefix argument ARG, kill that many lines from point.
3423 Negative arguments kill lines backward.
3424 With zero argument, kills the text before point on the current line.
3425
3426 When calling from a program, nil means \"no arg\",
3427 a number counts as a prefix arg.
3428
3429 To kill a whole line, when point is not at the beginning, type \
3430 \\[move-beginning-of-line] \\[kill-line] \\[kill-line].
3431
3432 If `kill-whole-line' is non-nil, then this command kills the whole line
3433 including its terminating newline, when used at the beginning of a line
3434 with no argument. As a consequence, you can always kill a whole line
3435 by typing \\[move-beginning-of-line] \\[kill-line].
3436
3437 If you want to append the killed line to the last killed text,
3438 use \\[append-next-kill] before \\[kill-line].
3439
3440 If the buffer is read-only, Emacs will beep and refrain from deleting
3441 the line, but put the line in the kill ring anyway. This means that
3442 you can use this command to copy text from a read-only buffer.
3443 \(If the variable `kill-read-only-ok' is non-nil, then this won't
3444 even beep.)"
3445 (interactive "P")
3446 (kill-region (point)
3447 ;; It is better to move point to the other end of the kill
3448 ;; before killing. That way, in a read-only buffer, point
3449 ;; moves across the text that is copied to the kill ring.
3450 ;; The choice has no effect on undo now that undo records
3451 ;; the value of point from before the command was run.
3452 (progn
3453 (if arg
3454 (forward-visible-line (prefix-numeric-value arg))
3455 (if (eobp)
3456 (signal 'end-of-buffer nil))
3457 (let ((end
3458 (save-excursion
3459 (end-of-visible-line) (point))))
3460 (if (or (save-excursion
3461 ;; If trailing whitespace is visible,
3462 ;; don't treat it as nothing.
3463 (unless show-trailing-whitespace
3464 (skip-chars-forward " \t" end))
3465 (= (point) end))
3466 (and kill-whole-line (bolp)))
3467 (forward-visible-line 1)
3468 (goto-char end))))
3469 (point))))
3470
3471 (defun kill-whole-line (&optional arg)
3472 "Kill current line.
3473 With prefix ARG, kill that many lines starting from the current line.
3474 If ARG is negative, kill backward. Also kill the preceding newline.
3475 \(This is meant to make \\[repeat] work well with negative arguments.\)
3476 If ARG is zero, kill current line but exclude the trailing newline."
3477 (interactive "p")
3478 (or arg (setq arg 1))
3479 (if (and (> arg 0) (eobp) (save-excursion (forward-visible-line 0) (eobp)))
3480 (signal 'end-of-buffer nil))
3481 (if (and (< arg 0) (bobp) (save-excursion (end-of-visible-line) (bobp)))
3482 (signal 'beginning-of-buffer nil))
3483 (unless (eq last-command 'kill-region)
3484 (kill-new "")
3485 (setq last-command 'kill-region))
3486 (cond ((zerop arg)
3487 ;; We need to kill in two steps, because the previous command
3488 ;; could have been a kill command, in which case the text
3489 ;; before point needs to be prepended to the current kill
3490 ;; ring entry and the text after point appended. Also, we
3491 ;; need to use save-excursion to avoid copying the same text
3492 ;; twice to the kill ring in read-only buffers.
3493 (save-excursion
3494 (kill-region (point) (progn (forward-visible-line 0) (point))))
3495 (kill-region (point) (progn (end-of-visible-line) (point))))
3496 ((< arg 0)
3497 (save-excursion
3498 (kill-region (point) (progn (end-of-visible-line) (point))))
3499 (kill-region (point)
3500 (progn (forward-visible-line (1+ arg))
3501 (unless (bobp) (backward-char))
3502 (point))))
3503 (t
3504 (save-excursion
3505 (kill-region (point) (progn (forward-visible-line 0) (point))))
3506 (kill-region (point)
3507 (progn (forward-visible-line arg) (point))))))
3508
3509 (defun forward-visible-line (arg)
3510 "Move forward by ARG lines, ignoring currently invisible newlines only.
3511 If ARG is negative, move backward -ARG lines.
3512 If ARG is zero, move to the beginning of the current line."
3513 (condition-case nil
3514 (if (> arg 0)
3515 (progn
3516 (while (> arg 0)
3517 (or (zerop (forward-line 1))
3518 (signal 'end-of-buffer nil))
3519 ;; If the newline we just skipped is invisible,
3520 ;; don't count it.
3521 (let ((prop
3522 (get-char-property (1- (point)) 'invisible)))
3523 (if (if (eq buffer-invisibility-spec t)
3524 prop
3525 (or (memq prop buffer-invisibility-spec)
3526 (assq prop buffer-invisibility-spec)))
3527 (setq arg (1+ arg))))
3528 (setq arg (1- arg)))
3529 ;; If invisible text follows, and it is a number of complete lines,
3530 ;; skip it.
3531 (let ((opoint (point)))
3532 (while (and (not (eobp))
3533 (let ((prop
3534 (get-char-property (point) 'invisible)))
3535 (if (eq buffer-invisibility-spec t)
3536 prop
3537 (or (memq prop buffer-invisibility-spec)
3538 (assq prop buffer-invisibility-spec)))))
3539 (goto-char
3540 (if (get-text-property (point) 'invisible)
3541 (or (next-single-property-change (point) 'invisible)
3542 (point-max))
3543 (next-overlay-change (point)))))
3544 (unless (bolp)
3545 (goto-char opoint))))
3546 (let ((first t))
3547 (while (or first (<= arg 0))
3548 (if first
3549 (beginning-of-line)
3550 (or (zerop (forward-line -1))
3551 (signal 'beginning-of-buffer nil)))
3552 ;; If the newline we just moved to is invisible,
3553 ;; don't count it.
3554 (unless (bobp)
3555 (let ((prop
3556 (get-char-property (1- (point)) 'invisible)))
3557 (unless (if (eq buffer-invisibility-spec t)
3558 prop
3559 (or (memq prop buffer-invisibility-spec)
3560 (assq prop buffer-invisibility-spec)))
3561 (setq arg (1+ arg)))))
3562 (setq first nil))
3563 ;; If invisible text follows, and it is a number of complete lines,
3564 ;; skip it.
3565 (let ((opoint (point)))
3566 (while (and (not (bobp))
3567 (let ((prop
3568 (get-char-property (1- (point)) 'invisible)))
3569 (if (eq buffer-invisibility-spec t)
3570 prop
3571 (or (memq prop buffer-invisibility-spec)
3572 (assq prop buffer-invisibility-spec)))))
3573 (goto-char
3574 (if (get-text-property (1- (point)) 'invisible)
3575 (or (previous-single-property-change (point) 'invisible)
3576 (point-min))
3577 (previous-overlay-change (point)))))
3578 (unless (bolp)
3579 (goto-char opoint)))))
3580 ((beginning-of-buffer end-of-buffer)
3581 nil)))
3582
3583 (defun end-of-visible-line ()
3584 "Move to end of current visible line."
3585 (end-of-line)
3586 ;; If the following character is currently invisible,
3587 ;; skip all characters with that same `invisible' property value,
3588 ;; then find the next newline.
3589 (while (and (not (eobp))
3590 (save-excursion
3591 (skip-chars-forward "^\n")
3592 (let ((prop
3593 (get-char-property (point) 'invisible)))
3594 (if (eq buffer-invisibility-spec t)
3595 prop
3596 (or (memq prop buffer-invisibility-spec)
3597 (assq prop buffer-invisibility-spec))))))
3598 (skip-chars-forward "^\n")
3599 (if (get-text-property (point) 'invisible)
3600 (goto-char (next-single-property-change (point) 'invisible))
3601 (goto-char (next-overlay-change (point))))
3602 (end-of-line)))
3603 \f
3604 (defun insert-buffer (buffer)
3605 "Insert after point the contents of BUFFER.
3606 Puts mark after the inserted text.
3607 BUFFER may be a buffer or a buffer name.
3608
3609 This function is meant for the user to run interactively.
3610 Don't call it from programs: use `insert-buffer-substring' instead!"
3611 (interactive
3612 (list
3613 (progn
3614 (barf-if-buffer-read-only)
3615 (read-buffer "Insert buffer: "
3616 (if (eq (selected-window) (next-window (selected-window)))
3617 (other-buffer (current-buffer))
3618 (window-buffer (next-window (selected-window))))
3619 t))))
3620 (push-mark
3621 (save-excursion
3622 (insert-buffer-substring (get-buffer buffer))
3623 (point)))
3624 nil)
3625
3626 (defun append-to-buffer (buffer start end)
3627 "Append to specified buffer the text of the region.
3628 It is inserted into that buffer before its point.
3629
3630 When calling from a program, give three arguments:
3631 BUFFER (or buffer name), START and END.
3632 START and END specify the portion of the current buffer to be copied."
3633 (interactive
3634 (list (read-buffer "Append to buffer: " (other-buffer (current-buffer) t))
3635 (region-beginning) (region-end)))
3636 (let* ((oldbuf (current-buffer))
3637 (append-to (get-buffer-create buffer))
3638 (windows (get-buffer-window-list append-to t t))
3639 point)
3640 (save-excursion
3641 (with-current-buffer append-to
3642 (setq point (point))
3643 (barf-if-buffer-read-only)
3644 (insert-buffer-substring oldbuf start end)
3645 (dolist (window windows)
3646 (when (= (window-point window) point)
3647 (set-window-point window (point))))))))
3648
3649 (defun prepend-to-buffer (buffer start end)
3650 "Prepend to specified buffer the text of the region.
3651 It is inserted into that buffer after its point.
3652
3653 When calling from a program, give three arguments:
3654 BUFFER (or buffer name), START and END.
3655 START and END specify the portion of the current buffer to be copied."
3656 (interactive "BPrepend to buffer: \nr")
3657 (let ((oldbuf (current-buffer)))
3658 (with-current-buffer (get-buffer-create buffer)
3659 (barf-if-buffer-read-only)
3660 (save-excursion
3661 (insert-buffer-substring oldbuf start end)))))
3662
3663 (defun copy-to-buffer (buffer start end)
3664 "Copy to specified buffer the text of the region.
3665 It is inserted into that buffer, replacing existing text there.
3666
3667 When calling from a program, give three arguments:
3668 BUFFER (or buffer name), START and END.
3669 START and END specify the portion of the current buffer to be copied."
3670 (interactive "BCopy to buffer: \nr")
3671 (let ((oldbuf (current-buffer)))
3672 (with-current-buffer (get-buffer-create buffer)
3673 (barf-if-buffer-read-only)
3674 (erase-buffer)
3675 (save-excursion
3676 (insert-buffer-substring oldbuf start end)))))
3677 \f
3678 (put 'mark-inactive 'error-conditions '(mark-inactive error))
3679 (put 'mark-inactive 'error-message (purecopy "The mark is not active now"))
3680
3681 (defvar activate-mark-hook nil
3682 "Hook run when the mark becomes active.
3683 It is also run at the end of a command, if the mark is active and
3684 it is possible that the region may have changed.")
3685
3686 (defvar deactivate-mark-hook nil
3687 "Hook run when the mark becomes inactive.")
3688
3689 (defun mark (&optional force)
3690 "Return this buffer's mark value as integer, or nil if never set.
3691
3692 In Transient Mark mode, this function signals an error if
3693 the mark is not active. However, if `mark-even-if-inactive' is non-nil,
3694 or the argument FORCE is non-nil, it disregards whether the mark
3695 is active, and returns an integer or nil in the usual way.
3696
3697 If you are using this in an editing command, you are most likely making
3698 a mistake; see the documentation of `set-mark'."
3699 (if (or force (not transient-mark-mode) mark-active mark-even-if-inactive)
3700 (marker-position (mark-marker))
3701 (signal 'mark-inactive nil)))
3702
3703 (defsubst deactivate-mark (&optional force)
3704 "Deactivate the mark by setting `mark-active' to nil.
3705 Unless FORCE is non-nil, this function does nothing if Transient
3706 Mark mode is disabled.
3707 This function also runs `deactivate-mark-hook'."
3708 (when (or transient-mark-mode force)
3709 (when (and (if (eq select-active-regions 'only)
3710 (eq (car-safe transient-mark-mode) 'only)
3711 select-active-regions)
3712 (region-active-p)
3713 (display-selections-p))
3714 ;; The var `saved-region-selection', if non-nil, is the text in
3715 ;; the region prior to the last command modifying the buffer.
3716 ;; Set the selection to that, or to the current region.
3717 (cond (saved-region-selection
3718 (x-set-selection 'PRIMARY saved-region-selection)
3719 (setq saved-region-selection nil))
3720 ((/= (region-beginning) (region-end))
3721 (x-set-selection 'PRIMARY
3722 (buffer-substring-no-properties
3723 (region-beginning)
3724 (region-end))))))
3725 (if (and (null force)
3726 (or (eq transient-mark-mode 'lambda)
3727 (and (eq (car-safe transient-mark-mode) 'only)
3728 (null (cdr transient-mark-mode)))))
3729 ;; When deactivating a temporary region, don't change
3730 ;; `mark-active' or run `deactivate-mark-hook'.
3731 (setq transient-mark-mode nil)
3732 (if (eq (car-safe transient-mark-mode) 'only)
3733 (setq transient-mark-mode (cdr transient-mark-mode)))
3734 (setq mark-active nil)
3735 (run-hooks 'deactivate-mark-hook))))
3736
3737 (defun activate-mark ()
3738 "Activate the mark."
3739 (when (mark t)
3740 (setq mark-active t)
3741 (unless transient-mark-mode
3742 (setq transient-mark-mode 'lambda))))
3743
3744 (defun set-mark (pos)
3745 "Set this buffer's mark to POS. Don't use this function!
3746 That is to say, don't use this function unless you want
3747 the user to see that the mark has moved, and you want the previous
3748 mark position to be lost.
3749
3750 Normally, when a new mark is set, the old one should go on the stack.
3751 This is why most applications should use `push-mark', not `set-mark'.
3752
3753 Novice Emacs Lisp programmers often try to use the mark for the wrong
3754 purposes. The mark saves a location for the user's convenience.
3755 Most editing commands should not alter the mark.
3756 To remember a location for internal use in the Lisp program,
3757 store it in a Lisp variable. Example:
3758
3759 (let ((beg (point))) (forward-line 1) (delete-region beg (point)))."
3760
3761 (if pos
3762 (progn
3763 (setq mark-active t)
3764 (run-hooks 'activate-mark-hook)
3765 (set-marker (mark-marker) pos (current-buffer)))
3766 ;; Normally we never clear mark-active except in Transient Mark mode.
3767 ;; But when we actually clear out the mark value too, we must
3768 ;; clear mark-active in any mode.
3769 (deactivate-mark t)
3770 (set-marker (mark-marker) nil)))
3771
3772 (defcustom use-empty-active-region nil
3773 "Whether \"region-aware\" commands should act on empty regions.
3774 If nil, region-aware commands treat empty regions as inactive.
3775 If non-nil, region-aware commands treat the region as active as
3776 long as the mark is active, even if the region is empty.
3777
3778 Region-aware commands are those that act on the region if it is
3779 active and Transient Mark mode is enabled, and on the text near
3780 point otherwise."
3781 :type 'boolean
3782 :version "23.1"
3783 :group 'editing-basics)
3784
3785 (defun use-region-p ()
3786 "Return t if the region is active and it is appropriate to act on it.
3787 This is used by commands that act specially on the region under
3788 Transient Mark mode.
3789
3790 The return value is t if Transient Mark mode is enabled and the
3791 mark is active; furthermore, if `use-empty-active-region' is nil,
3792 the region must not be empty. Otherwise, the return value is nil.
3793
3794 For some commands, it may be appropriate to ignore the value of
3795 `use-empty-active-region'; in that case, use `region-active-p'."
3796 (and (region-active-p)
3797 (or use-empty-active-region (> (region-end) (region-beginning)))))
3798
3799 (defun region-active-p ()
3800 "Return t if Transient Mark mode is enabled and the mark is active.
3801
3802 Some commands act specially on the region when Transient Mark
3803 mode is enabled. Usually, such commands should use
3804 `use-region-p' instead of this function, because `use-region-p'
3805 also checks the value of `use-empty-active-region'."
3806 (and transient-mark-mode mark-active))
3807
3808 (defvar mark-ring nil
3809 "The list of former marks of the current buffer, most recent first.")
3810 (make-variable-buffer-local 'mark-ring)
3811 (put 'mark-ring 'permanent-local t)
3812
3813 (defcustom mark-ring-max 16
3814 "Maximum size of mark ring. Start discarding off end if gets this big."
3815 :type 'integer
3816 :group 'editing-basics)
3817
3818 (defvar global-mark-ring nil
3819 "The list of saved global marks, most recent first.")
3820
3821 (defcustom global-mark-ring-max 16
3822 "Maximum size of global mark ring. \
3823 Start discarding off end if gets this big."
3824 :type 'integer
3825 :group 'editing-basics)
3826
3827 (defun pop-to-mark-command ()
3828 "Jump to mark, and pop a new position for mark off the ring.
3829 \(Does not affect global mark ring\)."
3830 (interactive)
3831 (if (null (mark t))
3832 (error "No mark set in this buffer")
3833 (if (= (point) (mark t))
3834 (message "Mark popped"))
3835 (goto-char (mark t))
3836 (pop-mark)))
3837
3838 (defun push-mark-command (arg &optional nomsg)
3839 "Set mark at where point is.
3840 If no prefix ARG and mark is already set there, just activate it.
3841 Display `Mark set' unless the optional second arg NOMSG is non-nil."
3842 (interactive "P")
3843 (let ((mark (marker-position (mark-marker))))
3844 (if (or arg (null mark) (/= mark (point)))
3845 (push-mark nil nomsg t)
3846 (setq mark-active t)
3847 (run-hooks 'activate-mark-hook)
3848 (unless nomsg
3849 (message "Mark activated")))))
3850
3851 (defcustom set-mark-command-repeat-pop nil
3852 "Non-nil means repeating \\[set-mark-command] after popping mark pops it again.
3853 That means that C-u \\[set-mark-command] \\[set-mark-command]
3854 will pop the mark twice, and
3855 C-u \\[set-mark-command] \\[set-mark-command] \\[set-mark-command]
3856 will pop the mark three times.
3857
3858 A value of nil means \\[set-mark-command]'s behavior does not change
3859 after C-u \\[set-mark-command]."
3860 :type 'boolean
3861 :group 'editing-basics)
3862
3863 (defcustom set-mark-default-inactive nil
3864 "If non-nil, setting the mark does not activate it.
3865 This causes \\[set-mark-command] and \\[exchange-point-and-mark] to
3866 behave the same whether or not `transient-mark-mode' is enabled."
3867 :type 'boolean
3868 :group 'editing-basics
3869 :version "23.1")
3870
3871 (defun set-mark-command (arg)
3872 "Set the mark where point is, or jump to the mark.
3873 Setting the mark also alters the region, which is the text
3874 between point and mark; this is the closest equivalent in
3875 Emacs to what some editors call the \"selection\".
3876
3877 With no prefix argument, set the mark at point, and push the
3878 old mark position on local mark ring. Also push the old mark on
3879 global mark ring, if the previous mark was set in another buffer.
3880
3881 When Transient Mark Mode is off, immediately repeating this
3882 command activates `transient-mark-mode' temporarily.
3883
3884 With prefix argument \(e.g., \\[universal-argument] \\[set-mark-command]\), \
3885 jump to the mark, and set the mark from
3886 position popped off the local mark ring \(this does not affect the global
3887 mark ring\). Use \\[pop-global-mark] to jump to a mark popped off the global
3888 mark ring \(see `pop-global-mark'\).
3889
3890 If `set-mark-command-repeat-pop' is non-nil, repeating
3891 the \\[set-mark-command] command with no prefix argument pops the next position
3892 off the local (or global) mark ring and jumps there.
3893
3894 With \\[universal-argument] \\[universal-argument] as prefix
3895 argument, unconditionally set mark where point is, even if
3896 `set-mark-command-repeat-pop' is non-nil.
3897
3898 Novice Emacs Lisp programmers often try to use the mark for the wrong
3899 purposes. See the documentation of `set-mark' for more information."
3900 (interactive "P")
3901 (cond ((eq transient-mark-mode 'lambda)
3902 (setq transient-mark-mode nil))
3903 ((eq (car-safe transient-mark-mode) 'only)
3904 (deactivate-mark)))
3905 (cond
3906 ((and (consp arg) (> (prefix-numeric-value arg) 4))
3907 (push-mark-command nil))
3908 ((not (eq this-command 'set-mark-command))
3909 (if arg
3910 (pop-to-mark-command)
3911 (push-mark-command t)))
3912 ((and set-mark-command-repeat-pop
3913 (eq last-command 'pop-to-mark-command))
3914 (setq this-command 'pop-to-mark-command)
3915 (pop-to-mark-command))
3916 ((and set-mark-command-repeat-pop
3917 (eq last-command 'pop-global-mark)
3918 (not arg))
3919 (setq this-command 'pop-global-mark)
3920 (pop-global-mark))
3921 (arg
3922 (setq this-command 'pop-to-mark-command)
3923 (pop-to-mark-command))
3924 ((eq last-command 'set-mark-command)
3925 (if (region-active-p)
3926 (progn
3927 (deactivate-mark)
3928 (message "Mark deactivated"))
3929 (activate-mark)
3930 (message "Mark activated")))
3931 (t
3932 (push-mark-command nil)
3933 (if set-mark-default-inactive (deactivate-mark)))))
3934
3935 (defun push-mark (&optional location nomsg activate)
3936 "Set mark at LOCATION (point, by default) and push old mark on mark ring.
3937 If the last global mark pushed was not in the current buffer,
3938 also push LOCATION on the global mark ring.
3939 Display `Mark set' unless the optional second arg NOMSG is non-nil.
3940
3941 Novice Emacs Lisp programmers often try to use the mark for the wrong
3942 purposes. See the documentation of `set-mark' for more information.
3943
3944 In Transient Mark mode, activate mark if optional third arg ACTIVATE non-nil."
3945 (unless (null (mark t))
3946 (setq mark-ring (cons (copy-marker (mark-marker)) mark-ring))
3947 (when (> (length mark-ring) mark-ring-max)
3948 (move-marker (car (nthcdr mark-ring-max mark-ring)) nil)
3949 (setcdr (nthcdr (1- mark-ring-max) mark-ring) nil)))
3950 (set-marker (mark-marker) (or location (point)) (current-buffer))
3951 ;; Now push the mark on the global mark ring.
3952 (if (and global-mark-ring
3953 (eq (marker-buffer (car global-mark-ring)) (current-buffer)))
3954 ;; The last global mark pushed was in this same buffer.
3955 ;; Don't push another one.
3956 nil
3957 (setq global-mark-ring (cons (copy-marker (mark-marker)) global-mark-ring))
3958 (when (> (length global-mark-ring) global-mark-ring-max)
3959 (move-marker (car (nthcdr global-mark-ring-max global-mark-ring)) nil)
3960 (setcdr (nthcdr (1- global-mark-ring-max) global-mark-ring) nil)))
3961 (or nomsg executing-kbd-macro (> (minibuffer-depth) 0)
3962 (message "Mark set"))
3963 (if (or activate (not transient-mark-mode))
3964 (set-mark (mark t)))
3965 nil)
3966
3967 (defun pop-mark ()
3968 "Pop off mark ring into the buffer's actual mark.
3969 Does not set point. Does nothing if mark ring is empty."
3970 (when mark-ring
3971 (setq mark-ring (nconc mark-ring (list (copy-marker (mark-marker)))))
3972 (set-marker (mark-marker) (+ 0 (car mark-ring)) (current-buffer))
3973 (move-marker (car mark-ring) nil)
3974 (if (null (mark t)) (ding))
3975 (setq mark-ring (cdr mark-ring)))
3976 (deactivate-mark))
3977
3978 (define-obsolete-function-alias
3979 'exchange-dot-and-mark 'exchange-point-and-mark "23.3")
3980 (defun exchange-point-and-mark (&optional arg)
3981 "Put the mark where point is now, and point where the mark is now.
3982 This command works even when the mark is not active,
3983 and it reactivates the mark.
3984
3985 If Transient Mark mode is on, a prefix ARG deactivates the mark
3986 if it is active, and otherwise avoids reactivating it. If
3987 Transient Mark mode is off, a prefix ARG enables Transient Mark
3988 mode temporarily."
3989 (interactive "P")
3990 (let ((omark (mark t))
3991 (temp-highlight (eq (car-safe transient-mark-mode) 'only)))
3992 (if (null omark)
3993 (error "No mark set in this buffer"))
3994 (deactivate-mark)
3995 (set-mark (point))
3996 (goto-char omark)
3997 (if set-mark-default-inactive (deactivate-mark))
3998 (cond (temp-highlight
3999 (setq transient-mark-mode (cons 'only transient-mark-mode)))
4000 ((or (and arg (region-active-p)) ; (xor arg (not (region-active-p)))
4001 (not (or arg (region-active-p))))
4002 (deactivate-mark))
4003 (t (activate-mark)))
4004 nil))
4005
4006 (defcustom shift-select-mode t
4007 "When non-nil, shifted motion keys activate the mark momentarily.
4008
4009 While the mark is activated in this way, any shift-translated point
4010 motion key extends the region, and if Transient Mark mode was off, it
4011 is temporarily turned on. Furthermore, the mark will be deactivated
4012 by any subsequent point motion key that was not shift-translated, or
4013 by any action that normally deactivates the mark in Transient Mark mode.
4014
4015 See `this-command-keys-shift-translated' for the meaning of
4016 shift-translation."
4017 :type 'boolean
4018 :group 'editing-basics)
4019
4020 (defun handle-shift-selection ()
4021 "Activate/deactivate mark depending on invocation thru shift translation.
4022 This function is called by `call-interactively' when a command
4023 with a `^' character in its `interactive' spec is invoked, before
4024 running the command itself.
4025
4026 If `shift-select-mode' is enabled and the command was invoked
4027 through shift translation, set the mark and activate the region
4028 temporarily, unless it was already set in this way. See
4029 `this-command-keys-shift-translated' for the meaning of shift
4030 translation.
4031
4032 Otherwise, if the region has been activated temporarily,
4033 deactivate it, and restore the variable `transient-mark-mode' to
4034 its earlier value."
4035 (cond ((and shift-select-mode this-command-keys-shift-translated)
4036 (unless (and mark-active
4037 (eq (car-safe transient-mark-mode) 'only))
4038 (setq transient-mark-mode
4039 (cons 'only
4040 (unless (eq transient-mark-mode 'lambda)
4041 transient-mark-mode)))
4042 (push-mark nil nil t)))
4043 ((eq (car-safe transient-mark-mode) 'only)
4044 (setq transient-mark-mode (cdr transient-mark-mode))
4045 (deactivate-mark))))
4046
4047 (define-minor-mode transient-mark-mode
4048 "Toggle Transient Mark mode.
4049 With ARG, turn Transient Mark mode on if ARG is positive, off otherwise.
4050
4051 In Transient Mark mode, when the mark is active, the region is highlighted.
4052 Changing the buffer \"deactivates\" the mark.
4053 So do certain other operations that set the mark
4054 but whose main purpose is something else--for example,
4055 incremental search, \\[beginning-of-buffer], and \\[end-of-buffer].
4056
4057 You can also deactivate the mark by typing \\[keyboard-quit] or
4058 \\[keyboard-escape-quit].
4059
4060 Many commands change their behavior when Transient Mark mode is in effect
4061 and the mark is active, by acting on the region instead of their usual
4062 default part of the buffer's text. Examples of such commands include
4063 \\[comment-dwim], \\[flush-lines], \\[keep-lines], \
4064 \\[query-replace], \\[query-replace-regexp], \\[ispell], and \\[undo].
4065 Invoke \\[apropos-documentation] and type \"transient\" or
4066 \"mark.*active\" at the prompt, to see the documentation of
4067 commands which are sensitive to the Transient Mark mode."
4068 :global t
4069 ;; It's defined in C/cus-start, this stops the d-m-m macro defining it again.
4070 :variable transient-mark-mode)
4071
4072 (defvar widen-automatically t
4073 "Non-nil means it is ok for commands to call `widen' when they want to.
4074 Some commands will do this in order to go to positions outside
4075 the current accessible part of the buffer.
4076
4077 If `widen-automatically' is nil, these commands will do something else
4078 as a fallback, and won't change the buffer bounds.")
4079
4080 (defvar non-essential nil
4081 "Whether the currently executing code is performing an essential task.
4082 This variable should be non-nil only when running code which should not
4083 disturb the user. E.g. it can be used to prevent Tramp from prompting the
4084 user for a password when we are simply scanning a set of files in the
4085 background or displaying possible completions before the user even asked
4086 for it.")
4087
4088 (defun pop-global-mark ()
4089 "Pop off global mark ring and jump to the top location."
4090 (interactive)
4091 ;; Pop entries which refer to non-existent buffers.
4092 (while (and global-mark-ring (not (marker-buffer (car global-mark-ring))))
4093 (setq global-mark-ring (cdr global-mark-ring)))
4094 (or global-mark-ring
4095 (error "No global mark set"))
4096 (let* ((marker (car global-mark-ring))
4097 (buffer (marker-buffer marker))
4098 (position (marker-position marker)))
4099 (setq global-mark-ring (nconc (cdr global-mark-ring)
4100 (list (car global-mark-ring))))
4101 (set-buffer buffer)
4102 (or (and (>= position (point-min))
4103 (<= position (point-max)))
4104 (if widen-automatically
4105 (widen)
4106 (error "Global mark position is outside accessible part of buffer")))
4107 (goto-char position)
4108 (switch-to-buffer buffer)))
4109 \f
4110 (defcustom next-line-add-newlines nil
4111 "If non-nil, `next-line' inserts newline to avoid `end of buffer' error."
4112 :type 'boolean
4113 :version "21.1"
4114 :group 'editing-basics)
4115
4116 (defun next-line (&optional arg try-vscroll)
4117 "Move cursor vertically down ARG lines.
4118 Interactively, vscroll tall lines if `auto-window-vscroll' is enabled.
4119 If there is no character in the target line exactly under the current column,
4120 the cursor is positioned after the character in that line which spans this
4121 column, or at the end of the line if it is not long enough.
4122 If there is no line in the buffer after this one, behavior depends on the
4123 value of `next-line-add-newlines'. If non-nil, it inserts a newline character
4124 to create a line, and moves the cursor to that line. Otherwise it moves the
4125 cursor to the end of the buffer.
4126
4127 If the variable `line-move-visual' is non-nil, this command moves
4128 by display lines. Otherwise, it moves by buffer lines, without
4129 taking variable-width characters or continued lines into account.
4130
4131 The command \\[set-goal-column] can be used to create
4132 a semipermanent goal column for this command.
4133 Then instead of trying to move exactly vertically (or as close as possible),
4134 this command moves to the specified goal column (or as close as possible).
4135 The goal column is stored in the variable `goal-column', which is nil
4136 when there is no goal column.
4137
4138 If you are thinking of using this in a Lisp program, consider
4139 using `forward-line' instead. It is usually easier to use
4140 and more reliable (no dependence on goal column, etc.)."
4141 (interactive "^p\np")
4142 (or arg (setq arg 1))
4143 (if (and next-line-add-newlines (= arg 1))
4144 (if (save-excursion (end-of-line) (eobp))
4145 ;; When adding a newline, don't expand an abbrev.
4146 (let ((abbrev-mode nil))
4147 (end-of-line)
4148 (insert (if use-hard-newlines hard-newline "\n")))
4149 (line-move arg nil nil try-vscroll))
4150 (if (called-interactively-p 'interactive)
4151 (condition-case err
4152 (line-move arg nil nil try-vscroll)
4153 ((beginning-of-buffer end-of-buffer)
4154 (signal (car err) (cdr err))))
4155 (line-move arg nil nil try-vscroll)))
4156 nil)
4157
4158 (defun previous-line (&optional arg try-vscroll)
4159 "Move cursor vertically up ARG lines.
4160 Interactively, vscroll tall lines if `auto-window-vscroll' is enabled.
4161 If there is no character in the target line exactly over the current column,
4162 the cursor is positioned after the character in that line which spans this
4163 column, or at the end of the line if it is not long enough.
4164
4165 If the variable `line-move-visual' is non-nil, this command moves
4166 by display lines. Otherwise, it moves by buffer lines, without
4167 taking variable-width characters or continued lines into account.
4168
4169 The command \\[set-goal-column] can be used to create
4170 a semipermanent goal column for this command.
4171 Then instead of trying to move exactly vertically (or as close as possible),
4172 this command moves to the specified goal column (or as close as possible).
4173 The goal column is stored in the variable `goal-column', which is nil
4174 when there is no goal column.
4175
4176 If you are thinking of using this in a Lisp program, consider using
4177 `forward-line' with a negative argument instead. It is usually easier
4178 to use and more reliable (no dependence on goal column, etc.)."
4179 (interactive "^p\np")
4180 (or arg (setq arg 1))
4181 (if (called-interactively-p 'interactive)
4182 (condition-case err
4183 (line-move (- arg) nil nil try-vscroll)
4184 ((beginning-of-buffer end-of-buffer)
4185 (signal (car err) (cdr err))))
4186 (line-move (- arg) nil nil try-vscroll))
4187 nil)
4188
4189 (defcustom track-eol nil
4190 "Non-nil means vertical motion starting at end of line keeps to ends of lines.
4191 This means moving to the end of each line moved onto.
4192 The beginning of a blank line does not count as the end of a line.
4193 This has no effect when `line-move-visual' is non-nil."
4194 :type 'boolean
4195 :group 'editing-basics)
4196
4197 (defcustom goal-column nil
4198 "Semipermanent goal column for vertical motion, as set by \\[set-goal-column], or nil."
4199 :type '(choice integer
4200 (const :tag "None" nil))
4201 :group 'editing-basics)
4202 (make-variable-buffer-local 'goal-column)
4203
4204 (defvar temporary-goal-column 0
4205 "Current goal column for vertical motion.
4206 It is the column where point was at the start of the current run
4207 of vertical motion commands.
4208
4209 When moving by visual lines via `line-move-visual', it is a cons
4210 cell (COL . HSCROLL), where COL is the x-position, in pixels,
4211 divided by the default column width, and HSCROLL is the number of
4212 columns by which window is scrolled from left margin.
4213
4214 When the `track-eol' feature is doing its job, the value is
4215 `most-positive-fixnum'.")
4216
4217 (defcustom line-move-ignore-invisible t
4218 "Non-nil means \\[next-line] and \\[previous-line] ignore invisible lines.
4219 Outline mode sets this."
4220 :type 'boolean
4221 :group 'editing-basics)
4222
4223 (defcustom line-move-visual t
4224 "When non-nil, `line-move' moves point by visual lines.
4225 This movement is based on where the cursor is displayed on the
4226 screen, instead of relying on buffer contents alone. It takes
4227 into account variable-width characters and line continuation."
4228 :type 'boolean
4229 :group 'editing-basics)
4230
4231 ;; Returns non-nil if partial move was done.
4232 (defun line-move-partial (arg noerror to-end)
4233 (if (< arg 0)
4234 ;; Move backward (up).
4235 ;; If already vscrolled, reduce vscroll
4236 (let ((vs (window-vscroll nil t)))
4237 (when (> vs (frame-char-height))
4238 (set-window-vscroll nil (- vs (frame-char-height)) t)))
4239
4240 ;; Move forward (down).
4241 (let* ((lh (window-line-height -1))
4242 (vpos (nth 1 lh))
4243 (ypos (nth 2 lh))
4244 (rbot (nth 3 lh))
4245 py vs)
4246 (when (or (null lh)
4247 (>= rbot (frame-char-height))
4248 (<= ypos (- (frame-char-height))))
4249 (unless lh
4250 (let ((wend (pos-visible-in-window-p t nil t)))
4251 (setq rbot (nth 3 wend)
4252 vpos (nth 5 wend))))
4253 (cond
4254 ;; If last line of window is fully visible, move forward.
4255 ((or (null rbot) (= rbot 0))
4256 nil)
4257 ;; If cursor is not in the bottom scroll margin, move forward.
4258 ((and (> vpos 0)
4259 (< (setq py
4260 (or (nth 1 (window-line-height))
4261 (let ((ppos (posn-at-point)))
4262 (cdr (or (posn-actual-col-row ppos)
4263 (posn-col-row ppos))))))
4264 (min (- (window-text-height) scroll-margin 1) (1- vpos))))
4265 nil)
4266 ;; When already vscrolled, we vscroll some more if we can,
4267 ;; or clear vscroll and move forward at end of tall image.
4268 ((> (setq vs (window-vscroll nil t)) 0)
4269 (when (> rbot 0)
4270 (set-window-vscroll nil (+ vs (min rbot (frame-char-height))) t)))
4271 ;; If cursor just entered the bottom scroll margin, move forward,
4272 ;; but also vscroll one line so redisplay wont recenter.
4273 ((and (> vpos 0)
4274 (= py (min (- (window-text-height) scroll-margin 1)
4275 (1- vpos))))
4276 (set-window-vscroll nil (frame-char-height) t)
4277 (line-move-1 arg noerror to-end)
4278 t)
4279 ;; If there are lines above the last line, scroll-up one line.
4280 ((> vpos 0)
4281 (scroll-up 1)
4282 t)
4283 ;; Finally, start vscroll.
4284 (t
4285 (set-window-vscroll nil (frame-char-height) t)))))))
4286
4287
4288 ;; This is like line-move-1 except that it also performs
4289 ;; vertical scrolling of tall images if appropriate.
4290 ;; That is not really a clean thing to do, since it mixes
4291 ;; scrolling with cursor motion. But so far we don't have
4292 ;; a cleaner solution to the problem of making C-n do something
4293 ;; useful given a tall image.
4294 (defun line-move (arg &optional noerror to-end try-vscroll)
4295 (unless (and auto-window-vscroll try-vscroll
4296 ;; Only vscroll for single line moves
4297 (= (abs arg) 1)
4298 ;; But don't vscroll in a keyboard macro.
4299 (not defining-kbd-macro)
4300 (not executing-kbd-macro)
4301 (line-move-partial arg noerror to-end))
4302 (set-window-vscroll nil 0 t)
4303 (if line-move-visual
4304 (line-move-visual arg noerror)
4305 (line-move-1 arg noerror to-end))))
4306
4307 ;; Display-based alternative to line-move-1.
4308 ;; Arg says how many lines to move. The value is t if we can move the
4309 ;; specified number of lines.
4310 (defun line-move-visual (arg &optional noerror)
4311 (let ((opoint (point))
4312 (hscroll (window-hscroll))
4313 target-hscroll)
4314 ;; Check if the previous command was a line-motion command, or if
4315 ;; we were called from some other command.
4316 (if (and (consp temporary-goal-column)
4317 (memq last-command `(next-line previous-line ,this-command)))
4318 ;; If so, there's no need to reset `temporary-goal-column',
4319 ;; but we may need to hscroll.
4320 (if (or (/= (cdr temporary-goal-column) hscroll)
4321 (> (cdr temporary-goal-column) 0))
4322 (setq target-hscroll (cdr temporary-goal-column)))
4323 ;; Otherwise, we should reset `temporary-goal-column'.
4324 (let ((posn (posn-at-point)))
4325 (cond
4326 ;; Handle the `overflow-newline-into-fringe' case:
4327 ((eq (nth 1 posn) 'right-fringe)
4328 (setq temporary-goal-column (cons (- (window-width) 1) hscroll)))
4329 ((car (posn-x-y posn))
4330 (setq temporary-goal-column
4331 (cons (/ (float (car (posn-x-y posn)))
4332 (frame-char-width)) hscroll))))))
4333 (if target-hscroll
4334 (set-window-hscroll (selected-window) target-hscroll))
4335 (or (and (= (vertical-motion
4336 (cons (or goal-column
4337 (if (consp temporary-goal-column)
4338 (car temporary-goal-column)
4339 temporary-goal-column))
4340 arg))
4341 arg)
4342 (or (>= arg 0)
4343 (/= (point) opoint)
4344 ;; If the goal column lies on a display string,
4345 ;; `vertical-motion' advances the cursor to the end
4346 ;; of the string. For arg < 0, this can cause the
4347 ;; cursor to get stuck. (Bug#3020).
4348 (= (vertical-motion arg) arg)))
4349 (unless noerror
4350 (signal (if (< arg 0) 'beginning-of-buffer 'end-of-buffer)
4351 nil)))))
4352
4353 ;; This is the guts of next-line and previous-line.
4354 ;; Arg says how many lines to move.
4355 ;; The value is t if we can move the specified number of lines.
4356 (defun line-move-1 (arg &optional noerror to-end)
4357 ;; Don't run any point-motion hooks, and disregard intangibility,
4358 ;; for intermediate positions.
4359 (let ((inhibit-point-motion-hooks t)
4360 (opoint (point))
4361 (orig-arg arg))
4362 (if (consp temporary-goal-column)
4363 (setq temporary-goal-column (+ (car temporary-goal-column)
4364 (cdr temporary-goal-column))))
4365 (unwind-protect
4366 (progn
4367 (if (not (memq last-command '(next-line previous-line)))
4368 (setq temporary-goal-column
4369 (if (and track-eol (eolp)
4370 ;; Don't count beg of empty line as end of line
4371 ;; unless we just did explicit end-of-line.
4372 (or (not (bolp)) (eq last-command 'move-end-of-line)))
4373 most-positive-fixnum
4374 (current-column))))
4375
4376 (if (not (or (integerp selective-display)
4377 line-move-ignore-invisible))
4378 ;; Use just newline characters.
4379 ;; Set ARG to 0 if we move as many lines as requested.
4380 (or (if (> arg 0)
4381 (progn (if (> arg 1) (forward-line (1- arg)))
4382 ;; This way of moving forward ARG lines
4383 ;; verifies that we have a newline after the last one.
4384 ;; It doesn't get confused by intangible text.
4385 (end-of-line)
4386 (if (zerop (forward-line 1))
4387 (setq arg 0)))
4388 (and (zerop (forward-line arg))
4389 (bolp)
4390 (setq arg 0)))
4391 (unless noerror
4392 (signal (if (< arg 0)
4393 'beginning-of-buffer
4394 'end-of-buffer)
4395 nil)))
4396 ;; Move by arg lines, but ignore invisible ones.
4397 (let (done)
4398 (while (and (> arg 0) (not done))
4399 ;; If the following character is currently invisible,
4400 ;; skip all characters with that same `invisible' property value.
4401 (while (and (not (eobp)) (invisible-p (point)))
4402 (goto-char (next-char-property-change (point))))
4403 ;; Move a line.
4404 ;; We don't use `end-of-line', since we want to escape
4405 ;; from field boundaries occurring exactly at point.
4406 (goto-char (constrain-to-field
4407 (let ((inhibit-field-text-motion t))
4408 (line-end-position))
4409 (point) t t
4410 'inhibit-line-move-field-capture))
4411 ;; If there's no invisibility here, move over the newline.
4412 (cond
4413 ((eobp)
4414 (if (not noerror)
4415 (signal 'end-of-buffer nil)
4416 (setq done t)))
4417 ((and (> arg 1) ;; Use vertical-motion for last move
4418 (not (integerp selective-display))
4419 (not (invisible-p (point))))
4420 ;; We avoid vertical-motion when possible
4421 ;; because that has to fontify.
4422 (forward-line 1))
4423 ;; Otherwise move a more sophisticated way.
4424 ((zerop (vertical-motion 1))
4425 (if (not noerror)
4426 (signal 'end-of-buffer nil)
4427 (setq done t))))
4428 (unless done
4429 (setq arg (1- arg))))
4430 ;; The logic of this is the same as the loop above,
4431 ;; it just goes in the other direction.
4432 (while (and (< arg 0) (not done))
4433 ;; For completely consistency with the forward-motion
4434 ;; case, we should call beginning-of-line here.
4435 ;; However, if point is inside a field and on a
4436 ;; continued line, the call to (vertical-motion -1)
4437 ;; below won't move us back far enough; then we return
4438 ;; to the same column in line-move-finish, and point
4439 ;; gets stuck -- cyd
4440 (forward-line 0)
4441 (cond
4442 ((bobp)
4443 (if (not noerror)
4444 (signal 'beginning-of-buffer nil)
4445 (setq done t)))
4446 ((and (< arg -1) ;; Use vertical-motion for last move
4447 (not (integerp selective-display))
4448 (not (invisible-p (1- (point)))))
4449 (forward-line -1))
4450 ((zerop (vertical-motion -1))
4451 (if (not noerror)
4452 (signal 'beginning-of-buffer nil)
4453 (setq done t))))
4454 (unless done
4455 (setq arg (1+ arg))
4456 (while (and ;; Don't move over previous invis lines
4457 ;; if our target is the middle of this line.
4458 (or (zerop (or goal-column temporary-goal-column))
4459 (< arg 0))
4460 (not (bobp)) (invisible-p (1- (point))))
4461 (goto-char (previous-char-property-change (point))))))))
4462 ;; This is the value the function returns.
4463 (= arg 0))
4464
4465 (cond ((> arg 0)
4466 ;; If we did not move down as far as desired, at least go
4467 ;; to end of line. Be sure to call point-entered and
4468 ;; point-left-hooks.
4469 (let* ((npoint (prog1 (line-end-position)
4470 (goto-char opoint)))
4471 (inhibit-point-motion-hooks nil))
4472 (goto-char npoint)))
4473 ((< arg 0)
4474 ;; If we did not move up as far as desired,
4475 ;; at least go to beginning of line.
4476 (let* ((npoint (prog1 (line-beginning-position)
4477 (goto-char opoint)))
4478 (inhibit-point-motion-hooks nil))
4479 (goto-char npoint)))
4480 (t
4481 (line-move-finish (or goal-column temporary-goal-column)
4482 opoint (> orig-arg 0)))))))
4483
4484 (defun line-move-finish (column opoint forward)
4485 (let ((repeat t))
4486 (while repeat
4487 ;; Set REPEAT to t to repeat the whole thing.
4488 (setq repeat nil)
4489
4490 (let (new
4491 (old (point))
4492 (line-beg (line-beginning-position))
4493 (line-end
4494 ;; Compute the end of the line
4495 ;; ignoring effectively invisible newlines.
4496 (save-excursion
4497 ;; Like end-of-line but ignores fields.
4498 (skip-chars-forward "^\n")
4499 (while (and (not (eobp)) (invisible-p (point)))
4500 (goto-char (next-char-property-change (point)))
4501 (skip-chars-forward "^\n"))
4502 (point))))
4503
4504 ;; Move to the desired column.
4505 (line-move-to-column (truncate column))
4506
4507 ;; Corner case: suppose we start out in a field boundary in
4508 ;; the middle of a continued line. When we get to
4509 ;; line-move-finish, point is at the start of a new *screen*
4510 ;; line but the same text line; then line-move-to-column would
4511 ;; move us backwards. Test using C-n with point on the "x" in
4512 ;; (insert "a" (propertize "x" 'field t) (make-string 89 ?y))
4513 (and forward
4514 (< (point) old)
4515 (goto-char old))
4516
4517 (setq new (point))
4518
4519 ;; Process intangibility within a line.
4520 ;; With inhibit-point-motion-hooks bound to nil, a call to
4521 ;; goto-char moves point past intangible text.
4522
4523 ;; However, inhibit-point-motion-hooks controls both the
4524 ;; intangibility and the point-entered/point-left hooks. The
4525 ;; following hack avoids calling the point-* hooks
4526 ;; unnecessarily. Note that we move *forward* past intangible
4527 ;; text when the initial and final points are the same.
4528 (goto-char new)
4529 (let ((inhibit-point-motion-hooks nil))
4530 (goto-char new)
4531
4532 ;; If intangibility moves us to a different (later) place
4533 ;; in the same line, use that as the destination.
4534 (if (<= (point) line-end)
4535 (setq new (point))
4536 ;; If that position is "too late",
4537 ;; try the previous allowable position.
4538 ;; See if it is ok.
4539 (backward-char)
4540 (if (if forward
4541 ;; If going forward, don't accept the previous
4542 ;; allowable position if it is before the target line.
4543 (< line-beg (point))
4544 ;; If going backward, don't accept the previous
4545 ;; allowable position if it is still after the target line.
4546 (<= (point) line-end))
4547 (setq new (point))
4548 ;; As a last resort, use the end of the line.
4549 (setq new line-end))))
4550
4551 ;; Now move to the updated destination, processing fields
4552 ;; as well as intangibility.
4553 (goto-char opoint)
4554 (let ((inhibit-point-motion-hooks nil))
4555 (goto-char
4556 ;; Ignore field boundaries if the initial and final
4557 ;; positions have the same `field' property, even if the
4558 ;; fields are non-contiguous. This seems to be "nicer"
4559 ;; behavior in many situations.
4560 (if (eq (get-char-property new 'field)
4561 (get-char-property opoint 'field))
4562 new
4563 (constrain-to-field new opoint t t
4564 'inhibit-line-move-field-capture))))
4565
4566 ;; If all this moved us to a different line,
4567 ;; retry everything within that new line.
4568 (when (or (< (point) line-beg) (> (point) line-end))
4569 ;; Repeat the intangibility and field processing.
4570 (setq repeat t))))))
4571
4572 (defun line-move-to-column (col)
4573 "Try to find column COL, considering invisibility.
4574 This function works only in certain cases,
4575 because what we really need is for `move-to-column'
4576 and `current-column' to be able to ignore invisible text."
4577 (if (zerop col)
4578 (beginning-of-line)
4579 (move-to-column col))
4580
4581 (when (and line-move-ignore-invisible
4582 (not (bolp)) (invisible-p (1- (point))))
4583 (let ((normal-location (point))
4584 (normal-column (current-column)))
4585 ;; If the following character is currently invisible,
4586 ;; skip all characters with that same `invisible' property value.
4587 (while (and (not (eobp))
4588 (invisible-p (point)))
4589 (goto-char (next-char-property-change (point))))
4590 ;; Have we advanced to a larger column position?
4591 (if (> (current-column) normal-column)
4592 ;; We have made some progress towards the desired column.
4593 ;; See if we can make any further progress.
4594 (line-move-to-column (+ (current-column) (- col normal-column)))
4595 ;; Otherwise, go to the place we originally found
4596 ;; and move back over invisible text.
4597 ;; that will get us to the same place on the screen
4598 ;; but with a more reasonable buffer position.
4599 (goto-char normal-location)
4600 (let ((line-beg (line-beginning-position)))
4601 (while (and (not (bolp)) (invisible-p (1- (point))))
4602 (goto-char (previous-char-property-change (point) line-beg))))))))
4603
4604 (defun move-end-of-line (arg)
4605 "Move point to end of current line as displayed.
4606 With argument ARG not nil or 1, move forward ARG - 1 lines first.
4607 If point reaches the beginning or end of buffer, it stops there.
4608
4609 To ignore the effects of the `intangible' text or overlay
4610 property, bind `inhibit-point-motion-hooks' to t.
4611 If there is an image in the current line, this function
4612 disregards newlines that are part of the text on which the image
4613 rests."
4614 (interactive "^p")
4615 (or arg (setq arg 1))
4616 (let (done)
4617 (while (not done)
4618 (let ((newpos
4619 (save-excursion
4620 (let ((goal-column 0)
4621 (line-move-visual nil))
4622 (and (line-move arg t)
4623 ;; With bidi reordering, we may not be at bol,
4624 ;; so make sure we are.
4625 (skip-chars-backward "^\n")
4626 (not (bobp))
4627 (progn
4628 (while (and (not (bobp)) (invisible-p (1- (point))))
4629 (goto-char (previous-single-char-property-change
4630 (point) 'invisible)))
4631 (backward-char 1)))
4632 (point)))))
4633 (goto-char newpos)
4634 (if (and (> (point) newpos)
4635 (eq (preceding-char) ?\n))
4636 (backward-char 1)
4637 (if (and (> (point) newpos) (not (eobp))
4638 (not (eq (following-char) ?\n)))
4639 ;; If we skipped something intangible and now we're not
4640 ;; really at eol, keep going.
4641 (setq arg 1)
4642 (setq done t)))))))
4643
4644 (defun move-beginning-of-line (arg)
4645 "Move point to beginning of current line as displayed.
4646 \(If there's an image in the line, this disregards newlines
4647 which are part of the text that the image rests on.)
4648
4649 With argument ARG not nil or 1, move forward ARG - 1 lines first.
4650 If point reaches the beginning or end of buffer, it stops there.
4651 To ignore intangibility, bind `inhibit-point-motion-hooks' to t."
4652 (interactive "^p")
4653 (or arg (setq arg 1))
4654
4655 (let ((orig (point))
4656 first-vis first-vis-field-value)
4657
4658 ;; Move by lines, if ARG is not 1 (the default).
4659 (if (/= arg 1)
4660 (let ((line-move-visual nil))
4661 (line-move (1- arg) t)))
4662
4663 ;; Move to beginning-of-line, ignoring fields and invisibles.
4664 (skip-chars-backward "^\n")
4665 (while (and (not (bobp)) (invisible-p (1- (point))))
4666 (goto-char (previous-char-property-change (point)))
4667 (skip-chars-backward "^\n"))
4668
4669 ;; Now find first visible char in the line
4670 (while (and (not (eobp)) (invisible-p (point)))
4671 (goto-char (next-char-property-change (point))))
4672 (setq first-vis (point))
4673
4674 ;; See if fields would stop us from reaching FIRST-VIS.
4675 (setq first-vis-field-value
4676 (constrain-to-field first-vis orig (/= arg 1) t nil))
4677
4678 (goto-char (if (/= first-vis-field-value first-vis)
4679 ;; If yes, obey them.
4680 first-vis-field-value
4681 ;; Otherwise, move to START with attention to fields.
4682 ;; (It is possible that fields never matter in this case.)
4683 (constrain-to-field (point) orig
4684 (/= arg 1) t nil)))))
4685
4686
4687 ;; Many people have said they rarely use this feature, and often type
4688 ;; it by accident. Maybe it shouldn't even be on a key.
4689 (put 'set-goal-column 'disabled t)
4690
4691 (defun set-goal-column (arg)
4692 "Set the current horizontal position as a goal for \\[next-line] and \\[previous-line].
4693 Those commands will move to this position in the line moved to
4694 rather than trying to keep the same horizontal position.
4695 With a non-nil argument ARG, clears out the goal column
4696 so that \\[next-line] and \\[previous-line] resume vertical motion.
4697 The goal column is stored in the variable `goal-column'."
4698 (interactive "P")
4699 (if arg
4700 (progn
4701 (setq goal-column nil)
4702 (message "No goal column"))
4703 (setq goal-column (current-column))
4704 ;; The older method below can be erroneous if `set-goal-column' is bound
4705 ;; to a sequence containing %
4706 ;;(message (substitute-command-keys
4707 ;;"Goal column %d (use \\[set-goal-column] with an arg to unset it)")
4708 ;;goal-column)
4709 (message "%s"
4710 (concat
4711 (format "Goal column %d " goal-column)
4712 (substitute-command-keys
4713 "(use \\[set-goal-column] with an arg to unset it)")))
4714
4715 )
4716 nil)
4717 \f
4718 ;;; Editing based on visual lines, as opposed to logical lines.
4719
4720 (defun end-of-visual-line (&optional n)
4721 "Move point to end of current visual line.
4722 With argument N not nil or 1, move forward N - 1 visual lines first.
4723 If point reaches the beginning or end of buffer, it stops there.
4724 To ignore intangibility, bind `inhibit-point-motion-hooks' to t."
4725 (interactive "^p")
4726 (or n (setq n 1))
4727 (if (/= n 1)
4728 (let ((line-move-visual t))
4729 (line-move (1- n) t)))
4730 ;; Unlike `move-beginning-of-line', `move-end-of-line' doesn't
4731 ;; constrain to field boundaries, so we don't either.
4732 (vertical-motion (cons (window-width) 0)))
4733
4734 (defun beginning-of-visual-line (&optional n)
4735 "Move point to beginning of current visual line.
4736 With argument N not nil or 1, move forward N - 1 visual lines first.
4737 If point reaches the beginning or end of buffer, it stops there.
4738 To ignore intangibility, bind `inhibit-point-motion-hooks' to t."
4739 (interactive "^p")
4740 (or n (setq n 1))
4741 (let ((opoint (point)))
4742 (if (/= n 1)
4743 (let ((line-move-visual t))
4744 (line-move (1- n) t)))
4745 (vertical-motion 0)
4746 ;; Constrain to field boundaries, like `move-beginning-of-line'.
4747 (goto-char (constrain-to-field (point) opoint (/= n 1)))))
4748
4749 (defun kill-visual-line (&optional arg)
4750 "Kill the rest of the visual line.
4751 With prefix argument ARG, kill that many visual lines from point.
4752 If ARG is negative, kill visual lines backward.
4753 If ARG is zero, kill the text before point on the current visual
4754 line.
4755
4756 If you want to append the killed line to the last killed text,
4757 use \\[append-next-kill] before \\[kill-line].
4758
4759 If the buffer is read-only, Emacs will beep and refrain from deleting
4760 the line, but put the line in the kill ring anyway. This means that
4761 you can use this command to copy text from a read-only buffer.
4762 \(If the variable `kill-read-only-ok' is non-nil, then this won't
4763 even beep.)"
4764 (interactive "P")
4765 ;; Like in `kill-line', it's better to move point to the other end
4766 ;; of the kill before killing.
4767 (let ((opoint (point))
4768 (kill-whole-line (and kill-whole-line (bolp))))
4769 (if arg
4770 (vertical-motion (prefix-numeric-value arg))
4771 (end-of-visual-line 1)
4772 (if (= (point) opoint)
4773 (vertical-motion 1)
4774 ;; Skip any trailing whitespace at the end of the visual line.
4775 ;; We used to do this only if `show-trailing-whitespace' is
4776 ;; nil, but that's wrong; the correct thing would be to check
4777 ;; whether the trailing whitespace is highlighted. But, it's
4778 ;; OK to just do this unconditionally.
4779 (skip-chars-forward " \t")))
4780 (kill-region opoint (if (and kill-whole-line (looking-at "\n"))
4781 (1+ (point))
4782 (point)))))
4783
4784 (defun next-logical-line (&optional arg try-vscroll)
4785 "Move cursor vertically down ARG lines.
4786 This is identical to `next-line', except that it always moves
4787 by logical lines instead of visual lines, ignoring the value of
4788 the variable `line-move-visual'."
4789 (interactive "^p\np")
4790 (let ((line-move-visual nil))
4791 (with-no-warnings
4792 (next-line arg try-vscroll))))
4793
4794 (defun previous-logical-line (&optional arg try-vscroll)
4795 "Move cursor vertically up ARG lines.
4796 This is identical to `previous-line', except that it always moves
4797 by logical lines instead of visual lines, ignoring the value of
4798 the variable `line-move-visual'."
4799 (interactive "^p\np")
4800 (let ((line-move-visual nil))
4801 (with-no-warnings
4802 (previous-line arg try-vscroll))))
4803
4804 (defgroup visual-line nil
4805 "Editing based on visual lines."
4806 :group 'convenience
4807 :version "23.1")
4808
4809 (defvar visual-line-mode-map
4810 (let ((map (make-sparse-keymap)))
4811 (define-key map [remap kill-line] 'kill-visual-line)
4812 (define-key map [remap move-beginning-of-line] 'beginning-of-visual-line)
4813 (define-key map [remap move-end-of-line] 'end-of-visual-line)
4814 ;; These keybindings interfere with xterm function keys. Are
4815 ;; there any other suitable bindings?
4816 ;; (define-key map "\M-[" 'previous-logical-line)
4817 ;; (define-key map "\M-]" 'next-logical-line)
4818 map))
4819
4820 (defcustom visual-line-fringe-indicators '(nil nil)
4821 "How fringe indicators are shown for wrapped lines in `visual-line-mode'.
4822 The value should be a list of the form (LEFT RIGHT), where LEFT
4823 and RIGHT are symbols representing the bitmaps to display, to
4824 indicate wrapped lines, in the left and right fringes respectively.
4825 See also `fringe-indicator-alist'.
4826 The default is not to display fringe indicators for wrapped lines.
4827 This variable does not affect fringe indicators displayed for
4828 other purposes."
4829 :type '(list (choice (const :tag "Hide left indicator" nil)
4830 (const :tag "Left curly arrow" left-curly-arrow)
4831 (symbol :tag "Other bitmap"))
4832 (choice (const :tag "Hide right indicator" nil)
4833 (const :tag "Right curly arrow" right-curly-arrow)
4834 (symbol :tag "Other bitmap")))
4835 :set (lambda (symbol value)
4836 (dolist (buf (buffer-list))
4837 (with-current-buffer buf
4838 (when (and (boundp 'visual-line-mode)
4839 (symbol-value 'visual-line-mode))
4840 (setq fringe-indicator-alist
4841 (cons (cons 'continuation value)
4842 (assq-delete-all
4843 'continuation
4844 (copy-tree fringe-indicator-alist)))))))
4845 (set-default symbol value)))
4846
4847 (defvar visual-line--saved-state nil)
4848
4849 (define-minor-mode visual-line-mode
4850 "Redefine simple editing commands to act on visual lines, not logical lines.
4851 This also turns on `word-wrap' in the buffer."
4852 :keymap visual-line-mode-map
4853 :group 'visual-line
4854 :lighter " Wrap"
4855 (if visual-line-mode
4856 (progn
4857 (set (make-local-variable 'visual-line--saved-state) nil)
4858 ;; Save the local values of some variables, to be restored if
4859 ;; visual-line-mode is turned off.
4860 (dolist (var '(line-move-visual truncate-lines
4861 truncate-partial-width-windows
4862 word-wrap fringe-indicator-alist))
4863 (if (local-variable-p var)
4864 (push (cons var (symbol-value var))
4865 visual-line--saved-state)))
4866 (set (make-local-variable 'line-move-visual) t)
4867 (set (make-local-variable 'truncate-partial-width-windows) nil)
4868 (setq truncate-lines nil
4869 word-wrap t
4870 fringe-indicator-alist
4871 (cons (cons 'continuation visual-line-fringe-indicators)
4872 fringe-indicator-alist)))
4873 (kill-local-variable 'line-move-visual)
4874 (kill-local-variable 'word-wrap)
4875 (kill-local-variable 'truncate-lines)
4876 (kill-local-variable 'truncate-partial-width-windows)
4877 (kill-local-variable 'fringe-indicator-alist)
4878 (dolist (saved visual-line--saved-state)
4879 (set (make-local-variable (car saved)) (cdr saved)))
4880 (kill-local-variable 'visual-line--saved-state)))
4881
4882 (defun turn-on-visual-line-mode ()
4883 (visual-line-mode 1))
4884
4885 (define-globalized-minor-mode global-visual-line-mode
4886 visual-line-mode turn-on-visual-line-mode
4887 :lighter " vl")
4888
4889 \f
4890 (defun transpose-chars (arg)
4891 "Interchange characters around point, moving forward one character.
4892 With prefix arg ARG, effect is to take character before point
4893 and drag it forward past ARG other characters (backward if ARG negative).
4894 If no argument and at end of line, the previous two chars are exchanged."
4895 (interactive "*P")
4896 (and (null arg) (eolp) (forward-char -1))
4897 (transpose-subr 'forward-char (prefix-numeric-value arg)))
4898
4899 (defun transpose-words (arg)
4900 "Interchange words around point, leaving point at end of them.
4901 With prefix arg ARG, effect is to take word before or around point
4902 and drag it forward past ARG other words (backward if ARG negative).
4903 If ARG is zero, the words around or after point and around or after mark
4904 are interchanged."
4905 ;; FIXME: `foo a!nd bar' should transpose into `bar and foo'.
4906 (interactive "*p")
4907 (transpose-subr 'forward-word arg))
4908
4909 (defun transpose-sexps (arg)
4910 "Like \\[transpose-words] but applies to sexps.
4911 Does not work on a sexp that point is in the middle of
4912 if it is a list or string."
4913 (interactive "*p")
4914 (transpose-subr
4915 (lambda (arg)
4916 ;; Here we should try to simulate the behavior of
4917 ;; (cons (progn (forward-sexp x) (point))
4918 ;; (progn (forward-sexp (- x)) (point)))
4919 ;; Except that we don't want to rely on the second forward-sexp
4920 ;; putting us back to where we want to be, since forward-sexp-function
4921 ;; might do funny things like infix-precedence.
4922 (if (if (> arg 0)
4923 (looking-at "\\sw\\|\\s_")
4924 (and (not (bobp))
4925 (save-excursion (forward-char -1) (looking-at "\\sw\\|\\s_"))))
4926 ;; Jumping over a symbol. We might be inside it, mind you.
4927 (progn (funcall (if (> arg 0)
4928 'skip-syntax-backward 'skip-syntax-forward)
4929 "w_")
4930 (cons (save-excursion (forward-sexp arg) (point)) (point)))
4931 ;; Otherwise, we're between sexps. Take a step back before jumping
4932 ;; to make sure we'll obey the same precedence no matter which direction
4933 ;; we're going.
4934 (funcall (if (> arg 0) 'skip-syntax-backward 'skip-syntax-forward) " .")
4935 (cons (save-excursion (forward-sexp arg) (point))
4936 (progn (while (or (forward-comment (if (> arg 0) 1 -1))
4937 (not (zerop (funcall (if (> arg 0)
4938 'skip-syntax-forward
4939 'skip-syntax-backward)
4940 ".")))))
4941 (point)))))
4942 arg 'special))
4943
4944 (defun transpose-lines (arg)
4945 "Exchange current line and previous line, leaving point after both.
4946 With argument ARG, takes previous line and moves it past ARG lines.
4947 With argument 0, interchanges line point is in with line mark is in."
4948 (interactive "*p")
4949 (transpose-subr (function
4950 (lambda (arg)
4951 (if (> arg 0)
4952 (progn
4953 ;; Move forward over ARG lines,
4954 ;; but create newlines if necessary.
4955 (setq arg (forward-line arg))
4956 (if (/= (preceding-char) ?\n)
4957 (setq arg (1+ arg)))
4958 (if (> arg 0)
4959 (newline arg)))
4960 (forward-line arg))))
4961 arg))
4962
4963 ;; FIXME seems to leave point BEFORE the current object when ARG = 0,
4964 ;; which seems inconsistent with the ARG /= 0 case.
4965 ;; FIXME document SPECIAL.
4966 (defun transpose-subr (mover arg &optional special)
4967 "Subroutine to do the work of transposing objects.
4968 Works for lines, sentences, paragraphs, etc. MOVER is a function that
4969 moves forward by units of the given object (e.g. forward-sentence,
4970 forward-paragraph). If ARG is zero, exchanges the current object
4971 with the one containing mark. If ARG is an integer, moves the
4972 current object past ARG following (if ARG is positive) or
4973 preceding (if ARG is negative) objects, leaving point after the
4974 current object."
4975 (let ((aux (if special mover
4976 (lambda (x)
4977 (cons (progn (funcall mover x) (point))
4978 (progn (funcall mover (- x)) (point))))))
4979 pos1 pos2)
4980 (cond
4981 ((= arg 0)
4982 (save-excursion
4983 (setq pos1 (funcall aux 1))
4984 (goto-char (or (mark) (error "No mark set in this buffer")))
4985 (setq pos2 (funcall aux 1))
4986 (transpose-subr-1 pos1 pos2))
4987 (exchange-point-and-mark))
4988 ((> arg 0)
4989 (setq pos1 (funcall aux -1))
4990 (setq pos2 (funcall aux arg))
4991 (transpose-subr-1 pos1 pos2)
4992 (goto-char (car pos2)))
4993 (t
4994 (setq pos1 (funcall aux -1))
4995 (goto-char (car pos1))
4996 (setq pos2 (funcall aux arg))
4997 (transpose-subr-1 pos1 pos2)))))
4998
4999 (defun transpose-subr-1 (pos1 pos2)
5000 (when (> (car pos1) (cdr pos1)) (setq pos1 (cons (cdr pos1) (car pos1))))
5001 (when (> (car pos2) (cdr pos2)) (setq pos2 (cons (cdr pos2) (car pos2))))
5002 (when (> (car pos1) (car pos2))
5003 (let ((swap pos1))
5004 (setq pos1 pos2 pos2 swap)))
5005 (if (> (cdr pos1) (car pos2)) (error "Don't have two things to transpose"))
5006 (atomic-change-group
5007 (let (word2)
5008 ;; FIXME: We first delete the two pieces of text, so markers that
5009 ;; used to point to after the text end up pointing to before it :-(
5010 (setq word2 (delete-and-extract-region (car pos2) (cdr pos2)))
5011 (goto-char (car pos2))
5012 (insert (delete-and-extract-region (car pos1) (cdr pos1)))
5013 (goto-char (car pos1))
5014 (insert word2))))
5015 \f
5016 (defun backward-word (&optional arg)
5017 "Move backward until encountering the beginning of a word.
5018 With argument ARG, do this that many times."
5019 (interactive "^p")
5020 (forward-word (- (or arg 1))))
5021
5022 (defun mark-word (&optional arg allow-extend)
5023 "Set mark ARG words away from point.
5024 The place mark goes is the same place \\[forward-word] would
5025 move to with the same argument.
5026 Interactively, if this command is repeated
5027 or (in Transient Mark mode) if the mark is active,
5028 it marks the next ARG words after the ones already marked."
5029 (interactive "P\np")
5030 (cond ((and allow-extend
5031 (or (and (eq last-command this-command) (mark t))
5032 (region-active-p)))
5033 (setq arg (if arg (prefix-numeric-value arg)
5034 (if (< (mark) (point)) -1 1)))
5035 (set-mark
5036 (save-excursion
5037 (goto-char (mark))
5038 (forward-word arg)
5039 (point))))
5040 (t
5041 (push-mark
5042 (save-excursion
5043 (forward-word (prefix-numeric-value arg))
5044 (point))
5045 nil t))))
5046
5047 (defun kill-word (arg)
5048 "Kill characters forward until encountering the end of a word.
5049 With argument ARG, do this that many times."
5050 (interactive "p")
5051 (kill-region (point) (progn (forward-word arg) (point))))
5052
5053 (defun backward-kill-word (arg)
5054 "Kill characters backward until encountering the beginning of a word.
5055 With argument ARG, do this that many times."
5056 (interactive "p")
5057 (kill-word (- arg)))
5058
5059 (defun current-word (&optional strict really-word)
5060 "Return the symbol or word that point is on (or a nearby one) as a string.
5061 The return value includes no text properties.
5062 If optional arg STRICT is non-nil, return nil unless point is within
5063 or adjacent to a symbol or word. In all cases the value can be nil
5064 if there is no word nearby.
5065 The function, belying its name, normally finds a symbol.
5066 If optional arg REALLY-WORD is non-nil, it finds just a word."
5067 (save-excursion
5068 (let* ((oldpoint (point)) (start (point)) (end (point))
5069 (syntaxes (if really-word "w" "w_"))
5070 (not-syntaxes (concat "^" syntaxes)))
5071 (skip-syntax-backward syntaxes) (setq start (point))
5072 (goto-char oldpoint)
5073 (skip-syntax-forward syntaxes) (setq end (point))
5074 (when (and (eq start oldpoint) (eq end oldpoint)
5075 ;; Point is neither within nor adjacent to a word.
5076 (not strict))
5077 ;; Look for preceding word in same line.
5078 (skip-syntax-backward not-syntaxes (line-beginning-position))
5079 (if (bolp)
5080 ;; No preceding word in same line.
5081 ;; Look for following word in same line.
5082 (progn
5083 (skip-syntax-forward not-syntaxes (line-end-position))
5084 (setq start (point))
5085 (skip-syntax-forward syntaxes)
5086 (setq end (point)))
5087 (setq end (point))
5088 (skip-syntax-backward syntaxes)
5089 (setq start (point))))
5090 ;; If we found something nonempty, return it as a string.
5091 (unless (= start end)
5092 (buffer-substring-no-properties start end)))))
5093 \f
5094 (defcustom fill-prefix nil
5095 "String for filling to insert at front of new line, or nil for none."
5096 :type '(choice (const :tag "None" nil)
5097 string)
5098 :group 'fill)
5099 (make-variable-buffer-local 'fill-prefix)
5100 (put 'fill-prefix 'safe-local-variable 'string-or-null-p)
5101
5102 (defcustom auto-fill-inhibit-regexp nil
5103 "Regexp to match lines which should not be auto-filled."
5104 :type '(choice (const :tag "None" nil)
5105 regexp)
5106 :group 'fill)
5107
5108 ;; This function is used as the auto-fill-function of a buffer
5109 ;; when Auto-Fill mode is enabled.
5110 ;; It returns t if it really did any work.
5111 ;; (Actually some major modes use a different auto-fill function,
5112 ;; but this one is the default one.)
5113 (defun do-auto-fill ()
5114 (let (fc justify give-up
5115 (fill-prefix fill-prefix))
5116 (if (or (not (setq justify (current-justification)))
5117 (null (setq fc (current-fill-column)))
5118 (and (eq justify 'left)
5119 (<= (current-column) fc))
5120 (and auto-fill-inhibit-regexp
5121 (save-excursion (beginning-of-line)
5122 (looking-at auto-fill-inhibit-regexp))))
5123 nil ;; Auto-filling not required
5124 (if (memq justify '(full center right))
5125 (save-excursion (unjustify-current-line)))
5126
5127 ;; Choose a fill-prefix automatically.
5128 (when (and adaptive-fill-mode
5129 (or (null fill-prefix) (string= fill-prefix "")))
5130 (let ((prefix
5131 (fill-context-prefix
5132 (save-excursion (backward-paragraph 1) (point))
5133 (save-excursion (forward-paragraph 1) (point)))))
5134 (and prefix (not (equal prefix ""))
5135 ;; Use auto-indentation rather than a guessed empty prefix.
5136 (not (and fill-indent-according-to-mode
5137 (string-match "\\`[ \t]*\\'" prefix)))
5138 (setq fill-prefix prefix))))
5139
5140 (while (and (not give-up) (> (current-column) fc))
5141 ;; Determine where to split the line.
5142 (let* (after-prefix
5143 (fill-point
5144 (save-excursion
5145 (beginning-of-line)
5146 (setq after-prefix (point))
5147 (and fill-prefix
5148 (looking-at (regexp-quote fill-prefix))
5149 (setq after-prefix (match-end 0)))
5150 (move-to-column (1+ fc))
5151 (fill-move-to-break-point after-prefix)
5152 (point))))
5153
5154 ;; See whether the place we found is any good.
5155 (if (save-excursion
5156 (goto-char fill-point)
5157 (or (bolp)
5158 ;; There is no use breaking at end of line.
5159 (save-excursion (skip-chars-forward " ") (eolp))
5160 ;; It is futile to split at the end of the prefix
5161 ;; since we would just insert the prefix again.
5162 (and after-prefix (<= (point) after-prefix))
5163 ;; Don't split right after a comment starter
5164 ;; since we would just make another comment starter.
5165 (and comment-start-skip
5166 (let ((limit (point)))
5167 (beginning-of-line)
5168 (and (re-search-forward comment-start-skip
5169 limit t)
5170 (eq (point) limit))))))
5171 ;; No good place to break => stop trying.
5172 (setq give-up t)
5173 ;; Ok, we have a useful place to break the line. Do it.
5174 (let ((prev-column (current-column)))
5175 ;; If point is at the fill-point, do not `save-excursion'.
5176 ;; Otherwise, if a comment prefix or fill-prefix is inserted,
5177 ;; point will end up before it rather than after it.
5178 (if (save-excursion
5179 (skip-chars-backward " \t")
5180 (= (point) fill-point))
5181 (default-indent-new-line t)
5182 (save-excursion
5183 (goto-char fill-point)
5184 (default-indent-new-line t)))
5185 ;; Now do justification, if required
5186 (if (not (eq justify 'left))
5187 (save-excursion
5188 (end-of-line 0)
5189 (justify-current-line justify nil t)))
5190 ;; If making the new line didn't reduce the hpos of
5191 ;; the end of the line, then give up now;
5192 ;; trying again will not help.
5193 (if (>= (current-column) prev-column)
5194 (setq give-up t))))))
5195 ;; Justify last line.
5196 (justify-current-line justify t t)
5197 t)))
5198
5199 (defvar comment-line-break-function 'comment-indent-new-line
5200 "*Mode-specific function which line breaks and continues a comment.
5201 This function is called during auto-filling when a comment syntax
5202 is defined.
5203 The function should take a single optional argument, which is a flag
5204 indicating whether it should use soft newlines.")
5205
5206 (defun default-indent-new-line (&optional soft)
5207 "Break line at point and indent.
5208 If a comment syntax is defined, call `comment-indent-new-line'.
5209
5210 The inserted newline is marked hard if variable `use-hard-newlines' is true,
5211 unless optional argument SOFT is non-nil."
5212 (interactive)
5213 (if comment-start
5214 (funcall comment-line-break-function soft)
5215 ;; Insert the newline before removing empty space so that markers
5216 ;; get preserved better.
5217 (if soft (insert-and-inherit ?\n) (newline 1))
5218 (save-excursion (forward-char -1) (delete-horizontal-space))
5219 (delete-horizontal-space)
5220
5221 (if (and fill-prefix (not adaptive-fill-mode))
5222 ;; Blindly trust a non-adaptive fill-prefix.
5223 (progn
5224 (indent-to-left-margin)
5225 (insert-before-markers-and-inherit fill-prefix))
5226
5227 (cond
5228 ;; If there's an adaptive prefix, use it unless we're inside
5229 ;; a comment and the prefix is not a comment starter.
5230 (fill-prefix
5231 (indent-to-left-margin)
5232 (insert-and-inherit fill-prefix))
5233 ;; If we're not inside a comment, just try to indent.
5234 (t (indent-according-to-mode))))))
5235
5236 (defvar normal-auto-fill-function 'do-auto-fill
5237 "The function to use for `auto-fill-function' if Auto Fill mode is turned on.
5238 Some major modes set this.")
5239
5240 (put 'auto-fill-function :minor-mode-function 'auto-fill-mode)
5241 ;; `functions' and `hooks' are usually unsafe to set, but setting
5242 ;; auto-fill-function to nil in a file-local setting is safe and
5243 ;; can be useful to prevent auto-filling.
5244 (put 'auto-fill-function 'safe-local-variable 'null)
5245 ;; FIXME: turn into a proper minor mode.
5246 ;; Add a global minor mode version of it.
5247 (define-minor-mode auto-fill-mode
5248 "Toggle Auto Fill mode.
5249 With ARG, turn Auto Fill mode on if and only if ARG is positive.
5250 In Auto Fill mode, inserting a space at a column beyond `current-fill-column'
5251 automatically breaks the line at a previous space.
5252
5253 The value of `normal-auto-fill-function' specifies the function to use
5254 for `auto-fill-function' when turning Auto Fill mode on."
5255 :variable (eq auto-fill-function normal-auto-fill-function))
5256
5257 ;; This holds a document string used to document auto-fill-mode.
5258 (defun auto-fill-function ()
5259 "Automatically break line at a previous space, in insertion of text."
5260 nil)
5261
5262 (defun turn-on-auto-fill ()
5263 "Unconditionally turn on Auto Fill mode."
5264 (auto-fill-mode 1))
5265
5266 (defun turn-off-auto-fill ()
5267 "Unconditionally turn off Auto Fill mode."
5268 (auto-fill-mode -1))
5269
5270 (custom-add-option 'text-mode-hook 'turn-on-auto-fill)
5271
5272 (defun set-fill-column (arg)
5273 "Set `fill-column' to specified argument.
5274 Use \\[universal-argument] followed by a number to specify a column.
5275 Just \\[universal-argument] as argument means to use the current column."
5276 (interactive
5277 (list (or current-prefix-arg
5278 ;; We used to use current-column silently, but C-x f is too easily
5279 ;; typed as a typo for C-x C-f, so we turned it into an error and
5280 ;; now an interactive prompt.
5281 (read-number "Set fill-column to: " (current-column)))))
5282 (if (consp arg)
5283 (setq arg (current-column)))
5284 (if (not (integerp arg))
5285 ;; Disallow missing argument; it's probably a typo for C-x C-f.
5286 (error "set-fill-column requires an explicit argument")
5287 (message "Fill column set to %d (was %d)" arg fill-column)
5288 (setq fill-column arg)))
5289 \f
5290 (defun set-selective-display (arg)
5291 "Set `selective-display' to ARG; clear it if no arg.
5292 When the value of `selective-display' is a number > 0,
5293 lines whose indentation is >= that value are not displayed.
5294 The variable `selective-display' has a separate value for each buffer."
5295 (interactive "P")
5296 (if (eq selective-display t)
5297 (error "selective-display already in use for marked lines"))
5298 (let ((current-vpos
5299 (save-restriction
5300 (narrow-to-region (point-min) (point))
5301 (goto-char (window-start))
5302 (vertical-motion (window-height)))))
5303 (setq selective-display
5304 (and arg (prefix-numeric-value arg)))
5305 (recenter current-vpos))
5306 (set-window-start (selected-window) (window-start (selected-window)))
5307 (princ "selective-display set to " t)
5308 (prin1 selective-display t)
5309 (princ "." t))
5310
5311 (defvaralias 'indicate-unused-lines 'indicate-empty-lines)
5312
5313 (defun toggle-truncate-lines (&optional arg)
5314 "Toggle whether to fold or truncate long lines for the current buffer.
5315 With prefix argument ARG, truncate long lines if ARG is positive,
5316 otherwise don't truncate them. Note that in side-by-side windows,
5317 this command has no effect if `truncate-partial-width-windows'
5318 is non-nil."
5319 (interactive "P")
5320 (setq truncate-lines
5321 (if (null arg)
5322 (not truncate-lines)
5323 (> (prefix-numeric-value arg) 0)))
5324 (force-mode-line-update)
5325 (unless truncate-lines
5326 (let ((buffer (current-buffer)))
5327 (walk-windows (lambda (window)
5328 (if (eq buffer (window-buffer window))
5329 (set-window-hscroll window 0)))
5330 nil t)))
5331 (message "Truncate long lines %s"
5332 (if truncate-lines "enabled" "disabled")))
5333
5334 (defun toggle-word-wrap (&optional arg)
5335 "Toggle whether to use word-wrapping for continuation lines.
5336 With prefix argument ARG, wrap continuation lines at word boundaries
5337 if ARG is positive, otherwise wrap them at the right screen edge.
5338 This command toggles the value of `word-wrap'. It has no effect
5339 if long lines are truncated."
5340 (interactive "P")
5341 (setq word-wrap
5342 (if (null arg)
5343 (not word-wrap)
5344 (> (prefix-numeric-value arg) 0)))
5345 (force-mode-line-update)
5346 (message "Word wrapping %s"
5347 (if word-wrap "enabled" "disabled")))
5348
5349 (defvar overwrite-mode-textual (purecopy " Ovwrt")
5350 "The string displayed in the mode line when in overwrite mode.")
5351 (defvar overwrite-mode-binary (purecopy " Bin Ovwrt")
5352 "The string displayed in the mode line when in binary overwrite mode.")
5353
5354 (define-minor-mode overwrite-mode
5355 "Toggle overwrite mode.
5356 With prefix argument ARG, turn overwrite mode on if ARG is positive,
5357 otherwise turn it off. In overwrite mode, printing characters typed
5358 in replace existing text on a one-for-one basis, rather than pushing
5359 it to the right. At the end of a line, such characters extend the line.
5360 Before a tab, such characters insert until the tab is filled in.
5361 \\[quoted-insert] still inserts characters in overwrite mode; this
5362 is supposed to make it easier to insert characters when necessary."
5363 :variable (eq overwrite-mode 'overwrite-mode-textual))
5364
5365 (define-minor-mode binary-overwrite-mode
5366 "Toggle binary overwrite mode.
5367 With prefix argument ARG, turn binary overwrite mode on if ARG is
5368 positive, otherwise turn it off. In binary overwrite mode, printing
5369 characters typed in replace existing text. Newlines are not treated
5370 specially, so typing at the end of a line joins the line to the next,
5371 with the typed character between them. Typing before a tab character
5372 simply replaces the tab with the character typed. \\[quoted-insert]
5373 replaces the text at the cursor, just as ordinary typing characters do.
5374
5375 Note that binary overwrite mode is not its own minor mode; it is a
5376 specialization of overwrite mode, entered by setting the
5377 `overwrite-mode' variable to `overwrite-mode-binary'."
5378 :variable (eq overwrite-mode 'overwrite-mode-binary))
5379
5380 (define-minor-mode line-number-mode
5381 "Toggle Line Number mode.
5382 With ARG, turn Line Number mode on if ARG is positive, otherwise
5383 turn it off. When Line Number mode is enabled, the line number
5384 appears in the mode line.
5385
5386 Line numbers do not appear for very large buffers and buffers
5387 with very long lines; see variables `line-number-display-limit'
5388 and `line-number-display-limit-width'."
5389 :init-value t :global t :group 'mode-line)
5390
5391 (define-minor-mode column-number-mode
5392 "Toggle Column Number mode.
5393 With ARG, turn Column Number mode on if ARG is positive,
5394 otherwise turn it off. When Column Number mode is enabled, the
5395 column number appears in the mode line."
5396 :global t :group 'mode-line)
5397
5398 (define-minor-mode size-indication-mode
5399 "Toggle Size Indication mode.
5400 With ARG, turn Size Indication mode on if ARG is positive,
5401 otherwise turn it off. When Size Indication mode is enabled, the
5402 size of the accessible part of the buffer appears in the mode line."
5403 :global t :group 'mode-line)
5404
5405 (define-minor-mode auto-save-mode
5406 "Toggle auto-saving of contents of current buffer.
5407 With prefix argument ARG, turn auto-saving on if positive, else off."
5408 :variable ((and buffer-auto-save-file-name
5409 ;; If auto-save is off because buffer has shrunk,
5410 ;; then toggling should turn it on.
5411 (>= buffer-saved-size 0))
5412 . (lambda (val)
5413 (setq buffer-auto-save-file-name
5414 (cond
5415 ((null val) nil)
5416 ((and buffer-file-name auto-save-visited-file-name
5417 (not buffer-read-only))
5418 buffer-file-name)
5419 (t (make-auto-save-file-name))))))
5420 ;; If -1 was stored here, to temporarily turn off saving,
5421 ;; turn it back on.
5422 (and (< buffer-saved-size 0)
5423 (setq buffer-saved-size 0)))
5424 \f
5425 (defgroup paren-blinking nil
5426 "Blinking matching of parens and expressions."
5427 :prefix "blink-matching-"
5428 :group 'paren-matching)
5429
5430 (defcustom blink-matching-paren t
5431 "Non-nil means show matching open-paren when close-paren is inserted."
5432 :type 'boolean
5433 :group 'paren-blinking)
5434
5435 (defcustom blink-matching-paren-on-screen t
5436 "Non-nil means show matching open-paren when it is on screen.
5437 If nil, don't show it (but the open-paren can still be shown
5438 when it is off screen).
5439
5440 This variable has no effect if `blink-matching-paren' is nil.
5441 \(In that case, the open-paren is never shown.)
5442 It is also ignored if `show-paren-mode' is enabled."
5443 :type 'boolean
5444 :group 'paren-blinking)
5445
5446 (defcustom blink-matching-paren-distance (* 100 1024)
5447 "If non-nil, maximum distance to search backwards for matching open-paren.
5448 If nil, search stops at the beginning of the accessible portion of the buffer."
5449 :version "23.2" ; 25->100k
5450 :type '(choice (const nil) integer)
5451 :group 'paren-blinking)
5452
5453 (defcustom blink-matching-delay 1
5454 "Time in seconds to delay after showing a matching paren."
5455 :type 'number
5456 :group 'paren-blinking)
5457
5458 (defcustom blink-matching-paren-dont-ignore-comments nil
5459 "If nil, `blink-matching-paren' ignores comments.
5460 More precisely, when looking for the matching parenthesis,
5461 it skips the contents of comments that end before point."
5462 :type 'boolean
5463 :group 'paren-blinking)
5464
5465 (defun blink-matching-check-mismatch (start end)
5466 "Return whether or not START...END are matching parens.
5467 END is the current point and START is the blink position.
5468 START might be nil if no matching starter was found.
5469 Returns non-nil if we find there is a mismatch."
5470 (let* ((end-syntax (syntax-after (1- end)))
5471 (matching-paren (and (consp end-syntax)
5472 (eq (syntax-class end-syntax) 5)
5473 (cdr end-syntax))))
5474 ;; For self-matched chars like " and $, we can't know when they're
5475 ;; mismatched or unmatched, so we can only do it for parens.
5476 (when matching-paren
5477 (not (and start
5478 (or
5479 (eq (char-after start) matching-paren)
5480 ;; The cdr might hold a new paren-class info rather than
5481 ;; a matching-char info, in which case the two CDRs
5482 ;; should match.
5483 (eq matching-paren (cdr-safe (syntax-after start)))))))))
5484
5485 (defvar blink-matching-check-function #'blink-matching-check-mismatch
5486 "Function to check parentheses mismatches.
5487 The function takes two arguments (START and END) where START is the
5488 position just before the opening token and END is the position right after.
5489 START can be nil, if it was not found.
5490 The function should return non-nil if the two tokens do not match.")
5491
5492 (defun blink-matching-open ()
5493 "Move cursor momentarily to the beginning of the sexp before point."
5494 (interactive)
5495 (when (and (not (bobp))
5496 blink-matching-paren)
5497 (let* ((oldpos (point))
5498 (message-log-max nil) ; Don't log messages about paren matching.
5499 (blinkpos
5500 (save-excursion
5501 (save-restriction
5502 (if blink-matching-paren-distance
5503 (narrow-to-region
5504 (max (minibuffer-prompt-end) ;(point-min) unless minibuf.
5505 (- (point) blink-matching-paren-distance))
5506 oldpos))
5507 (let ((parse-sexp-ignore-comments
5508 (and parse-sexp-ignore-comments
5509 (not blink-matching-paren-dont-ignore-comments))))
5510 (condition-case ()
5511 (progn
5512 (forward-sexp -1)
5513 ;; backward-sexp skips backward over prefix chars,
5514 ;; so move back to the matching paren.
5515 (while (and (< (point) (1- oldpos))
5516 (let ((code (syntax-after (point))))
5517 (or (eq (syntax-class code) 6)
5518 (eq (logand 1048576 (car code))
5519 1048576))))
5520 (forward-char 1))
5521 (point))
5522 (error nil))))))
5523 (mismatch (funcall blink-matching-check-function blinkpos oldpos)))
5524 (cond
5525 (mismatch
5526 (if blinkpos
5527 (if (minibufferp)
5528 (minibuffer-message " [Mismatched parentheses]")
5529 (message "Mismatched parentheses"))
5530 (if (minibufferp)
5531 (minibuffer-message " [Unmatched parenthesis]")
5532 (message "Unmatched parenthesis"))))
5533 ((not blinkpos) nil)
5534 ((pos-visible-in-window-p blinkpos)
5535 ;; Matching open within window, temporarily move to blinkpos but only
5536 ;; if `blink-matching-paren-on-screen' is non-nil.
5537 (and blink-matching-paren-on-screen
5538 (not show-paren-mode)
5539 (save-excursion
5540 (goto-char blinkpos)
5541 (sit-for blink-matching-delay))))
5542 (t
5543 (save-excursion
5544 (goto-char blinkpos)
5545 (let ((open-paren-line-string
5546 ;; Show what precedes the open in its line, if anything.
5547 (cond
5548 ((save-excursion (skip-chars-backward " \t") (not (bolp)))
5549 (buffer-substring (line-beginning-position)
5550 (1+ blinkpos)))
5551 ;; Show what follows the open in its line, if anything.
5552 ((save-excursion
5553 (forward-char 1)
5554 (skip-chars-forward " \t")
5555 (not (eolp)))
5556 (buffer-substring blinkpos
5557 (line-end-position)))
5558 ;; Otherwise show the previous nonblank line,
5559 ;; if there is one.
5560 ((save-excursion (skip-chars-backward "\n \t") (not (bobp)))
5561 (concat
5562 (buffer-substring (progn
5563 (skip-chars-backward "\n \t")
5564 (line-beginning-position))
5565 (progn (end-of-line)
5566 (skip-chars-backward " \t")
5567 (point)))
5568 ;; Replace the newline and other whitespace with `...'.
5569 "..."
5570 (buffer-substring blinkpos (1+ blinkpos))))
5571 ;; There is nothing to show except the char itself.
5572 (t (buffer-substring blinkpos (1+ blinkpos))))))
5573 (message "Matches %s"
5574 (substring-no-properties open-paren-line-string)))))))))
5575
5576 (defvar blink-paren-function 'blink-matching-open
5577 "Function called, if non-nil, whenever a close parenthesis is inserted.
5578 More precisely, a char with closeparen syntax is self-inserted.")
5579
5580 (defun blink-paren-post-self-insert-function ()
5581 (when (and (eq (char-before) last-command-event) ; Sanity check.
5582 (memq (char-syntax last-command-event) '(?\) ?\$))
5583 blink-paren-function
5584 (not executing-kbd-macro)
5585 (not noninteractive)
5586 ;; Verify an even number of quoting characters precede the close.
5587 (= 1 (logand 1 (- (point)
5588 (save-excursion
5589 (forward-char -1)
5590 (skip-syntax-backward "/\\")
5591 (point))))))
5592 (funcall blink-paren-function)))
5593
5594 (add-hook 'post-self-insert-hook #'blink-paren-post-self-insert-function
5595 ;; Most likely, this hook is nil, so this arg doesn't matter,
5596 ;; but I use it as a reminder that this function usually
5597 ;; likes to be run after others since it does `sit-for'.
5598 'append)
5599 \f
5600 ;; This executes C-g typed while Emacs is waiting for a command.
5601 ;; Quitting out of a program does not go through here;
5602 ;; that happens in the QUIT macro at the C code level.
5603 (defun keyboard-quit ()
5604 "Signal a `quit' condition.
5605 During execution of Lisp code, this character causes a quit directly.
5606 At top-level, as an editor command, this simply beeps."
5607 (interactive)
5608 ;; Avoid adding the region to the window selection.
5609 (setq saved-region-selection nil)
5610 (let (select-active-regions)
5611 (deactivate-mark))
5612 (if (fboundp 'kmacro-keyboard-quit)
5613 (kmacro-keyboard-quit))
5614 (setq defining-kbd-macro nil)
5615 (signal 'quit nil))
5616
5617 (defvar buffer-quit-function nil
5618 "Function to call to \"quit\" the current buffer, or nil if none.
5619 \\[keyboard-escape-quit] calls this function when its more local actions
5620 \(such as cancelling a prefix argument, minibuffer or region) do not apply.")
5621
5622 (defun keyboard-escape-quit ()
5623 "Exit the current \"mode\" (in a generalized sense of the word).
5624 This command can exit an interactive command such as `query-replace',
5625 can clear out a prefix argument or a region,
5626 can get out of the minibuffer or other recursive edit,
5627 cancel the use of the current buffer (for special-purpose buffers),
5628 or go back to just one window (by deleting all but the selected window)."
5629 (interactive)
5630 (cond ((eq last-command 'mode-exited) nil)
5631 ((region-active-p)
5632 (deactivate-mark))
5633 ((> (minibuffer-depth) 0)
5634 (abort-recursive-edit))
5635 (current-prefix-arg
5636 nil)
5637 ((> (recursion-depth) 0)
5638 (exit-recursive-edit))
5639 (buffer-quit-function
5640 (funcall buffer-quit-function))
5641 ((not (one-window-p t))
5642 (delete-other-windows))
5643 ((string-match "^ \\*" (buffer-name (current-buffer)))
5644 (bury-buffer))))
5645
5646 (defun play-sound-file (file &optional volume device)
5647 "Play sound stored in FILE.
5648 VOLUME and DEVICE correspond to the keywords of the sound
5649 specification for `play-sound'."
5650 (interactive "fPlay sound file: ")
5651 (let ((sound (list :file file)))
5652 (if volume
5653 (plist-put sound :volume volume))
5654 (if device
5655 (plist-put sound :device device))
5656 (push 'sound sound)
5657 (play-sound sound)))
5658
5659 \f
5660 (defcustom read-mail-command 'rmail
5661 "Your preference for a mail reading package.
5662 This is used by some keybindings which support reading mail.
5663 See also `mail-user-agent' concerning sending mail."
5664 :type '(radio (function-item :tag "Rmail" :format "%t\n" rmail)
5665 (function-item :tag "Gnus" :format "%t\n" gnus)
5666 (function-item :tag "Emacs interface to MH"
5667 :format "%t\n" mh-rmail)
5668 (function :tag "Other"))
5669 :version "21.1"
5670 :group 'mail)
5671
5672 (defcustom mail-user-agent 'message-user-agent
5673 "Your preference for a mail composition package.
5674 Various Emacs Lisp packages (e.g. Reporter) require you to compose an
5675 outgoing email message. This variable lets you specify which
5676 mail-sending package you prefer.
5677
5678 Valid values include:
5679
5680 `message-user-agent' -- use the Message package.
5681 See Info node `(message)'.
5682 `sendmail-user-agent' -- use the Mail package.
5683 See Info node `(emacs)Sending Mail'.
5684 `mh-e-user-agent' -- use the Emacs interface to the MH mail system.
5685 See Info node `(mh-e)'.
5686 `gnus-user-agent' -- like `message-user-agent', but with Gnus
5687 paraphernalia, particularly the Gcc: header for
5688 archiving.
5689
5690 Additional valid symbols may be available; check with the author of
5691 your package for details. The function should return non-nil if it
5692 succeeds.
5693
5694 See also `read-mail-command' concerning reading mail."
5695 :type '(radio (function-item :tag "Message package"
5696 :format "%t\n"
5697 message-user-agent)
5698 (function-item :tag "Mail package"
5699 :format "%t\n"
5700 sendmail-user-agent)
5701 (function-item :tag "Emacs interface to MH"
5702 :format "%t\n"
5703 mh-e-user-agent)
5704 (function-item :tag "Message with full Gnus features"
5705 :format "%t\n"
5706 gnus-user-agent)
5707 (function :tag "Other"))
5708 :version "23.2" ; sendmail->message
5709 :group 'mail)
5710
5711 (defcustom compose-mail-user-agent-warnings t
5712 "If non-nil, `compose-mail' warns about changes in `mail-user-agent'.
5713 If the value of `mail-user-agent' is the default, and the user
5714 appears to have customizations applying to the old default,
5715 `compose-mail' issues a warning."
5716 :type 'boolean
5717 :version "23.2"
5718 :group 'mail)
5719
5720 (define-mail-user-agent 'sendmail-user-agent
5721 'sendmail-user-agent-compose
5722 'mail-send-and-exit)
5723
5724 (defun rfc822-goto-eoh ()
5725 ;; Go to header delimiter line in a mail message, following RFC822 rules
5726 (goto-char (point-min))
5727 (when (re-search-forward
5728 "^\\([:\n]\\|[^: \t\n]+[ \t\n]\\)" nil 'move)
5729 (goto-char (match-beginning 0))))
5730
5731 (defun sendmail-user-agent-compose (&optional to subject other-headers continue
5732 switch-function yank-action
5733 send-actions)
5734 (if switch-function
5735 (let ((special-display-buffer-names nil)
5736 (special-display-regexps nil)
5737 (same-window-buffer-names nil)
5738 (same-window-regexps nil))
5739 (funcall switch-function "*mail*")))
5740 (let ((cc (cdr (assoc-string "cc" other-headers t)))
5741 (in-reply-to (cdr (assoc-string "in-reply-to" other-headers t)))
5742 (body (cdr (assoc-string "body" other-headers t))))
5743 (or (mail continue to subject in-reply-to cc yank-action send-actions)
5744 continue
5745 (error "Message aborted"))
5746 (save-excursion
5747 (rfc822-goto-eoh)
5748 (while other-headers
5749 (unless (member-ignore-case (car (car other-headers))
5750 '("in-reply-to" "cc" "body"))
5751 (insert (car (car other-headers)) ": "
5752 (cdr (car other-headers))
5753 (if use-hard-newlines hard-newline "\n")))
5754 (setq other-headers (cdr other-headers)))
5755 (when body
5756 (forward-line 1)
5757 (insert body))
5758 t)))
5759
5760 (defun compose-mail (&optional to subject other-headers continue
5761 switch-function yank-action send-actions)
5762 "Start composing a mail message to send.
5763 This uses the user's chosen mail composition package
5764 as selected with the variable `mail-user-agent'.
5765 The optional arguments TO and SUBJECT specify recipients
5766 and the initial Subject field, respectively.
5767
5768 OTHER-HEADERS is an alist specifying additional
5769 header fields. Elements look like (HEADER . VALUE) where both
5770 HEADER and VALUE are strings.
5771
5772 CONTINUE, if non-nil, says to continue editing a message already
5773 being composed. Interactively, CONTINUE is the prefix argument.
5774
5775 SWITCH-FUNCTION, if non-nil, is a function to use to
5776 switch to and display the buffer used for mail composition.
5777
5778 YANK-ACTION, if non-nil, is an action to perform, if and when necessary,
5779 to insert the raw text of the message being replied to.
5780 It has the form (FUNCTION . ARGS). The user agent will apply
5781 FUNCTION to ARGS, to insert the raw text of the original message.
5782 \(The user agent will also run `mail-citation-hook', *after* the
5783 original text has been inserted in this way.)
5784
5785 SEND-ACTIONS is a list of actions to call when the message is sent.
5786 Each action has the form (FUNCTION . ARGS)."
5787 (interactive
5788 (list nil nil nil current-prefix-arg))
5789
5790 ;; In Emacs 23.2, the default value of `mail-user-agent' changed
5791 ;; from sendmail-user-agent to message-user-agent. Some users may
5792 ;; encounter incompatibilities. This hack tries to detect problems
5793 ;; and warn about them.
5794 (and compose-mail-user-agent-warnings
5795 (eq mail-user-agent 'message-user-agent)
5796 (let (warn-vars)
5797 (dolist (var '(mail-mode-hook mail-send-hook mail-setup-hook
5798 mail-yank-hooks mail-archive-file-name
5799 mail-default-reply-to mail-mailing-lists
5800 mail-self-blind))
5801 (and (boundp var)
5802 (symbol-value var)
5803 (push var warn-vars)))
5804 (when warn-vars
5805 (display-warning 'mail
5806 (format "\
5807 The default mail mode is now Message mode.
5808 You have the following Mail mode variable%s customized:
5809 \n %s\n\nTo use Mail mode, set `mail-user-agent' to sendmail-user-agent.
5810 To disable this warning, set `compose-mail-user-agent-warnings' to nil."
5811 (if (> (length warn-vars) 1) "s" "")
5812 (mapconcat 'symbol-name
5813 warn-vars " "))))))
5814
5815 (let ((function (get mail-user-agent 'composefunc)))
5816 (funcall function to subject other-headers continue
5817 switch-function yank-action send-actions)))
5818
5819 (defun compose-mail-other-window (&optional to subject other-headers continue
5820 yank-action send-actions)
5821 "Like \\[compose-mail], but edit the outgoing message in another window."
5822 (interactive
5823 (list nil nil nil current-prefix-arg))
5824 (compose-mail to subject other-headers continue
5825 'switch-to-buffer-other-window yank-action send-actions))
5826
5827
5828 (defun compose-mail-other-frame (&optional to subject other-headers continue
5829 yank-action send-actions)
5830 "Like \\[compose-mail], but edit the outgoing message in another frame."
5831 (interactive
5832 (list nil nil nil current-prefix-arg))
5833 (compose-mail to subject other-headers continue
5834 'switch-to-buffer-other-frame yank-action send-actions))
5835 \f
5836 (defvar set-variable-value-history nil
5837 "History of values entered with `set-variable'.
5838
5839 Maximum length of the history list is determined by the value
5840 of `history-length', which see.")
5841
5842 (defun set-variable (variable value &optional make-local)
5843 "Set VARIABLE to VALUE. VALUE is a Lisp object.
5844 VARIABLE should be a user option variable name, a Lisp variable
5845 meant to be customized by users. You should enter VALUE in Lisp syntax,
5846 so if you want VALUE to be a string, you must surround it with doublequotes.
5847 VALUE is used literally, not evaluated.
5848
5849 If VARIABLE has a `variable-interactive' property, that is used as if
5850 it were the arg to `interactive' (which see) to interactively read VALUE.
5851
5852 If VARIABLE has been defined with `defcustom', then the type information
5853 in the definition is used to check that VALUE is valid.
5854
5855 With a prefix argument, set VARIABLE to VALUE buffer-locally."
5856 (interactive
5857 (let* ((default-var (variable-at-point))
5858 (var (if (user-variable-p default-var)
5859 (read-variable (format "Set variable (default %s): " default-var)
5860 default-var)
5861 (read-variable "Set variable: ")))
5862 (minibuffer-help-form '(describe-variable var))
5863 (prop (get var 'variable-interactive))
5864 (obsolete (car (get var 'byte-obsolete-variable)))
5865 (prompt (format "Set %s %s to value: " var
5866 (cond ((local-variable-p var)
5867 "(buffer-local)")
5868 ((or current-prefix-arg
5869 (local-variable-if-set-p var))
5870 "buffer-locally")
5871 (t "globally"))))
5872 (val (progn
5873 (when obsolete
5874 (message (concat "`%S' is obsolete; "
5875 (if (symbolp obsolete) "use `%S' instead" "%s"))
5876 var obsolete)
5877 (sit-for 3))
5878 (if prop
5879 ;; Use VAR's `variable-interactive' property
5880 ;; as an interactive spec for prompting.
5881 (call-interactively `(lambda (arg)
5882 (interactive ,prop)
5883 arg))
5884 (read
5885 (read-string prompt nil
5886 'set-variable-value-history
5887 (format "%S" (symbol-value var))))))))
5888 (list var val current-prefix-arg)))
5889
5890 (and (custom-variable-p variable)
5891 (not (get variable 'custom-type))
5892 (custom-load-symbol variable))
5893 (let ((type (get variable 'custom-type)))
5894 (when type
5895 ;; Match with custom type.
5896 (require 'cus-edit)
5897 (setq type (widget-convert type))
5898 (unless (widget-apply type :match value)
5899 (error "Value `%S' does not match type %S of %S"
5900 value (car type) variable))))
5901
5902 (if make-local
5903 (make-local-variable variable))
5904
5905 (set variable value)
5906
5907 ;; Force a thorough redisplay for the case that the variable
5908 ;; has an effect on the display, like `tab-width' has.
5909 (force-mode-line-update))
5910 \f
5911 ;; Define the major mode for lists of completions.
5912
5913 (defvar completion-list-mode-map
5914 (let ((map (make-sparse-keymap)))
5915 (define-key map [mouse-2] 'mouse-choose-completion)
5916 (define-key map [follow-link] 'mouse-face)
5917 (define-key map [down-mouse-2] nil)
5918 (define-key map "\C-m" 'choose-completion)
5919 (define-key map "\e\e\e" 'delete-completion-window)
5920 (define-key map [left] 'previous-completion)
5921 (define-key map [right] 'next-completion)
5922 (define-key map "q" 'quit-window)
5923 map)
5924 "Local map for completion list buffers.")
5925
5926 ;; Completion mode is suitable only for specially formatted data.
5927 (put 'completion-list-mode 'mode-class 'special)
5928
5929 (defvar completion-reference-buffer nil
5930 "Record the buffer that was current when the completion list was requested.
5931 This is a local variable in the completion list buffer.
5932 Initial value is nil to avoid some compiler warnings.")
5933
5934 (defvar completion-no-auto-exit nil
5935 "Non-nil means `choose-completion-string' should never exit the minibuffer.
5936 This also applies to other functions such as `choose-completion'.")
5937
5938 (defvar completion-base-position nil
5939 "Position of the base of the text corresponding to the shown completions.
5940 This variable is used in the *Completions* buffers.
5941 Its value is a list of the form (START END) where START is the place
5942 where the completion should be inserted and END (if non-nil) is the end
5943 of the text to replace. If END is nil, point is used instead.")
5944
5945 (defvar completion-base-size nil
5946 "Number of chars before point not involved in completion.
5947 This is a local variable in the completion list buffer.
5948 It refers to the chars in the minibuffer if completing in the
5949 minibuffer, or in `completion-reference-buffer' otherwise.
5950 Only characters in the field at point are included.
5951
5952 If nil, Emacs determines which part of the tail end of the
5953 buffer's text is involved in completion by comparing the text
5954 directly.")
5955 (make-obsolete-variable 'completion-base-size 'completion-base-position "23.2")
5956
5957 (defun delete-completion-window ()
5958 "Delete the completion list window.
5959 Go to the window from which completion was requested."
5960 (interactive)
5961 (let ((buf completion-reference-buffer))
5962 (if (one-window-p t)
5963 (if (window-dedicated-p (selected-window))
5964 (delete-frame (selected-frame)))
5965 (delete-window (selected-window))
5966 (if (get-buffer-window buf)
5967 (select-window (get-buffer-window buf))))))
5968
5969 (defun previous-completion (n)
5970 "Move to the previous item in the completion list."
5971 (interactive "p")
5972 (next-completion (- n)))
5973
5974 (defun next-completion (n)
5975 "Move to the next item in the completion list.
5976 With prefix argument N, move N items (negative N means move backward)."
5977 (interactive "p")
5978 (let ((beg (point-min)) (end (point-max)))
5979 (while (and (> n 0) (not (eobp)))
5980 ;; If in a completion, move to the end of it.
5981 (when (get-text-property (point) 'mouse-face)
5982 (goto-char (next-single-property-change (point) 'mouse-face nil end)))
5983 ;; Move to start of next one.
5984 (unless (get-text-property (point) 'mouse-face)
5985 (goto-char (next-single-property-change (point) 'mouse-face nil end)))
5986 (setq n (1- n)))
5987 (while (and (< n 0) (not (bobp)))
5988 (let ((prop (get-text-property (1- (point)) 'mouse-face)))
5989 ;; If in a completion, move to the start of it.
5990 (when (and prop (eq prop (get-text-property (point) 'mouse-face)))
5991 (goto-char (previous-single-property-change
5992 (point) 'mouse-face nil beg)))
5993 ;; Move to end of the previous completion.
5994 (unless (or (bobp) (get-text-property (1- (point)) 'mouse-face))
5995 (goto-char (previous-single-property-change
5996 (point) 'mouse-face nil beg)))
5997 ;; Move to the start of that one.
5998 (goto-char (previous-single-property-change
5999 (point) 'mouse-face nil beg))
6000 (setq n (1+ n))))))
6001
6002 (defun choose-completion (&optional event)
6003 "Choose the completion at point."
6004 (interactive (list last-nonmenu-event))
6005 ;; In case this is run via the mouse, give temporary modes such as
6006 ;; isearch a chance to turn off.
6007 (run-hooks 'mouse-leave-buffer-hook)
6008 (let (buffer base-size base-position choice)
6009 (with-current-buffer (window-buffer (posn-window (event-start event)))
6010 (setq buffer completion-reference-buffer)
6011 (setq base-size completion-base-size)
6012 (setq base-position completion-base-position)
6013 (save-excursion
6014 (goto-char (posn-point (event-start event)))
6015 (let (beg end)
6016 (if (and (not (eobp)) (get-text-property (point) 'mouse-face))
6017 (setq end (point) beg (1+ (point))))
6018 (if (and (not (bobp)) (get-text-property (1- (point)) 'mouse-face))
6019 (setq end (1- (point)) beg (point)))
6020 (if (null beg)
6021 (error "No completion here"))
6022 (setq beg (previous-single-property-change beg 'mouse-face))
6023 (setq end (or (next-single-property-change end 'mouse-face)
6024 (point-max)))
6025 (setq choice (buffer-substring-no-properties beg end)))))
6026
6027 (let ((owindow (selected-window)))
6028 (select-window (posn-window (event-start event)))
6029 (if (and (one-window-p t 'selected-frame)
6030 (window-dedicated-p (selected-window)))
6031 ;; This is a special buffer's frame
6032 (iconify-frame (selected-frame))
6033 (or (window-dedicated-p (selected-window))
6034 (bury-buffer)))
6035 (select-window
6036 (or (and (buffer-live-p buffer)
6037 (get-buffer-window buffer 0))
6038 owindow)))
6039
6040 (choose-completion-string
6041 choice buffer
6042 (or base-position
6043 (when base-size
6044 ;; Someone's using old completion code that doesn't know
6045 ;; about base-position yet.
6046 (list (+ base-size (with-current-buffer buffer (field-beginning)))))
6047 ;; If all else fails, just guess.
6048 (with-current-buffer buffer
6049 (list (choose-completion-guess-base-position choice)))))))
6050
6051 ;; Delete the longest partial match for STRING
6052 ;; that can be found before POINT.
6053 (defun choose-completion-guess-base-position (string)
6054 (save-excursion
6055 (let ((opoint (point))
6056 len)
6057 ;; Try moving back by the length of the string.
6058 (goto-char (max (- (point) (length string))
6059 (minibuffer-prompt-end)))
6060 ;; See how far back we were actually able to move. That is the
6061 ;; upper bound on how much we can match and delete.
6062 (setq len (- opoint (point)))
6063 (if completion-ignore-case
6064 (setq string (downcase string)))
6065 (while (and (> len 0)
6066 (let ((tail (buffer-substring (point) opoint)))
6067 (if completion-ignore-case
6068 (setq tail (downcase tail)))
6069 (not (string= tail (substring string 0 len)))))
6070 (setq len (1- len))
6071 (forward-char 1))
6072 (point))))
6073
6074 (defun choose-completion-delete-max-match (string)
6075 (delete-region (choose-completion-guess-base-position string) (point)))
6076 (make-obsolete 'choose-completion-delete-max-match
6077 'choose-completion-guess-base-position "23.2")
6078
6079 (defvar choose-completion-string-functions nil
6080 "Functions that may override the normal insertion of a completion choice.
6081 These functions are called in order with four arguments:
6082 CHOICE - the string to insert in the buffer,
6083 BUFFER - the buffer in which the choice should be inserted,
6084 MINI-P - non-nil if BUFFER is a minibuffer, and
6085 BASE-SIZE - the number of characters in BUFFER before
6086 the string being completed.
6087
6088 If a function in the list returns non-nil, that function is supposed
6089 to have inserted the CHOICE in the BUFFER, and possibly exited
6090 the minibuffer; no further functions will be called.
6091
6092 If all functions in the list return nil, that means to use
6093 the default method of inserting the completion in BUFFER.")
6094
6095 (defun choose-completion-string (choice &optional buffer base-position)
6096 "Switch to BUFFER and insert the completion choice CHOICE.
6097 BASE-POSITION, says where to insert the completion."
6098
6099 ;; If BUFFER is the minibuffer, exit the minibuffer
6100 ;; unless it is reading a file name and CHOICE is a directory,
6101 ;; or completion-no-auto-exit is non-nil.
6102
6103 ;; Some older code may call us passing `base-size' instead of
6104 ;; `base-position'. It's difficult to make any use of `base-size',
6105 ;; so we just ignore it.
6106 (unless (consp base-position)
6107 (message "Obsolete `base-size' passed to choose-completion-string")
6108 (setq base-position nil))
6109
6110 (let* ((buffer (or buffer completion-reference-buffer))
6111 (mini-p (minibufferp buffer)))
6112 ;; If BUFFER is a minibuffer, barf unless it's the currently
6113 ;; active minibuffer.
6114 (if (and mini-p
6115 (or (not (active-minibuffer-window))
6116 (not (equal buffer
6117 (window-buffer (active-minibuffer-window))))))
6118 (error "Minibuffer is not active for completion")
6119 ;; Set buffer so buffer-local choose-completion-string-functions works.
6120 (set-buffer buffer)
6121 (unless (run-hook-with-args-until-success
6122 'choose-completion-string-functions
6123 ;; The fourth arg used to be `mini-p' but was useless
6124 ;; (since minibufferp can be used on the `buffer' arg)
6125 ;; and indeed unused. The last used to be `base-size', so we
6126 ;; keep it to try and avoid breaking old code.
6127 choice buffer base-position nil)
6128 ;; Insert the completion into the buffer where it was requested.
6129 (delete-region (or (car base-position) (point))
6130 (or (cadr base-position) (point)))
6131 (insert choice)
6132 (remove-text-properties (- (point) (length choice)) (point)
6133 '(mouse-face nil))
6134 ;; Update point in the window that BUFFER is showing in.
6135 (let ((window (get-buffer-window buffer t)))
6136 (set-window-point window (point)))
6137 ;; If completing for the minibuffer, exit it with this choice.
6138 (and (not completion-no-auto-exit)
6139 (minibufferp buffer)
6140 minibuffer-completion-table
6141 ;; If this is reading a file name, and the file name chosen
6142 ;; is a directory, don't exit the minibuffer.
6143 (let* ((result (buffer-substring (field-beginning) (point)))
6144 (bounds
6145 (completion-boundaries result minibuffer-completion-table
6146 minibuffer-completion-predicate
6147 "")))
6148 (if (eq (car bounds) (length result))
6149 ;; The completion chosen leads to a new set of completions
6150 ;; (e.g. it's a directory): don't exit the minibuffer yet.
6151 (let ((mini (active-minibuffer-window)))
6152 (select-window mini)
6153 (when minibuffer-auto-raise
6154 (raise-frame (window-frame mini))))
6155 (exit-minibuffer))))))))
6156
6157 (define-derived-mode completion-list-mode nil "Completion List"
6158 "Major mode for buffers showing lists of possible completions.
6159 Type \\<completion-list-mode-map>\\[choose-completion] in the completion list\
6160 to select the completion near point.
6161 Use \\<completion-list-mode-map>\\[mouse-choose-completion] to select one\
6162 with the mouse.
6163
6164 \\{completion-list-mode-map}"
6165 (set (make-local-variable 'completion-base-size) nil))
6166
6167 (defun completion-list-mode-finish ()
6168 "Finish setup of the completions buffer.
6169 Called from `temp-buffer-show-hook'."
6170 (when (eq major-mode 'completion-list-mode)
6171 (toggle-read-only 1)))
6172
6173 (add-hook 'temp-buffer-show-hook 'completion-list-mode-finish)
6174
6175
6176 ;; Variables and faces used in `completion-setup-function'.
6177
6178 (defcustom completion-show-help t
6179 "Non-nil means show help message in *Completions* buffer."
6180 :type 'boolean
6181 :version "22.1"
6182 :group 'completion)
6183
6184 ;; This function goes in completion-setup-hook, so that it is called
6185 ;; after the text of the completion list buffer is written.
6186 (defun completion-setup-function ()
6187 (let* ((mainbuf (current-buffer))
6188 (base-dir
6189 ;; When reading a file name in the minibuffer,
6190 ;; try and find the right default-directory to set in the
6191 ;; completion list buffer.
6192 ;; FIXME: Why do we do that, actually? --Stef
6193 (if minibuffer-completing-file-name
6194 (file-name-as-directory
6195 (expand-file-name
6196 (substring (minibuffer-completion-contents)
6197 0 (or completion-base-size 0)))))))
6198 (with-current-buffer standard-output
6199 (let ((base-size completion-base-size) ;Read before killing localvars.
6200 (base-position completion-base-position))
6201 (completion-list-mode)
6202 (set (make-local-variable 'completion-base-size) base-size)
6203 (set (make-local-variable 'completion-base-position) base-position))
6204 (set (make-local-variable 'completion-reference-buffer) mainbuf)
6205 (if base-dir (setq default-directory base-dir))
6206 ;; Maybe insert help string.
6207 (when completion-show-help
6208 (goto-char (point-min))
6209 (if (display-mouse-p)
6210 (insert (substitute-command-keys
6211 "Click \\[mouse-choose-completion] on a completion to select it.\n")))
6212 (insert (substitute-command-keys
6213 "In this buffer, type \\[choose-completion] to \
6214 select the completion near point.\n\n"))))))
6215
6216 (add-hook 'completion-setup-hook 'completion-setup-function)
6217
6218 (define-key minibuffer-local-completion-map [prior] 'switch-to-completions)
6219 (define-key minibuffer-local-completion-map "\M-v" 'switch-to-completions)
6220
6221 (defun switch-to-completions ()
6222 "Select the completion list window."
6223 (interactive)
6224 (let ((window (or (get-buffer-window "*Completions*" 0)
6225 ;; Make sure we have a completions window.
6226 (progn (minibuffer-completion-help)
6227 (get-buffer-window "*Completions*" 0)))))
6228 (when window
6229 (select-window window)
6230 ;; In the new buffer, go to the first completion.
6231 ;; FIXME: Perhaps this should be done in `minibuffer-completion-help'.
6232 (when (bobp)
6233 (next-completion 1)))))
6234 \f
6235 ;;; Support keyboard commands to turn on various modifiers.
6236
6237 ;; These functions -- which are not commands -- each add one modifier
6238 ;; to the following event.
6239
6240 (defun event-apply-alt-modifier (ignore-prompt)
6241 "\\<function-key-map>Add the Alt modifier to the following event.
6242 For example, type \\[event-apply-alt-modifier] & to enter Alt-&."
6243 (vector (event-apply-modifier (read-event) 'alt 22 "A-")))
6244 (defun event-apply-super-modifier (ignore-prompt)
6245 "\\<function-key-map>Add the Super modifier to the following event.
6246 For example, type \\[event-apply-super-modifier] & to enter Super-&."
6247 (vector (event-apply-modifier (read-event) 'super 23 "s-")))
6248 (defun event-apply-hyper-modifier (ignore-prompt)
6249 "\\<function-key-map>Add the Hyper modifier to the following event.
6250 For example, type \\[event-apply-hyper-modifier] & to enter Hyper-&."
6251 (vector (event-apply-modifier (read-event) 'hyper 24 "H-")))
6252 (defun event-apply-shift-modifier (ignore-prompt)
6253 "\\<function-key-map>Add the Shift modifier to the following event.
6254 For example, type \\[event-apply-shift-modifier] & to enter Shift-&."
6255 (vector (event-apply-modifier (read-event) 'shift 25 "S-")))
6256 (defun event-apply-control-modifier (ignore-prompt)
6257 "\\<function-key-map>Add the Ctrl modifier to the following event.
6258 For example, type \\[event-apply-control-modifier] & to enter Ctrl-&."
6259 (vector (event-apply-modifier (read-event) 'control 26 "C-")))
6260 (defun event-apply-meta-modifier (ignore-prompt)
6261 "\\<function-key-map>Add the Meta modifier to the following event.
6262 For example, type \\[event-apply-meta-modifier] & to enter Meta-&."
6263 (vector (event-apply-modifier (read-event) 'meta 27 "M-")))
6264
6265 (defun event-apply-modifier (event symbol lshiftby prefix)
6266 "Apply a modifier flag to event EVENT.
6267 SYMBOL is the name of this modifier, as a symbol.
6268 LSHIFTBY is the numeric value of this modifier, in keyboard events.
6269 PREFIX is the string that represents this modifier in an event type symbol."
6270 (if (numberp event)
6271 (cond ((eq symbol 'control)
6272 (if (and (<= (downcase event) ?z)
6273 (>= (downcase event) ?a))
6274 (- (downcase event) ?a -1)
6275 (if (and (<= (downcase event) ?Z)
6276 (>= (downcase event) ?A))
6277 (- (downcase event) ?A -1)
6278 (logior (lsh 1 lshiftby) event))))
6279 ((eq symbol 'shift)
6280 (if (and (<= (downcase event) ?z)
6281 (>= (downcase event) ?a))
6282 (upcase event)
6283 (logior (lsh 1 lshiftby) event)))
6284 (t
6285 (logior (lsh 1 lshiftby) event)))
6286 (if (memq symbol (event-modifiers event))
6287 event
6288 (let ((event-type (if (symbolp event) event (car event))))
6289 (setq event-type (intern (concat prefix (symbol-name event-type))))
6290 (if (symbolp event)
6291 event-type
6292 (cons event-type (cdr event)))))))
6293
6294 (define-key function-key-map [?\C-x ?@ ?h] 'event-apply-hyper-modifier)
6295 (define-key function-key-map [?\C-x ?@ ?s] 'event-apply-super-modifier)
6296 (define-key function-key-map [?\C-x ?@ ?m] 'event-apply-meta-modifier)
6297 (define-key function-key-map [?\C-x ?@ ?a] 'event-apply-alt-modifier)
6298 (define-key function-key-map [?\C-x ?@ ?S] 'event-apply-shift-modifier)
6299 (define-key function-key-map [?\C-x ?@ ?c] 'event-apply-control-modifier)
6300 \f
6301 ;;;; Keypad support.
6302
6303 ;; Make the keypad keys act like ordinary typing keys. If people add
6304 ;; bindings for the function key symbols, then those bindings will
6305 ;; override these, so this shouldn't interfere with any existing
6306 ;; bindings.
6307
6308 ;; Also tell read-char how to handle these keys.
6309 (mapc
6310 (lambda (keypad-normal)
6311 (let ((keypad (nth 0 keypad-normal))
6312 (normal (nth 1 keypad-normal)))
6313 (put keypad 'ascii-character normal)
6314 (define-key function-key-map (vector keypad) (vector normal))))
6315 '((kp-0 ?0) (kp-1 ?1) (kp-2 ?2) (kp-3 ?3) (kp-4 ?4)
6316 (kp-5 ?5) (kp-6 ?6) (kp-7 ?7) (kp-8 ?8) (kp-9 ?9)
6317 (kp-space ?\s)
6318 (kp-tab ?\t)
6319 (kp-enter ?\r)
6320 (kp-multiply ?*)
6321 (kp-add ?+)
6322 (kp-separator ?,)
6323 (kp-subtract ?-)
6324 (kp-decimal ?.)
6325 (kp-divide ?/)
6326 (kp-equal ?=)
6327 ;; Do the same for various keys that are represented as symbols under
6328 ;; GUIs but naturally correspond to characters.
6329 (backspace 127)
6330 (delete 127)
6331 (tab ?\t)
6332 (linefeed ?\n)
6333 (clear ?\C-l)
6334 (return ?\C-m)
6335 (escape ?\e)
6336 ))
6337 \f
6338 ;;;;
6339 ;;;; forking a twin copy of a buffer.
6340 ;;;;
6341
6342 (defvar clone-buffer-hook nil
6343 "Normal hook to run in the new buffer at the end of `clone-buffer'.")
6344
6345 (defvar clone-indirect-buffer-hook nil
6346 "Normal hook to run in the new buffer at the end of `clone-indirect-buffer'.")
6347
6348 (defun clone-process (process &optional newname)
6349 "Create a twin copy of PROCESS.
6350 If NEWNAME is nil, it defaults to PROCESS' name;
6351 NEWNAME is modified by adding or incrementing <N> at the end as necessary.
6352 If PROCESS is associated with a buffer, the new process will be associated
6353 with the current buffer instead.
6354 Returns nil if PROCESS has already terminated."
6355 (setq newname (or newname (process-name process)))
6356 (if (string-match "<[0-9]+>\\'" newname)
6357 (setq newname (substring newname 0 (match-beginning 0))))
6358 (when (memq (process-status process) '(run stop open))
6359 (let* ((process-connection-type (process-tty-name process))
6360 (new-process
6361 (if (memq (process-status process) '(open))
6362 (let ((args (process-contact process t)))
6363 (setq args (plist-put args :name newname))
6364 (setq args (plist-put args :buffer
6365 (if (process-buffer process)
6366 (current-buffer))))
6367 (apply 'make-network-process args))
6368 (apply 'start-process newname
6369 (if (process-buffer process) (current-buffer))
6370 (process-command process)))))
6371 (set-process-query-on-exit-flag
6372 new-process (process-query-on-exit-flag process))
6373 (set-process-inherit-coding-system-flag
6374 new-process (process-inherit-coding-system-flag process))
6375 (set-process-filter new-process (process-filter process))
6376 (set-process-sentinel new-process (process-sentinel process))
6377 (set-process-plist new-process (copy-sequence (process-plist process)))
6378 new-process)))
6379
6380 ;; things to maybe add (currently partly covered by `funcall mode'):
6381 ;; - syntax-table
6382 ;; - overlays
6383 (defun clone-buffer (&optional newname display-flag)
6384 "Create and return a twin copy of the current buffer.
6385 Unlike an indirect buffer, the new buffer can be edited
6386 independently of the old one (if it is not read-only).
6387 NEWNAME is the name of the new buffer. It may be modified by
6388 adding or incrementing <N> at the end as necessary to create a
6389 unique buffer name. If nil, it defaults to the name of the
6390 current buffer, with the proper suffix. If DISPLAY-FLAG is
6391 non-nil, the new buffer is shown with `pop-to-buffer'. Trying to
6392 clone a file-visiting buffer, or a buffer whose major mode symbol
6393 has a non-nil `no-clone' property, results in an error.
6394
6395 Interactively, DISPLAY-FLAG is t and NEWNAME is the name of the
6396 current buffer with appropriate suffix. However, if a prefix
6397 argument is given, then the command prompts for NEWNAME in the
6398 minibuffer.
6399
6400 This runs the normal hook `clone-buffer-hook' in the new buffer
6401 after it has been set up properly in other respects."
6402 (interactive
6403 (progn
6404 (if buffer-file-name
6405 (error "Cannot clone a file-visiting buffer"))
6406 (if (get major-mode 'no-clone)
6407 (error "Cannot clone a buffer in %s mode" mode-name))
6408 (list (if current-prefix-arg
6409 (read-buffer "Name of new cloned buffer: " (current-buffer)))
6410 t)))
6411 (if buffer-file-name
6412 (error "Cannot clone a file-visiting buffer"))
6413 (if (get major-mode 'no-clone)
6414 (error "Cannot clone a buffer in %s mode" mode-name))
6415 (setq newname (or newname (buffer-name)))
6416 (if (string-match "<[0-9]+>\\'" newname)
6417 (setq newname (substring newname 0 (match-beginning 0))))
6418 (let ((buf (current-buffer))
6419 (ptmin (point-min))
6420 (ptmax (point-max))
6421 (pt (point))
6422 (mk (if mark-active (mark t)))
6423 (modified (buffer-modified-p))
6424 (mode major-mode)
6425 (lvars (buffer-local-variables))
6426 (process (get-buffer-process (current-buffer)))
6427 (new (generate-new-buffer (or newname (buffer-name)))))
6428 (save-restriction
6429 (widen)
6430 (with-current-buffer new
6431 (insert-buffer-substring buf)))
6432 (with-current-buffer new
6433 (narrow-to-region ptmin ptmax)
6434 (goto-char pt)
6435 (if mk (set-mark mk))
6436 (set-buffer-modified-p modified)
6437
6438 ;; Clone the old buffer's process, if any.
6439 (when process (clone-process process))
6440
6441 ;; Now set up the major mode.
6442 (funcall mode)
6443
6444 ;; Set up other local variables.
6445 (mapc (lambda (v)
6446 (condition-case () ;in case var is read-only
6447 (if (symbolp v)
6448 (makunbound v)
6449 (set (make-local-variable (car v)) (cdr v)))
6450 (error nil)))
6451 lvars)
6452
6453 ;; Run any hooks (typically set up by the major mode
6454 ;; for cloning to work properly).
6455 (run-hooks 'clone-buffer-hook))
6456 (if display-flag
6457 ;; Presumably the current buffer is shown in the selected frame, so
6458 ;; we want to display the clone elsewhere.
6459 (let ((same-window-regexps nil)
6460 (same-window-buffer-names))
6461 (pop-to-buffer new)))
6462 new))
6463
6464
6465 (defun clone-indirect-buffer (newname display-flag &optional norecord)
6466 "Create an indirect buffer that is a twin copy of the current buffer.
6467
6468 Give the indirect buffer name NEWNAME. Interactively, read NEWNAME
6469 from the minibuffer when invoked with a prefix arg. If NEWNAME is nil
6470 or if not called with a prefix arg, NEWNAME defaults to the current
6471 buffer's name. The name is modified by adding a `<N>' suffix to it
6472 or by incrementing the N in an existing suffix. Trying to clone a
6473 buffer whose major mode symbol has a non-nil `no-clone-indirect'
6474 property results in an error.
6475
6476 DISPLAY-FLAG non-nil means show the new buffer with `pop-to-buffer'.
6477 This is always done when called interactively.
6478
6479 Optional third arg NORECORD non-nil means do not put this buffer at the
6480 front of the list of recently selected ones."
6481 (interactive
6482 (progn
6483 (if (get major-mode 'no-clone-indirect)
6484 (error "Cannot indirectly clone a buffer in %s mode" mode-name))
6485 (list (if current-prefix-arg
6486 (read-buffer "Name of indirect buffer: " (current-buffer)))
6487 t)))
6488 (if (get major-mode 'no-clone-indirect)
6489 (error "Cannot indirectly clone a buffer in %s mode" mode-name))
6490 (setq newname (or newname (buffer-name)))
6491 (if (string-match "<[0-9]+>\\'" newname)
6492 (setq newname (substring newname 0 (match-beginning 0))))
6493 (let* ((name (generate-new-buffer-name newname))
6494 (buffer (make-indirect-buffer (current-buffer) name t)))
6495 (with-current-buffer buffer
6496 (run-hooks 'clone-indirect-buffer-hook))
6497 (when display-flag
6498 (pop-to-buffer buffer norecord))
6499 buffer))
6500
6501
6502 (defun clone-indirect-buffer-other-window (newname display-flag &optional norecord)
6503 "Like `clone-indirect-buffer' but display in another window."
6504 (interactive
6505 (progn
6506 (if (get major-mode 'no-clone-indirect)
6507 (error "Cannot indirectly clone a buffer in %s mode" mode-name))
6508 (list (if current-prefix-arg
6509 (read-buffer "Name of indirect buffer: " (current-buffer)))
6510 t)))
6511 (let ((pop-up-windows t))
6512 (clone-indirect-buffer newname display-flag norecord)))
6513
6514 \f
6515 ;;; Handling of Backspace and Delete keys.
6516
6517 (defcustom normal-erase-is-backspace 'maybe
6518 "Set the default behavior of the Delete and Backspace keys.
6519
6520 If set to t, Delete key deletes forward and Backspace key deletes
6521 backward.
6522
6523 If set to nil, both Delete and Backspace keys delete backward.
6524
6525 If set to 'maybe (which is the default), Emacs automatically
6526 selects a behavior. On window systems, the behavior depends on
6527 the keyboard used. If the keyboard has both a Backspace key and
6528 a Delete key, and both are mapped to their usual meanings, the
6529 option's default value is set to t, so that Backspace can be used
6530 to delete backward, and Delete can be used to delete forward.
6531
6532 If not running under a window system, customizing this option
6533 accomplishes a similar effect by mapping C-h, which is usually
6534 generated by the Backspace key, to DEL, and by mapping DEL to C-d
6535 via `keyboard-translate'. The former functionality of C-h is
6536 available on the F1 key. You should probably not use this
6537 setting if you don't have both Backspace, Delete and F1 keys.
6538
6539 Setting this variable with setq doesn't take effect. Programmatically,
6540 call `normal-erase-is-backspace-mode' (which see) instead."
6541 :type '(choice (const :tag "Off" nil)
6542 (const :tag "Maybe" maybe)
6543 (other :tag "On" t))
6544 :group 'editing-basics
6545 :version "21.1"
6546 :set (lambda (symbol value)
6547 ;; The fboundp is because of a problem with :set when
6548 ;; dumping Emacs. It doesn't really matter.
6549 (if (fboundp 'normal-erase-is-backspace-mode)
6550 (normal-erase-is-backspace-mode (or value 0))
6551 (set-default symbol value))))
6552
6553 (defun normal-erase-is-backspace-setup-frame (&optional frame)
6554 "Set up `normal-erase-is-backspace-mode' on FRAME, if necessary."
6555 (unless frame (setq frame (selected-frame)))
6556 (with-selected-frame frame
6557 (unless (terminal-parameter nil 'normal-erase-is-backspace)
6558 (normal-erase-is-backspace-mode
6559 (if (if (eq normal-erase-is-backspace 'maybe)
6560 (and (not noninteractive)
6561 (or (memq system-type '(ms-dos windows-nt))
6562 (memq window-system '(ns))
6563 (and (memq window-system '(x))
6564 (fboundp 'x-backspace-delete-keys-p)
6565 (x-backspace-delete-keys-p))
6566 ;; If the terminal Emacs is running on has erase char
6567 ;; set to ^H, use the Backspace key for deleting
6568 ;; backward, and the Delete key for deleting forward.
6569 (and (null window-system)
6570 (eq tty-erase-char ?\^H))))
6571 normal-erase-is-backspace)
6572 1 0)))))
6573
6574 (define-minor-mode normal-erase-is-backspace-mode
6575 "Toggle the Erase and Delete mode of the Backspace and Delete keys.
6576
6577 With numeric ARG, turn the mode on if and only if ARG is positive.
6578
6579 On window systems, when this mode is on, Delete is mapped to C-d
6580 and Backspace is mapped to DEL; when this mode is off, both
6581 Delete and Backspace are mapped to DEL. (The remapping goes via
6582 `local-function-key-map', so binding Delete or Backspace in the
6583 global or local keymap will override that.)
6584
6585 In addition, on window systems, the bindings of C-Delete, M-Delete,
6586 C-M-Delete, C-Backspace, M-Backspace, and C-M-Backspace are changed in
6587 the global keymap in accordance with the functionality of Delete and
6588 Backspace. For example, if Delete is remapped to C-d, which deletes
6589 forward, C-Delete is bound to `kill-word', but if Delete is remapped
6590 to DEL, which deletes backward, C-Delete is bound to
6591 `backward-kill-word'.
6592
6593 If not running on a window system, a similar effect is accomplished by
6594 remapping C-h (normally produced by the Backspace key) and DEL via
6595 `keyboard-translate': if this mode is on, C-h is mapped to DEL and DEL
6596 to C-d; if it's off, the keys are not remapped.
6597
6598 When not running on a window system, and this mode is turned on, the
6599 former functionality of C-h is available on the F1 key. You should
6600 probably not turn on this mode on a text-only terminal if you don't
6601 have both Backspace, Delete and F1 keys.
6602
6603 See also `normal-erase-is-backspace'."
6604 :variable (eq (terminal-parameter
6605 nil 'normal-erase-is-backspace) 1)
6606 (let ((enabled (eq 1 (terminal-parameter
6607 nil 'normal-erase-is-backspace))))
6608
6609 (cond ((or (memq window-system '(x w32 ns pc))
6610 (memq system-type '(ms-dos windows-nt)))
6611 (let* ((bindings
6612 `(([M-delete] [M-backspace])
6613 ([C-M-delete] [C-M-backspace])
6614 ([?\e C-delete] [?\e C-backspace])))
6615 (old-state (lookup-key local-function-key-map [delete])))
6616
6617 (if enabled
6618 (progn
6619 (define-key local-function-key-map [delete] [deletechar])
6620 (define-key local-function-key-map [kp-delete] [?\C-d])
6621 (define-key local-function-key-map [backspace] [?\C-?])
6622 (dolist (b bindings)
6623 ;; Not sure if input-decode-map is really right, but
6624 ;; keyboard-translate-table (used below) only works
6625 ;; for integer events, and key-translation-table is
6626 ;; global (like the global-map, used earlier).
6627 (define-key input-decode-map (car b) nil)
6628 (define-key input-decode-map (cadr b) nil)))
6629 (define-key local-function-key-map [delete] [?\C-?])
6630 (define-key local-function-key-map [kp-delete] [?\C-?])
6631 (define-key local-function-key-map [backspace] [?\C-?])
6632 (dolist (b bindings)
6633 (define-key input-decode-map (car b) (cadr b))
6634 (define-key input-decode-map (cadr b) (car b))))))
6635 (t
6636 (if enabled
6637 (progn
6638 (keyboard-translate ?\C-h ?\C-?)
6639 (keyboard-translate ?\C-? ?\C-d))
6640 (keyboard-translate ?\C-h ?\C-h)
6641 (keyboard-translate ?\C-? ?\C-?))))
6642
6643 (if (called-interactively-p 'interactive)
6644 (message "Delete key deletes %s"
6645 (if (eq 1 (terminal-parameter nil 'normal-erase-is-backspace))
6646 "forward" "backward")))))
6647 \f
6648 (defvar vis-mode-saved-buffer-invisibility-spec nil
6649 "Saved value of `buffer-invisibility-spec' when Visible mode is on.")
6650
6651 (define-minor-mode visible-mode
6652 "Toggle Visible mode.
6653 With argument ARG turn Visible mode on if ARG is positive, otherwise
6654 turn it off.
6655
6656 Enabling Visible mode makes all invisible text temporarily visible.
6657 Disabling Visible mode turns off that effect. Visible mode works by
6658 saving the value of `buffer-invisibility-spec' and setting it to nil."
6659 :lighter " Vis"
6660 :group 'editing-basics
6661 (when (local-variable-p 'vis-mode-saved-buffer-invisibility-spec)
6662 (setq buffer-invisibility-spec vis-mode-saved-buffer-invisibility-spec)
6663 (kill-local-variable 'vis-mode-saved-buffer-invisibility-spec))
6664 (when visible-mode
6665 (set (make-local-variable 'vis-mode-saved-buffer-invisibility-spec)
6666 buffer-invisibility-spec)
6667 (setq buffer-invisibility-spec nil)))
6668 \f
6669 ;; Partial application of functions (similar to "currying").
6670 ;; This function is here rather than in subr.el because it uses CL.
6671 (defun apply-partially (fun &rest args)
6672 "Return a function that is a partial application of FUN to ARGS.
6673 ARGS is a list of the first N arguments to pass to FUN.
6674 The result is a new function which does the same as FUN, except that
6675 the first N arguments are fixed at the values with which this function
6676 was called."
6677 (lexical-let ((fun fun) (args1 args))
6678 (lambda (&rest args2) (apply fun (append args1 args2)))))
6679 \f
6680 ;; Minibuffer prompt stuff.
6681
6682 ;(defun minibuffer-prompt-modification (start end)
6683 ; (error "You cannot modify the prompt"))
6684 ;
6685 ;
6686 ;(defun minibuffer-prompt-insertion (start end)
6687 ; (let ((inhibit-modification-hooks t))
6688 ; (delete-region start end)
6689 ; ;; Discard undo information for the text insertion itself
6690 ; ;; and for the text deletion.above.
6691 ; (when (consp buffer-undo-list)
6692 ; (setq buffer-undo-list (cddr buffer-undo-list)))
6693 ; (message "You cannot modify the prompt")))
6694 ;
6695 ;
6696 ;(setq minibuffer-prompt-properties
6697 ; (list 'modification-hooks '(minibuffer-prompt-modification)
6698 ; 'insert-in-front-hooks '(minibuffer-prompt-insertion)))
6699 ;
6700
6701 \f
6702 ;;;; Problematic external packages.
6703
6704 ;; rms says this should be done by specifying symbols that define
6705 ;; versions together with bad values. This is therefore not as
6706 ;; flexible as it could be. See the thread:
6707 ;; http://lists.gnu.org/archive/html/emacs-devel/2007-08/msg00300.html
6708 (defconst bad-packages-alist
6709 ;; Not sure exactly which semantic versions have problems.
6710 ;; Definitely 2.0pre3, probably all 2.0pre's before this.
6711 '((semantic semantic-version "\\`2\\.0pre[1-3]\\'"
6712 "The version of `semantic' loaded does not work in Emacs 22.
6713 It can cause constant high CPU load.
6714 Upgrade to at least Semantic 2.0pre4 (distributed with CEDET 1.0pre4).")
6715 ;; CUA-mode does not work with GNU Emacs version 22.1 and newer.
6716 ;; Except for version 1.2, all of the 1.x and 2.x version of cua-mode
6717 ;; provided the `CUA-mode' feature. Since this is no longer true,
6718 ;; we can warn the user if the `CUA-mode' feature is ever provided.
6719 (CUA-mode t nil
6720 "CUA-mode is now part of the standard GNU Emacs distribution,
6721 so you can now enable CUA via the Options menu or by customizing `cua-mode'.
6722
6723 You have loaded an older version of CUA-mode which does not work
6724 correctly with this version of Emacs. You should remove the old
6725 version and use the one distributed with Emacs."))
6726 "Alist of packages known to cause problems in this version of Emacs.
6727 Each element has the form (PACKAGE SYMBOL REGEXP STRING).
6728 PACKAGE is either a regular expression to match file names, or a
6729 symbol (a feature name); see the documentation of
6730 `after-load-alist', to which this variable adds functions.
6731 SYMBOL is either the name of a string variable, or `t'. Upon
6732 loading PACKAGE, if SYMBOL is t or matches REGEXP, display a
6733 warning using STRING as the message.")
6734
6735 (defun bad-package-check (package)
6736 "Run a check using the element from `bad-packages-alist' matching PACKAGE."
6737 (condition-case nil
6738 (let* ((list (assoc package bad-packages-alist))
6739 (symbol (nth 1 list)))
6740 (and list
6741 (boundp symbol)
6742 (or (eq symbol t)
6743 (and (stringp (setq symbol (eval symbol)))
6744 (string-match-p (nth 2 list) symbol)))
6745 (display-warning package (nth 3 list) :warning)))
6746 (error nil)))
6747
6748 (mapc (lambda (elem)
6749 (eval-after-load (car elem) `(bad-package-check ',(car elem))))
6750 bad-packages-alist)
6751
6752
6753 (provide 'simple)
6754
6755 ;;; simple.el ends here