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