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