Improve documentation of 'directory-files-and-attributes'
[emacs.git] / lisp / simple.el
blob9483170a0b6d6df693692fda11c43abf83b7459d
1 ;;; simple.el --- basic editing commands for Emacs -*- lexical-binding: t -*-
3 ;; Copyright (C) 1985-1987, 1993-2018 Free Software Foundation, Inc.
5 ;; Maintainer: emacs-devel@gnu.org
6 ;; Keywords: internal
7 ;; Package: emacs
9 ;; This file is part of GNU Emacs.
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.
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.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
24 ;;; Commentary:
26 ;; A grab-bag of basic Emacs commands not specifically related to some
27 ;; major mode or to file-handling.
29 ;;; Code:
31 (eval-when-compile (require 'cl-lib))
33 (declare-function widget-convert "wid-edit" (type &rest args))
34 (declare-function shell-mode "shell" ())
36 ;;; From compile.el
37 (defvar compilation-current-error)
38 (defvar compilation-context-lines)
40 (defcustom shell-command-dont-erase-buffer nil
41 "If non-nil, output buffer is not erased between shell commands.
42 Also, a non-nil value sets the point in the output buffer
43 once the command completes.
44 The value `beg-last-out' sets point at the beginning of the output,
45 `end-last-out' sets point at the end of the buffer, `save-point'
46 restores the buffer position before the command."
47 :type '(choice
48 (const :tag "Erase buffer" nil)
49 (const :tag "Set point to beginning of last output" beg-last-out)
50 (const :tag "Set point to end of last output" end-last-out)
51 (const :tag "Save point" save-point))
52 :group 'shell
53 :version "26.1")
55 (defvar shell-command-saved-pos nil
56 "Record of point positions in output buffers after command completion.
57 The value is an alist whose elements are of the form (BUFFER . POS),
58 where BUFFER is the output buffer, and POS is the point position
59 in BUFFER once the command finishes.
60 This variable is used when `shell-command-dont-erase-buffer' is non-nil.")
62 (defcustom idle-update-delay 0.5
63 "Idle time delay before updating various things on the screen.
64 Various Emacs features that update auxiliary information when point moves
65 wait this many seconds after Emacs becomes idle before doing an update."
66 :type 'number
67 :group 'display
68 :version "22.1")
70 (defgroup killing nil
71 "Killing and yanking commands."
72 :group 'editing)
74 (defgroup paren-matching nil
75 "Highlight (un)matching of parens and expressions."
76 :group 'matching)
78 ;;; next-error support framework
80 (defgroup next-error nil
81 "`next-error' support framework."
82 :group 'compilation
83 :version "22.1")
85 (defface next-error
86 '((t (:inherit region)))
87 "Face used to highlight next error locus."
88 :group 'next-error
89 :version "22.1")
91 (defcustom next-error-highlight 0.5
92 "Highlighting of locations in selected source buffers.
93 If a number, highlight the locus in `next-error' face for the given time
94 in seconds, or until the next command is executed.
95 If t, highlight the locus until the next command is executed, or until
96 some other locus replaces it.
97 If nil, don't highlight the locus in the source buffer.
98 If `fringe-arrow', indicate the locus by the fringe arrow
99 indefinitely until some other locus replaces it."
100 :type '(choice (number :tag "Highlight for specified time")
101 (const :tag "Semipermanent highlighting" t)
102 (const :tag "No highlighting" nil)
103 (const :tag "Fringe arrow" fringe-arrow))
104 :group 'next-error
105 :version "22.1")
107 (defcustom next-error-highlight-no-select 0.5
108 "Highlighting of locations in `next-error-no-select'.
109 If number, highlight the locus in `next-error' face for given time in seconds.
110 If t, highlight the locus indefinitely until some other locus replaces it.
111 If nil, don't highlight the locus in the source buffer.
112 If `fringe-arrow', indicate the locus by the fringe arrow
113 indefinitely until some other locus replaces it."
114 :type '(choice (number :tag "Highlight for specified time")
115 (const :tag "Semipermanent highlighting" t)
116 (const :tag "No highlighting" nil)
117 (const :tag "Fringe arrow" fringe-arrow))
118 :group 'next-error
119 :version "22.1")
121 (defcustom next-error-recenter nil
122 "Display the line in the visited source file recentered as specified.
123 If non-nil, the value is passed directly to `recenter'."
124 :type '(choice (integer :tag "Line to recenter to")
125 (const :tag "Center of window" (4))
126 (const :tag "No recentering" nil))
127 :group 'next-error
128 :version "23.1")
130 (defcustom next-error-hook nil
131 "List of hook functions run by `next-error' after visiting source file."
132 :type 'hook
133 :group 'next-error)
135 (defvar next-error-highlight-timer nil)
137 (defvar next-error-overlay-arrow-position nil)
138 (put 'next-error-overlay-arrow-position 'overlay-arrow-string (purecopy "=>"))
139 (add-to-list 'overlay-arrow-variable-list 'next-error-overlay-arrow-position)
141 (defvar next-error-last-buffer nil
142 "The most recent `next-error' buffer.
143 A buffer becomes most recent when its compilation, grep, or
144 similar mode is started, or when it is used with \\[next-error]
145 or \\[compile-goto-error].")
147 (defvar next-error-function nil
148 "Function to use to find the next error in the current buffer.
149 The function is called with 2 parameters:
150 ARG is an integer specifying by how many errors to move.
151 RESET is a boolean which, if non-nil, says to go back to the beginning
152 of the errors before moving.
153 Major modes providing compile-like functionality should set this variable
154 to indicate to `next-error' that this is a candidate buffer and how
155 to navigate in it.")
156 (make-variable-buffer-local 'next-error-function)
158 (defvar next-error-move-function nil
159 "Function to use to move to an error locus.
160 It takes two arguments, a buffer position in the error buffer
161 and a buffer position in the error locus buffer.
162 The buffer for the error locus should already be current.
163 nil means use goto-char using the second argument position.")
164 (make-variable-buffer-local 'next-error-move-function)
166 (defsubst next-error-buffer-p (buffer
167 &optional avoid-current
168 extra-test-inclusive
169 extra-test-exclusive)
170 "Return non-nil if BUFFER is a `next-error' capable buffer.
171 If AVOID-CURRENT is non-nil, and BUFFER is the current buffer,
172 return nil.
174 The function EXTRA-TEST-INCLUSIVE, if non-nil, is called if
175 BUFFER would not normally qualify. If it returns non-nil, BUFFER
176 is considered `next-error' capable, anyway, and the function
177 returns non-nil.
179 The function EXTRA-TEST-EXCLUSIVE, if non-nil, is called if the
180 buffer would normally qualify. If it returns nil, BUFFER is
181 rejected, and the function returns nil."
182 (and (buffer-name buffer) ;First make sure it's live.
183 (not (and avoid-current (eq buffer (current-buffer))))
184 (with-current-buffer buffer
185 (if next-error-function ; This is the normal test.
186 ;; Optionally reject some buffers.
187 (if extra-test-exclusive
188 (funcall extra-test-exclusive)
190 ;; Optionally accept some other buffers.
191 (and extra-test-inclusive
192 (funcall extra-test-inclusive))))))
194 (defun next-error-find-buffer (&optional avoid-current
195 extra-test-inclusive
196 extra-test-exclusive)
197 "Return a `next-error' capable buffer.
199 If AVOID-CURRENT is non-nil, treat the current buffer
200 as an absolute last resort only.
202 The function EXTRA-TEST-INCLUSIVE, if non-nil, is called in each buffer
203 that normally would not qualify. If it returns t, the buffer
204 in question is treated as usable.
206 The function EXTRA-TEST-EXCLUSIVE, if non-nil, is called in each buffer
207 that would normally be considered usable. If it returns nil,
208 that buffer is rejected."
210 ;; 1. If one window on the selected frame displays such buffer, return it.
211 (let ((window-buffers
212 (delete-dups
213 (delq nil (mapcar (lambda (w)
214 (if (next-error-buffer-p
215 (window-buffer w)
216 avoid-current
217 extra-test-inclusive extra-test-exclusive)
218 (window-buffer w)))
219 (window-list))))))
220 (if (eq (length window-buffers) 1)
221 (car window-buffers)))
222 ;; 2. If next-error-last-buffer is an acceptable buffer, use that.
223 (if (and next-error-last-buffer
224 (next-error-buffer-p next-error-last-buffer avoid-current
225 extra-test-inclusive extra-test-exclusive))
226 next-error-last-buffer)
227 ;; 3. If the current buffer is acceptable, choose it.
228 (if (next-error-buffer-p (current-buffer) avoid-current
229 extra-test-inclusive extra-test-exclusive)
230 (current-buffer))
231 ;; 4. Look for any acceptable buffer.
232 (let ((buffers (buffer-list)))
233 (while (and buffers
234 (not (next-error-buffer-p
235 (car buffers) avoid-current
236 extra-test-inclusive extra-test-exclusive)))
237 (setq buffers (cdr buffers)))
238 (car buffers))
239 ;; 5. Use the current buffer as a last resort if it qualifies,
240 ;; even despite AVOID-CURRENT.
241 (and avoid-current
242 (next-error-buffer-p (current-buffer) nil
243 extra-test-inclusive extra-test-exclusive)
244 (progn
245 (message "This is the only buffer with error message locations")
246 (current-buffer)))
247 ;; 6. Give up.
248 (error "No buffers contain error message locations")))
250 (defun next-error (&optional arg reset)
251 "Visit next `next-error' message and corresponding source code.
253 If all the error messages parsed so far have been processed already,
254 the message buffer is checked for new ones.
256 A prefix ARG specifies how many error messages to move;
257 negative means move back to previous error messages.
258 Just \\[universal-argument] as a prefix means reparse the error message buffer
259 and start at the first error.
261 The RESET argument specifies that we should restart from the beginning.
263 \\[next-error] normally uses the most recently started
264 compilation, grep, or occur buffer. It can also operate on any
265 buffer with output from the \\[compile], \\[grep] commands, or,
266 more generally, on any buffer in Compilation mode or with
267 Compilation Minor mode enabled, or any buffer in which
268 `next-error-function' is bound to an appropriate function.
269 To specify use of a particular buffer for error messages, type
270 \\[next-error] in that buffer when it is the only one displayed
271 in the current frame.
273 Once \\[next-error] has chosen the buffer for error messages, it
274 runs `next-error-hook' with `run-hooks', and stays with that buffer
275 until you use it in some other buffer which uses Compilation mode
276 or Compilation Minor mode.
278 To control which errors are matched, customize the variable
279 `compilation-error-regexp-alist'."
280 (interactive "P")
281 (if (consp arg) (setq reset t arg nil))
282 (when (setq next-error-last-buffer (next-error-find-buffer))
283 ;; we know here that next-error-function is a valid symbol we can funcall
284 (with-current-buffer next-error-last-buffer
285 (funcall next-error-function (prefix-numeric-value arg) reset)
286 (when next-error-recenter
287 (recenter next-error-recenter))
288 (run-hooks 'next-error-hook))))
290 (defun next-error-internal ()
291 "Visit the source code corresponding to the `next-error' message at point."
292 (setq next-error-last-buffer (current-buffer))
293 ;; we know here that next-error-function is a valid symbol we can funcall
294 (with-current-buffer next-error-last-buffer
295 (funcall next-error-function 0 nil)
296 (when next-error-recenter
297 (recenter next-error-recenter))
298 (run-hooks 'next-error-hook)))
300 (defalias 'goto-next-locus 'next-error)
301 (defalias 'next-match 'next-error)
303 (defun previous-error (&optional n)
304 "Visit previous `next-error' message and corresponding source code.
306 Prefix arg N says how many error messages to move backwards (or
307 forwards, if negative).
309 This operates on the output from the \\[compile] and \\[grep] commands."
310 (interactive "p")
311 (next-error (- (or n 1))))
313 (defun first-error (&optional n)
314 "Restart at the first error.
315 Visit corresponding source code.
316 With prefix arg N, visit the source code of the Nth error.
317 This operates on the output from the \\[compile] command, for instance."
318 (interactive "p")
319 (next-error n t))
321 (defun next-error-no-select (&optional n)
322 "Move point to the next error in the `next-error' buffer and highlight match.
323 Prefix arg N says how many error messages to move forwards (or
324 backwards, if negative).
325 Finds and highlights the source line like \\[next-error], but does not
326 select the source buffer."
327 (interactive "p")
328 (let ((next-error-highlight next-error-highlight-no-select))
329 (next-error n))
330 (pop-to-buffer next-error-last-buffer))
332 (defun previous-error-no-select (&optional n)
333 "Move point to the previous error in the `next-error' buffer and highlight match.
334 Prefix arg N says how many error messages to move backwards (or
335 forwards, if negative).
336 Finds and highlights the source line like \\[previous-error], but does not
337 select the source buffer."
338 (interactive "p")
339 (next-error-no-select (- (or n 1))))
341 ;; Internal variable for `next-error-follow-mode-post-command-hook'.
342 (defvar next-error-follow-last-line nil)
344 (define-minor-mode next-error-follow-minor-mode
345 "Minor mode for compilation, occur and diff modes.
346 With a prefix argument ARG, enable mode if ARG is positive, and
347 disable it otherwise. If called from Lisp, enable mode if ARG is
348 omitted or nil.
349 When turned on, cursor motion in the compilation, grep, occur or diff
350 buffer causes automatic display of the corresponding source code location."
351 :group 'next-error :init-value nil :lighter " Fol"
352 (if (not next-error-follow-minor-mode)
353 (remove-hook 'post-command-hook 'next-error-follow-mode-post-command-hook t)
354 (add-hook 'post-command-hook 'next-error-follow-mode-post-command-hook nil t)
355 (make-local-variable 'next-error-follow-last-line)))
357 ;; Used as a `post-command-hook' by `next-error-follow-mode'
358 ;; for the *Compilation* *grep* and *Occur* buffers.
359 (defun next-error-follow-mode-post-command-hook ()
360 (unless (equal next-error-follow-last-line (line-number-at-pos))
361 (setq next-error-follow-last-line (line-number-at-pos))
362 (condition-case nil
363 (let ((compilation-context-lines nil))
364 (setq compilation-current-error (point))
365 (next-error-no-select 0))
366 (error t))))
371 (defun fundamental-mode ()
372 "Major mode not specialized for anything in particular.
373 Other major modes are defined by comparison with this one."
374 (interactive)
375 (kill-all-local-variables)
376 (run-mode-hooks))
378 ;; Special major modes to view specially formatted data rather than files.
380 (defvar special-mode-map
381 (let ((map (make-sparse-keymap)))
382 (suppress-keymap map)
383 (define-key map "q" 'quit-window)
384 (define-key map " " 'scroll-up-command)
385 (define-key map [?\S-\ ] 'scroll-down-command)
386 (define-key map "\C-?" 'scroll-down-command)
387 (define-key map "?" 'describe-mode)
388 (define-key map "h" 'describe-mode)
389 (define-key map ">" 'end-of-buffer)
390 (define-key map "<" 'beginning-of-buffer)
391 (define-key map "g" 'revert-buffer)
392 map))
394 (put 'special-mode 'mode-class 'special)
395 (define-derived-mode special-mode nil "Special"
396 "Parent major mode from which special major modes should inherit."
397 (setq buffer-read-only t))
399 ;; Making and deleting lines.
401 (defvar self-insert-uses-region-functions nil
402 "Special hook to tell if `self-insert-command' will use the region.
403 It must be called via `run-hook-with-args-until-success' with no arguments.
405 If any function on this hook returns a non-nil value, `delete-selection-mode'
406 will act on that value (see `delete-selection-helper'), and will
407 usually delete the region. If all the functions on this hook return
408 nil, it is an indiction that `self-insert-command' needs the region
409 untouched by `delete-selection-mode', and will itself do whatever is
410 appropriate with the region.
411 Any function on `post-self-insert-hook' which act on the region should
412 add a function to this hook so that `delete-selection-mode' could
413 refrain from deleting the region before `post-self-insert-hook'
414 functions are called.
415 This hook is run by `delete-selection-uses-region-p', which see.")
417 (defvar hard-newline (propertize "\n" 'hard t 'rear-nonsticky '(hard))
418 "Propertized string representing a hard newline character.")
420 (defun newline (&optional arg interactive)
421 "Insert a newline, and move to left margin of the new line if it's blank.
422 If option `use-hard-newlines' is non-nil, the newline is marked with the
423 text-property `hard'.
424 With ARG, insert that many newlines.
426 If `electric-indent-mode' is enabled, this indents the final new line
427 that it adds, and reindents the preceding line. To just insert
428 a newline, use \\[electric-indent-just-newline].
430 Calls `auto-fill-function' if the current column number is greater
431 than the value of `fill-column' and ARG is nil.
432 A non-nil INTERACTIVE argument means to run the `post-self-insert-hook'."
433 (interactive "*P\np")
434 (barf-if-buffer-read-only)
435 ;; Call self-insert so that auto-fill, abbrev expansion etc. happens.
436 ;; Set last-command-event to tell self-insert what to insert.
437 (let* ((was-page-start (and (bolp) (looking-at page-delimiter)))
438 (beforepos (point))
439 (last-command-event ?\n)
440 ;; Don't auto-fill if we have a numeric argument.
441 (auto-fill-function (if arg nil auto-fill-function))
442 (arg (prefix-numeric-value arg))
443 (postproc
444 ;; Do the rest in post-self-insert-hook, because we want to do it
445 ;; *before* other functions on that hook.
446 (lambda ()
447 ;; Mark the newline(s) `hard'.
448 (if use-hard-newlines
449 (set-hard-newline-properties
450 (- (point) arg) (point)))
451 ;; If the newline leaves the previous line blank, and we
452 ;; have a left margin, delete that from the blank line.
453 (save-excursion
454 (goto-char beforepos)
455 (beginning-of-line)
456 (and (looking-at "[ \t]$")
457 (> (current-left-margin) 0)
458 (delete-region (point)
459 (line-end-position))))
460 ;; Indent the line after the newline, except in one case:
461 ;; when we added the newline at the beginning of a line which
462 ;; starts a page.
463 (or was-page-start
464 (move-to-left-margin nil t)))))
465 (if (not interactive)
466 ;; FIXME: For non-interactive uses, many calls actually
467 ;; just want (insert "\n"), so maybe we should do just
468 ;; that, so as to avoid the risk of filling or running
469 ;; abbrevs unexpectedly.
470 (let ((post-self-insert-hook (list postproc)))
471 (self-insert-command arg))
472 (unwind-protect
473 (progn
474 (add-hook 'post-self-insert-hook postproc nil t)
475 (self-insert-command arg))
476 ;; We first used let-binding to protect the hook, but that
477 ;; was naive since add-hook affects the symbol-default
478 ;; value of the variable, whereas the let-binding might
479 ;; only protect the buffer-local value.
480 (remove-hook 'post-self-insert-hook postproc t))))
481 nil)
483 (defun set-hard-newline-properties (from to)
484 (let ((sticky (get-text-property from 'rear-nonsticky)))
485 (put-text-property from to 'hard 't)
486 ;; If rear-nonsticky is not "t", add 'hard to rear-nonsticky list
487 (if (and (listp sticky) (not (memq 'hard sticky)))
488 (put-text-property from (point) 'rear-nonsticky
489 (cons 'hard sticky)))))
491 (defun open-line (n)
492 "Insert a newline and leave point before it.
493 If there is a fill prefix and/or a `left-margin', insert them on
494 the new line if the line would have been blank.
495 With arg N, insert N newlines."
496 (interactive "*p")
497 (let* ((do-fill-prefix (and fill-prefix (bolp)))
498 (do-left-margin (and (bolp) (> (current-left-margin) 0)))
499 (loc (point-marker))
500 ;; Don't expand an abbrev before point.
501 (abbrev-mode nil))
502 (newline n)
503 (goto-char loc)
504 (while (> n 0)
505 (cond ((bolp)
506 (if do-left-margin (indent-to (current-left-margin)))
507 (if do-fill-prefix (insert-and-inherit fill-prefix))))
508 (forward-line 1)
509 (setq n (1- n)))
510 (goto-char loc)
511 ;; Necessary in case a margin or prefix was inserted.
512 (end-of-line)))
514 (defun split-line (&optional arg)
515 "Split current line, moving portion beyond point vertically down.
516 If the current line starts with `fill-prefix', insert it on the new
517 line as well. With prefix ARG, don't insert `fill-prefix' on new line.
519 When called from Lisp code, ARG may be a prefix string to copy."
520 (interactive "*P")
521 (skip-chars-forward " \t")
522 (let* ((col (current-column))
523 (pos (point))
524 ;; What prefix should we check for (nil means don't).
525 (prefix (cond ((stringp arg) arg)
526 (arg nil)
527 (t fill-prefix)))
528 ;; Does this line start with it?
529 (have-prfx (and prefix
530 (save-excursion
531 (beginning-of-line)
532 (looking-at (regexp-quote prefix))))))
533 (newline 1)
534 (if have-prfx (insert-and-inherit prefix))
535 (indent-to col 0)
536 (goto-char pos)))
538 (defun delete-indentation (&optional arg)
539 "Join this line to previous and fix up whitespace at join.
540 If there is a fill prefix, delete it from the beginning of this line.
541 With argument, join this line to following line."
542 (interactive "*P")
543 (beginning-of-line)
544 (if arg (forward-line 1))
545 (if (eq (preceding-char) ?\n)
546 (progn
547 (delete-region (point) (1- (point)))
548 ;; If the second line started with the fill prefix,
549 ;; delete the prefix.
550 (if (and fill-prefix
551 (<= (+ (point) (length fill-prefix)) (point-max))
552 (string= fill-prefix
553 (buffer-substring (point)
554 (+ (point) (length fill-prefix)))))
555 (delete-region (point) (+ (point) (length fill-prefix))))
556 (fixup-whitespace))))
558 (defalias 'join-line #'delete-indentation) ; easier to find
560 (defun delete-blank-lines ()
561 "On blank line, delete all surrounding blank lines, leaving just one.
562 On isolated blank line, delete that one.
563 On nonblank line, delete any immediately following blank lines."
564 (interactive "*")
565 (let (thisblank singleblank)
566 (save-excursion
567 (beginning-of-line)
568 (setq thisblank (looking-at "[ \t]*$"))
569 ;; Set singleblank if there is just one blank line here.
570 (setq singleblank
571 (and thisblank
572 (not (looking-at "[ \t]*\n[ \t]*$"))
573 (or (bobp)
574 (progn (forward-line -1)
575 (not (looking-at "[ \t]*$")))))))
576 ;; Delete preceding blank lines, and this one too if it's the only one.
577 (if thisblank
578 (progn
579 (beginning-of-line)
580 (if singleblank (forward-line 1))
581 (delete-region (point)
582 (if (re-search-backward "[^ \t\n]" nil t)
583 (progn (forward-line 1) (point))
584 (point-min)))))
585 ;; Delete following blank lines, unless the current line is blank
586 ;; and there are no following blank lines.
587 (if (not (and thisblank singleblank))
588 (save-excursion
589 (end-of-line)
590 (forward-line 1)
591 (delete-region (point)
592 (if (re-search-forward "[^ \t\n]" nil t)
593 (progn (beginning-of-line) (point))
594 (point-max)))))
595 ;; Handle the special case where point is followed by newline and eob.
596 ;; Delete the line, leaving point at eob.
597 (if (looking-at "^[ \t]*\n\\'")
598 (delete-region (point) (point-max)))))
600 (defcustom delete-trailing-lines t
601 "If non-nil, \\[delete-trailing-whitespace] deletes trailing lines.
602 Trailing lines are deleted only if `delete-trailing-whitespace'
603 is called on the entire buffer (rather than an active region)."
604 :type 'boolean
605 :group 'editing
606 :version "24.3")
608 (defun region-modifiable-p (start end)
609 "Return non-nil if the region contains no read-only text."
610 (and (not (get-text-property start 'read-only))
611 (eq end (next-single-property-change start 'read-only nil end))))
613 (defun delete-trailing-whitespace (&optional start end)
614 "Delete trailing whitespace between START and END.
615 If called interactively, START and END are the start/end of the
616 region if the mark is active, or of the buffer's accessible
617 portion if the mark is inactive.
619 This command deletes whitespace characters after the last
620 non-whitespace character in each line between START and END. It
621 does not consider formfeed characters to be whitespace.
623 If this command acts on the entire buffer (i.e. if called
624 interactively with the mark inactive, or called from Lisp with
625 END nil), it also deletes all trailing lines at the end of the
626 buffer if the variable `delete-trailing-lines' is non-nil."
627 (interactive (progn
628 (barf-if-buffer-read-only)
629 (if (use-region-p)
630 (list (region-beginning) (region-end))
631 (list nil nil))))
632 (save-match-data
633 (save-excursion
634 (let ((end-marker (and end (copy-marker end))))
635 (goto-char (or start (point-min)))
636 (with-syntax-table (make-syntax-table (syntax-table))
637 ;; Don't delete formfeeds, even if they are considered whitespace.
638 (modify-syntax-entry ?\f "_")
639 (while (re-search-forward "\\s-$" end-marker t)
640 (skip-syntax-backward "-" (line-beginning-position))
641 (let ((b (point)) (e (match-end 0)))
642 (when (region-modifiable-p b e)
643 (delete-region b e)))))
644 (if end
645 (set-marker end-marker nil)
646 ;; Delete trailing empty lines.
647 (and delete-trailing-lines
648 ;; Really the end of buffer.
649 (= (goto-char (point-max)) (1+ (buffer-size)))
650 (<= (skip-chars-backward "\n") -2)
651 (region-modifiable-p (1+ (point)) (point-max))
652 (delete-region (1+ (point)) (point-max)))))))
653 ;; Return nil for the benefit of `write-file-functions'.
654 nil)
656 (defun newline-and-indent ()
657 "Insert a newline, then indent according to major mode.
658 Indentation is done using the value of `indent-line-function'.
659 In programming language modes, this is the same as TAB.
660 In some text modes, where TAB inserts a tab, this command indents to the
661 column specified by the function `current-left-margin'."
662 (interactive "*")
663 (delete-horizontal-space t)
664 (newline nil t)
665 (indent-according-to-mode))
667 (defun reindent-then-newline-and-indent ()
668 "Reindent current line, insert newline, then indent the new line.
669 Indentation of both lines is done according to the current major mode,
670 which means calling the current value of `indent-line-function'.
671 In programming language modes, this is the same as TAB.
672 In some text modes, where TAB inserts a tab, this indents to the
673 column specified by the function `current-left-margin'."
674 (interactive "*")
675 (let ((pos (point)))
676 ;; Be careful to insert the newline before indenting the line.
677 ;; Otherwise, the indentation might be wrong.
678 (newline)
679 (save-excursion
680 (goto-char pos)
681 ;; We are at EOL before the call to indent-according-to-mode, and
682 ;; after it we usually are as well, but not always. We tried to
683 ;; address it with `save-excursion' but that uses a normal marker
684 ;; whereas we need `move after insertion', so we do the save/restore
685 ;; by hand.
686 (setq pos (copy-marker pos t))
687 (indent-according-to-mode)
688 (goto-char pos)
689 ;; Remove the trailing white-space after indentation because
690 ;; indentation may introduce the whitespace.
691 (delete-horizontal-space t))
692 (indent-according-to-mode)))
694 (defcustom read-quoted-char-radix 8
695 "Radix for \\[quoted-insert] and other uses of `read-quoted-char'.
696 Legitimate radix values are 8, 10 and 16."
697 :type '(choice (const 8) (const 10) (const 16))
698 :group 'editing-basics)
700 (defun read-quoted-char (&optional prompt)
701 "Like `read-char', but do not allow quitting.
702 Also, if the first character read is an octal digit,
703 we read any number of octal digits and return the
704 specified character code. Any nondigit terminates the sequence.
705 If the terminator is RET, it is discarded;
706 any other terminator is used itself as input.
708 The optional argument PROMPT specifies a string to use to prompt the user.
709 The variable `read-quoted-char-radix' controls which radix to use
710 for numeric input."
711 (let ((message-log-max nil)
712 (help-events (delq nil (mapcar (lambda (c) (unless (characterp c) c))
713 help-event-list)))
714 done (first t) (code 0) char translated)
715 (while (not done)
716 (let ((inhibit-quit first)
717 ;; Don't let C-h or other help chars get the help
718 ;; message--only help function keys. See bug#16617.
719 (help-char nil)
720 (help-event-list help-events)
721 (help-form
722 "Type the special character you want to use,
723 or the octal character code.
724 RET terminates the character code and is discarded;
725 any other non-digit terminates the character code and is then used as input."))
726 (setq char (read-event (and prompt (format "%s-" prompt)) t))
727 (if inhibit-quit (setq quit-flag nil)))
728 ;; Translate TAB key into control-I ASCII character, and so on.
729 ;; Note: `read-char' does it using the `ascii-character' property.
730 ;; We tried using read-key instead, but that disables the keystroke
731 ;; echo produced by 'C-q', see bug#24635.
732 (let ((translation (lookup-key local-function-key-map (vector char))))
733 (setq translated (if (arrayp translation)
734 (aref translation 0)
735 char)))
736 (if (integerp translated)
737 (setq translated (char-resolve-modifiers translated)))
738 (cond ((null translated))
739 ((not (integerp translated))
740 (setq unread-command-events (list char)
741 done t))
742 ((/= (logand translated ?\M-\^@) 0)
743 ;; Turn a meta-character into a character with the 0200 bit set.
744 (setq code (logior (logand translated (lognot ?\M-\^@)) 128)
745 done t))
746 ((and (<= ?0 translated)
747 (< translated (+ ?0 (min 10 read-quoted-char-radix))))
748 (setq code (+ (* code read-quoted-char-radix) (- translated ?0)))
749 (and prompt (setq prompt (message "%s %c" prompt translated))))
750 ((and (<= ?a (downcase translated))
751 (< (downcase translated)
752 (+ ?a -10 (min 36 read-quoted-char-radix))))
753 (setq code (+ (* code read-quoted-char-radix)
754 (+ 10 (- (downcase translated) ?a))))
755 (and prompt (setq prompt (message "%s %c" prompt translated))))
756 ((and (not first) (eq translated ?\C-m))
757 (setq done t))
758 ((not first)
759 (setq unread-command-events (list char)
760 done t))
761 (t (setq code translated
762 done t)))
763 (setq first nil))
764 code))
766 (defun quoted-insert (arg)
767 "Read next input character and insert it.
768 This is useful for inserting control characters.
769 With argument, insert ARG copies of the character.
771 If the first character you type after this command is an octal digit,
772 you should type a sequence of octal digits which specify a character code.
773 Any nondigit terminates the sequence. If the terminator is a RET,
774 it is discarded; any other terminator is used itself as input.
775 The variable `read-quoted-char-radix' specifies the radix for this feature;
776 set it to 10 or 16 to use decimal or hex instead of octal.
778 In overwrite mode, this function inserts the character anyway, and
779 does not handle octal digits specially. This means that if you use
780 overwrite as your normal editing mode, you can use this function to
781 insert characters when necessary.
783 In binary overwrite mode, this function does overwrite, and octal
784 digits are interpreted as a character code. This is intended to be
785 useful for editing binary files."
786 (interactive "*p")
787 (let* ((char
788 ;; Avoid "obsolete" warnings for translation-table-for-input.
789 (with-no-warnings
790 (let (translation-table-for-input input-method-function)
791 (if (or (not overwrite-mode)
792 (eq overwrite-mode 'overwrite-mode-binary))
793 (read-quoted-char)
794 (read-char))))))
795 ;; This used to assume character codes 0240 - 0377 stand for
796 ;; characters in some single-byte character set, and converted them
797 ;; to Emacs characters. But in 23.1 this feature is deprecated
798 ;; in favor of inserting the corresponding Unicode characters.
799 ;; (if (and enable-multibyte-characters
800 ;; (>= char ?\240)
801 ;; (<= char ?\377))
802 ;; (setq char (unibyte-char-to-multibyte char)))
803 (unless (characterp char)
804 (user-error "%s is not a valid character"
805 (key-description (vector char))))
806 (if (> arg 0)
807 (if (eq overwrite-mode 'overwrite-mode-binary)
808 (delete-char arg)))
809 (while (> arg 0)
810 (insert-and-inherit char)
811 (setq arg (1- arg)))))
813 (defun forward-to-indentation (&optional arg)
814 "Move forward ARG lines and position at first nonblank character."
815 (interactive "^p")
816 (forward-line (or arg 1))
817 (skip-chars-forward " \t"))
819 (defun backward-to-indentation (&optional arg)
820 "Move backward ARG lines and position at first nonblank character."
821 (interactive "^p")
822 (forward-line (- (or arg 1)))
823 (skip-chars-forward " \t"))
825 (defun back-to-indentation ()
826 "Move point to the first non-whitespace character on this line."
827 (interactive "^")
828 (beginning-of-line 1)
829 (skip-syntax-forward " " (line-end-position))
830 ;; Move back over chars that have whitespace syntax but have the p flag.
831 (backward-prefix-chars))
833 (defun fixup-whitespace ()
834 "Fixup white space between objects around point.
835 Leave one space or none, according to the context."
836 (interactive "*")
837 (save-excursion
838 (delete-horizontal-space)
839 (if (or (looking-at "^\\|$\\|\\s)")
840 (save-excursion (forward-char -1)
841 (looking-at "$\\|\\s(\\|\\s'")))
843 (insert ?\s))))
845 (defun delete-horizontal-space (&optional backward-only)
846 "Delete all spaces and tabs around point.
847 If BACKWARD-ONLY is non-nil, only delete them before point."
848 (interactive "*P")
849 (let ((orig-pos (point)))
850 (delete-region
851 (if backward-only
852 orig-pos
853 (progn
854 (skip-chars-forward " \t")
855 (constrain-to-field nil orig-pos t)))
856 (progn
857 (skip-chars-backward " \t")
858 (constrain-to-field nil orig-pos)))))
860 (defun just-one-space (&optional n)
861 "Delete all spaces and tabs around point, leaving one space (or N spaces).
862 If N is negative, delete newlines as well, leaving -N spaces.
863 See also `cycle-spacing'."
864 (interactive "*p")
865 (cycle-spacing n nil 'single-shot))
867 (defvar cycle-spacing--context nil
868 "Store context used in consecutive calls to `cycle-spacing' command.
869 The first time `cycle-spacing' runs, it saves in this variable:
870 its N argument, the original point position, and the original spacing
871 around point.")
873 (defun cycle-spacing (&optional n preserve-nl-back mode)
874 "Manipulate whitespace around point in a smart way.
875 In interactive use, this function behaves differently in successive
876 consecutive calls.
878 The first call in a sequence acts like `just-one-space'.
879 It deletes all spaces and tabs around point, leaving one space
880 \(or N spaces). N is the prefix argument. If N is negative,
881 it deletes newlines as well, leaving -N spaces.
882 \(If PRESERVE-NL-BACK is non-nil, it does not delete newlines before point.)
884 The second call in a sequence deletes all spaces.
886 The third call in a sequence restores the original whitespace (and point).
888 If MODE is `single-shot', it only performs the first step in the sequence.
889 If MODE is `fast' and the first step would not result in any change
890 \(i.e., there are exactly (abs N) spaces around point),
891 the function goes straight to the second step.
893 Repeatedly calling the function with different values of N starts a
894 new sequence each time."
895 (interactive "*p")
896 (let ((orig-pos (point))
897 (skip-characters (if (and n (< n 0)) " \t\n\r" " \t"))
898 (num (abs (or n 1))))
899 (skip-chars-backward (if preserve-nl-back " \t" skip-characters))
900 (constrain-to-field nil orig-pos)
901 (cond
902 ;; Command run for the first time, single-shot mode or different argument
903 ((or (eq 'single-shot mode)
904 (not (equal last-command this-command))
905 (not cycle-spacing--context)
906 (not (eq (car cycle-spacing--context) n)))
907 (let* ((start (point))
908 (num (- num (skip-chars-forward " " (+ num (point)))))
909 (mid (point))
910 (end (progn
911 (skip-chars-forward skip-characters)
912 (constrain-to-field nil orig-pos t))))
913 (setq cycle-spacing--context ;; Save for later.
914 ;; Special handling for case where there was no space at all.
915 (unless (= start end)
916 (cons n (cons orig-pos (buffer-substring start (point))))))
917 ;; If this run causes no change in buffer content, delete all spaces,
918 ;; otherwise delete all excess spaces.
919 (delete-region (if (and (eq mode 'fast) (zerop num) (= mid end))
920 start mid) end)
921 (insert (make-string num ?\s))))
923 ;; Command run for the second time.
924 ((not (equal orig-pos (point)))
925 (delete-region (point) orig-pos))
927 ;; Command run for the third time.
929 (insert (cddr cycle-spacing--context))
930 (goto-char (cadr cycle-spacing--context))
931 (setq cycle-spacing--context nil)))))
933 (defun beginning-of-buffer (&optional arg)
934 "Move point to the beginning of the buffer.
935 With numeric arg N, put point N/10 of the way from the beginning.
936 If the buffer is narrowed, this command uses the beginning of the
937 accessible part of the buffer.
939 Push mark at previous position, unless either a \\[universal-argument] prefix
940 is supplied, or Transient Mark mode is enabled and the mark is active."
941 (declare (interactive-only "use `(goto-char (point-min))' instead."))
942 (interactive "^P")
943 (or (consp arg)
944 (region-active-p)
945 (push-mark))
946 (let ((size (- (point-max) (point-min))))
947 (goto-char (if (and arg (not (consp arg)))
948 (+ (point-min)
949 (if (> size 10000)
950 ;; Avoid overflow for large buffer sizes!
951 (* (prefix-numeric-value arg)
952 (/ size 10))
953 (/ (+ 10 (* size (prefix-numeric-value arg))) 10)))
954 (point-min))))
955 (if (and arg (not (consp arg))) (forward-line 1)))
957 (defun end-of-buffer (&optional arg)
958 "Move point to the end of the buffer.
959 With numeric arg N, put point N/10 of the way from the end.
960 If the buffer is narrowed, this command uses the end of the
961 accessible part of the buffer.
963 Push mark at previous position, unless either a \\[universal-argument] prefix
964 is supplied, or Transient Mark mode is enabled and the mark is active."
965 (declare (interactive-only "use `(goto-char (point-max))' instead."))
966 (interactive "^P")
967 (or (consp arg) (region-active-p) (push-mark))
968 (let ((size (- (point-max) (point-min))))
969 (goto-char (if (and arg (not (consp arg)))
970 (- (point-max)
971 (if (> size 10000)
972 ;; Avoid overflow for large buffer sizes!
973 (* (prefix-numeric-value arg)
974 (/ size 10))
975 (/ (* size (prefix-numeric-value arg)) 10)))
976 (point-max))))
977 ;; If we went to a place in the middle of the buffer,
978 ;; adjust it to the beginning of a line.
979 (cond ((and arg (not (consp arg))) (forward-line 1))
980 ((and (eq (current-buffer) (window-buffer))
981 (> (point) (window-end nil t)))
982 ;; If the end of the buffer is not already on the screen,
983 ;; then scroll specially to put it near, but not at, the bottom.
984 (overlay-recenter (point))
985 (recenter -3))))
987 (defcustom delete-active-region t
988 "Whether single-char deletion commands delete an active region.
989 This has an effect only if Transient Mark mode is enabled, and
990 affects `delete-forward-char' and `delete-backward-char', though
991 not `delete-char'.
993 If the value is the symbol `kill', the active region is killed
994 instead of deleted."
995 :type '(choice (const :tag "Delete active region" t)
996 (const :tag "Kill active region" kill)
997 (const :tag "Do ordinary deletion" nil))
998 :group 'killing
999 :version "24.1")
1001 (defvar region-extract-function
1002 (lambda (method)
1003 (when (region-beginning)
1004 (cond
1005 ((eq method 'bounds)
1006 (list (cons (region-beginning) (region-end))))
1007 ((eq method 'delete-only)
1008 (delete-region (region-beginning) (region-end)))
1010 (filter-buffer-substring (region-beginning) (region-end) method)))))
1011 "Function to get the region's content.
1012 Called with one argument METHOD which can be:
1013 - nil: return the content as a string.
1014 - `delete-only': delete the region; the return value is undefined.
1015 - `bounds': return the boundaries of the region as a list of cons
1016 cells of the form (START . END).
1017 - anything else: delete the region and return its content
1018 as a string, after filtering it with `filter-buffer-substring', which
1019 is called with METHOD as its 3rd argument.")
1021 (defvar region-insert-function
1022 (lambda (lines)
1023 (let ((first t))
1024 (while lines
1025 (or first
1026 (insert ?\n))
1027 (insert-for-yank (car lines))
1028 (setq lines (cdr lines)
1029 first nil))))
1030 "Function to insert the region's content.
1031 Called with one argument LINES.
1032 Insert the region as a list of lines.")
1034 (defun delete-backward-char (n &optional killflag)
1035 "Delete the previous N characters (following 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 option `delete-active-region' to nil.
1040 Optional second arg KILLFLAG, if non-nil, means to kill (save in
1041 kill ring) instead of delete. Interactively, N is the prefix
1042 arg, and KILLFLAG is set if N is explicitly specified.
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.
1048 In Overwrite mode, single character backward deletion may replace
1049 tabs with spaces so as to back over columns, unless point is at
1050 the end of the line."
1051 (declare (interactive-only delete-char))
1052 (interactive "p\nP")
1053 (unless (integerp n)
1054 (signal 'wrong-type-argument (list 'integerp n)))
1055 (cond ((and (use-region-p)
1056 delete-active-region
1057 (= n 1))
1058 ;; If a region is active, kill or delete it.
1059 (if (eq delete-active-region 'kill)
1060 (kill-region (region-beginning) (region-end) 'region)
1061 (funcall region-extract-function 'delete-only)))
1062 ;; In Overwrite mode, maybe untabify while deleting
1063 ((null (or (null overwrite-mode)
1064 (<= n 0)
1065 (memq (char-before) '(?\t ?\n))
1066 (eobp)
1067 (eq (char-after) ?\n)))
1068 (let ((ocol (current-column)))
1069 (delete-char (- n) killflag)
1070 (save-excursion
1071 (insert-char ?\s (- ocol (current-column)) nil))))
1072 ;; Otherwise, do simple deletion.
1073 (t (delete-char (- n) killflag))))
1075 (defun delete-forward-char (n &optional killflag)
1076 "Delete the following N characters (previous if N is negative).
1077 If Transient Mark mode is enabled, the mark is active, and N is 1,
1078 delete the text in the region and deactivate the mark instead.
1079 To disable this, set variable `delete-active-region' to nil.
1081 Optional second arg KILLFLAG non-nil means to kill (save in kill
1082 ring) instead of delete. Interactively, N is the prefix arg, and
1083 KILLFLAG is set if N was explicitly specified.
1085 When killing, the killed text is filtered by
1086 `filter-buffer-substring' before it is saved in the kill ring, so
1087 the actual saved text might be different from what was killed."
1088 (declare (interactive-only delete-char))
1089 (interactive "p\nP")
1090 (unless (integerp n)
1091 (signal 'wrong-type-argument (list 'integerp n)))
1092 (cond ((and (use-region-p)
1093 delete-active-region
1094 (= n 1))
1095 ;; If a region is active, kill or delete it.
1096 (if (eq delete-active-region 'kill)
1097 (kill-region (region-beginning) (region-end) 'region)
1098 (funcall region-extract-function 'delete-only)))
1100 ;; Otherwise, do simple deletion.
1101 (t (delete-char n killflag))))
1103 (defun mark-whole-buffer ()
1104 "Put point at beginning and mark at end of buffer.
1105 If narrowing is in effect, only uses the accessible part of the buffer.
1106 You probably should not use this function in Lisp programs;
1107 it is usually a mistake for a Lisp function to use any subroutine
1108 that uses or sets the mark."
1109 (declare (interactive-only t))
1110 (interactive)
1111 (push-mark)
1112 (push-mark (point-max) nil t)
1113 ;; This is really `point-min' in most cases, but if we're in the
1114 ;; minibuffer, this is at the end of the prompt.
1115 (goto-char (minibuffer-prompt-end)))
1118 ;; Counting lines, one way or another.
1120 (defun goto-line (line &optional buffer)
1121 "Go to LINE, counting from line 1 at beginning of buffer.
1122 If called interactively, a numeric prefix argument specifies
1123 LINE; without a numeric prefix argument, read LINE from the
1124 minibuffer.
1126 If optional argument BUFFER is non-nil, switch to that buffer and
1127 move to line LINE there. If called interactively with \\[universal-argument]
1128 as argument, BUFFER is the most recently selected other buffer.
1130 Prior to moving point, this function sets the mark (without
1131 activating it), unless Transient Mark mode is enabled and the
1132 mark is already active.
1134 This function is usually the wrong thing to use in a Lisp program.
1135 What you probably want instead is something like:
1136 (goto-char (point-min))
1137 (forward-line (1- N))
1138 If at all possible, an even better solution is to use char counts
1139 rather than line counts."
1140 (declare (interactive-only forward-line))
1141 (interactive
1142 (if (and current-prefix-arg (not (consp current-prefix-arg)))
1143 (list (prefix-numeric-value current-prefix-arg))
1144 ;; Look for a default, a number in the buffer at point.
1145 (let* ((default
1146 (save-excursion
1147 (skip-chars-backward "0-9")
1148 (if (looking-at "[0-9]")
1149 (string-to-number
1150 (buffer-substring-no-properties
1151 (point)
1152 (progn (skip-chars-forward "0-9")
1153 (point)))))))
1154 ;; Decide if we're switching buffers.
1155 (buffer
1156 (if (consp current-prefix-arg)
1157 (other-buffer (current-buffer) t)))
1158 (buffer-prompt
1159 (if buffer
1160 (concat " in " (buffer-name buffer))
1161 "")))
1162 ;; Read the argument, offering that number (if any) as default.
1163 (list (read-number (format "Goto line%s: " buffer-prompt)
1164 (list default (line-number-at-pos)))
1165 buffer))))
1166 ;; Switch to the desired buffer, one way or another.
1167 (if buffer
1168 (let ((window (get-buffer-window buffer)))
1169 (if window (select-window window)
1170 (switch-to-buffer-other-window buffer))))
1171 ;; Leave mark at previous position
1172 (or (region-active-p) (push-mark))
1173 ;; Move to the specified line number in that buffer.
1174 (save-restriction
1175 (widen)
1176 (goto-char (point-min))
1177 (if (eq selective-display t)
1178 (re-search-forward "[\n\C-m]" nil 'end (1- line))
1179 (forward-line (1- line)))))
1181 (defun count-words-region (start end &optional arg)
1182 "Count the number of words in the region.
1183 If called interactively, print a message reporting the number of
1184 lines, words, and characters in the region (whether or not the
1185 region is active); with prefix ARG, report for the entire buffer
1186 rather than the region.
1188 If called from Lisp, return the number of words between positions
1189 START and END."
1190 (interactive (if current-prefix-arg
1191 (list nil nil current-prefix-arg)
1192 (list (region-beginning) (region-end) nil)))
1193 (cond ((not (called-interactively-p 'any))
1194 (count-words start end))
1195 (arg
1196 (count-words--buffer-message))
1198 (count-words--message "Region" start end))))
1200 (defun count-words (start end)
1201 "Count words between START and END.
1202 If called interactively, START and END are normally the start and
1203 end of the buffer; but if the region is active, START and END are
1204 the start and end of the region. Print a message reporting the
1205 number of lines, words, and chars.
1207 If called from Lisp, return the number of words between START and
1208 END, without printing any message."
1209 (interactive (list nil nil))
1210 (cond ((not (called-interactively-p 'any))
1211 (let ((words 0))
1212 (save-excursion
1213 (save-restriction
1214 (narrow-to-region start end)
1215 (goto-char (point-min))
1216 (while (forward-word-strictly 1)
1217 (setq words (1+ words)))))
1218 words))
1219 ((use-region-p)
1220 (call-interactively 'count-words-region))
1222 (count-words--buffer-message))))
1224 (defun count-words--buffer-message ()
1225 (count-words--message
1226 (if (buffer-narrowed-p) "Narrowed part of buffer" "Buffer")
1227 (point-min) (point-max)))
1229 (defun count-words--message (str start end)
1230 (let ((lines (count-lines start end))
1231 (words (count-words start end))
1232 (chars (- end start)))
1233 (message "%s has %d line%s, %d word%s, and %d character%s."
1235 lines (if (= lines 1) "" "s")
1236 words (if (= words 1) "" "s")
1237 chars (if (= chars 1) "" "s"))))
1239 (define-obsolete-function-alias 'count-lines-region 'count-words-region "24.1")
1241 (defun what-line ()
1242 "Print the current buffer line number and narrowed line number of point."
1243 (interactive)
1244 (let ((start (point-min))
1245 (n (line-number-at-pos)))
1246 (if (= start 1)
1247 (message "Line %d" n)
1248 (save-excursion
1249 (save-restriction
1250 (widen)
1251 (message "line %d (narrowed line %d)"
1252 (+ n (line-number-at-pos start) -1) n))))))
1254 (defun count-lines (start end)
1255 "Return number of lines between START and END.
1256 This is usually the number of newlines between them,
1257 but can be one more if START is not equal to END
1258 and the greater of them is not at the start of a line."
1259 (save-excursion
1260 (save-restriction
1261 (narrow-to-region start end)
1262 (goto-char (point-min))
1263 (if (eq selective-display t)
1264 (save-match-data
1265 (let ((done 0))
1266 (while (re-search-forward "[\n\C-m]" nil t 40)
1267 (setq done (+ 40 done)))
1268 (while (re-search-forward "[\n\C-m]" nil t 1)
1269 (setq done (+ 1 done)))
1270 (goto-char (point-max))
1271 (if (and (/= start end)
1272 (not (bolp)))
1273 (1+ done)
1274 done)))
1275 (- (buffer-size) (forward-line (buffer-size)))))))
1277 (defun line-number-at-pos (&optional pos absolute)
1278 "Return buffer line number at position POS.
1279 If POS is nil, use current buffer location.
1281 If ABSOLUTE is nil, the default, counting starts
1282 at (point-min), so the value refers to the contents of the
1283 accessible portion of the (potentially narrowed) buffer. If
1284 ABSOLUTE is non-nil, ignore any narrowing and return the
1285 absolute line number."
1286 (save-restriction
1287 (when absolute
1288 (widen))
1289 (let ((opoint (or pos (point))) start)
1290 (save-excursion
1291 (goto-char (point-min))
1292 (setq start (point))
1293 (goto-char opoint)
1294 (forward-line 0)
1295 (1+ (count-lines start (point)))))))
1297 (defun what-cursor-position (&optional detail)
1298 "Print info on cursor position (on screen and within buffer).
1299 Also describe the character after point, and give its character code
1300 in octal, decimal and hex.
1302 For a non-ASCII multibyte character, also give its encoding in the
1303 buffer's selected coding system if the coding system encodes the
1304 character safely. If the character is encoded into one byte, that
1305 code is shown in hex. If the character is encoded into more than one
1306 byte, just \"...\" is shown.
1308 In addition, with prefix argument, show details about that character
1309 in *Help* buffer. See also the command `describe-char'."
1310 (interactive "P")
1311 (let* ((char (following-char))
1312 (bidi-fixer
1313 ;; If the character is one of LRE, LRO, RLE, RLO, it will
1314 ;; start a directional embedding, which could completely
1315 ;; disrupt the rest of the line (e.g., RLO will display the
1316 ;; rest of the line right-to-left). So we put an invisible
1317 ;; PDF character after these characters, to end the
1318 ;; embedding, which eliminates any effects on the rest of
1319 ;; the line. For RLE and RLO we also append an invisible
1320 ;; LRM, to avoid reordering the following numerical
1321 ;; characters. For LRI/RLI/FSI we append a PDI.
1322 (cond ((memq char '(?\x202a ?\x202d))
1323 (propertize (string ?\x202c) 'invisible t))
1324 ((memq char '(?\x202b ?\x202e))
1325 (propertize (string ?\x202c ?\x200e) 'invisible t))
1326 ((memq char '(?\x2066 ?\x2067 ?\x2068))
1327 (propertize (string ?\x2069) 'invisible t))
1328 ;; Strong right-to-left characters cause reordering of
1329 ;; the following numerical characters which show the
1330 ;; codepoint, so append LRM to countermand that.
1331 ((memq (get-char-code-property char 'bidi-class) '(R AL))
1332 (propertize (string ?\x200e) 'invisible t))
1334 "")))
1335 (beg (point-min))
1336 (end (point-max))
1337 (pos (point))
1338 (total (buffer-size))
1339 (percent (round (* 100.0 (1- pos)) (max 1 total)))
1340 (hscroll (if (= (window-hscroll) 0)
1342 (format " Hscroll=%d" (window-hscroll))))
1343 (col (current-column)))
1344 (if (= pos end)
1345 (if (or (/= beg 1) (/= end (1+ total)))
1346 (message "point=%d of %d (%d%%) <%d-%d> column=%d%s"
1347 pos total percent beg end col hscroll)
1348 (message "point=%d of %d (EOB) column=%d%s"
1349 pos total col hscroll))
1350 (let ((coding buffer-file-coding-system)
1351 encoded encoding-msg display-prop under-display)
1352 (if (or (not coding)
1353 (eq (coding-system-type coding) t))
1354 (setq coding (default-value 'buffer-file-coding-system)))
1355 (if (eq (char-charset char) 'eight-bit)
1356 (setq encoding-msg
1357 (format "(%d, #o%o, #x%x, raw-byte)" char char char))
1358 ;; Check if the character is displayed with some `display'
1359 ;; text property. In that case, set under-display to the
1360 ;; buffer substring covered by that property.
1361 (setq display-prop (get-char-property pos 'display))
1362 (if display-prop
1363 (let ((to (or (next-single-char-property-change pos 'display)
1364 (point-max))))
1365 (if (< to (+ pos 4))
1366 (setq under-display "")
1367 (setq under-display "..."
1368 to (+ pos 4)))
1369 (setq under-display
1370 (concat (buffer-substring-no-properties pos to)
1371 under-display)))
1372 (setq encoded (and (>= char 128) (encode-coding-char char coding))))
1373 (setq encoding-msg
1374 (if display-prop
1375 (if (not (stringp display-prop))
1376 (format "(%d, #o%o, #x%x, part of display \"%s\")"
1377 char char char under-display)
1378 (format "(%d, #o%o, #x%x, part of display \"%s\"->\"%s\")"
1379 char char char under-display display-prop))
1380 (if encoded
1381 (format "(%d, #o%o, #x%x, file %s)"
1382 char char char
1383 (if (> (length encoded) 1)
1384 "..."
1385 (encoded-string-description encoded coding)))
1386 (format "(%d, #o%o, #x%x)" char char char)))))
1387 (if detail
1388 ;; We show the detailed information about CHAR.
1389 (describe-char (point)))
1390 (if (or (/= beg 1) (/= end (1+ total)))
1391 (message "Char: %s%s %s point=%d of %d (%d%%) <%d-%d> column=%d%s"
1392 (if (< char 256)
1393 (single-key-description char)
1394 (buffer-substring-no-properties (point) (1+ (point))))
1395 bidi-fixer
1396 encoding-msg pos total percent beg end col hscroll)
1397 (message "Char: %s%s %s point=%d of %d (%d%%) column=%d%s"
1398 (if enable-multibyte-characters
1399 (if (< char 128)
1400 (single-key-description char)
1401 (buffer-substring-no-properties (point) (1+ (point))))
1402 (single-key-description char))
1403 bidi-fixer encoding-msg pos total percent col hscroll))))))
1405 ;; Initialize read-expression-map. It is defined at C level.
1406 (defvar read-expression-map
1407 (let ((m (make-sparse-keymap)))
1408 (define-key m "\M-\t" 'completion-at-point)
1409 ;; Might as well bind TAB to completion, since inserting a TAB char is
1410 ;; much too rarely useful.
1411 (define-key m "\t" 'completion-at-point)
1412 (set-keymap-parent m minibuffer-local-map)
1415 (defun read-minibuffer (prompt &optional initial-contents)
1416 "Return a Lisp object read using the minibuffer, unevaluated.
1417 Prompt with PROMPT. If non-nil, optional second arg INITIAL-CONTENTS
1418 is a string to insert in the minibuffer before reading.
1419 \(INITIAL-CONTENTS can also be a cons of a string and an integer.
1420 Such arguments are used as in `read-from-minibuffer'.)"
1421 ;; Used for interactive spec `x'.
1422 (read-from-minibuffer prompt initial-contents minibuffer-local-map
1423 t 'minibuffer-history))
1425 (defun eval-minibuffer (prompt &optional initial-contents)
1426 "Return value of Lisp expression read using the minibuffer.
1427 Prompt with PROMPT. If non-nil, optional second arg INITIAL-CONTENTS
1428 is a string to insert in the minibuffer before reading.
1429 \(INITIAL-CONTENTS can also be a cons of a string and an integer.
1430 Such arguments are used as in `read-from-minibuffer'.)"
1431 ;; Used for interactive spec `X'.
1432 (eval (read--expression prompt initial-contents)))
1434 (defvar minibuffer-completing-symbol nil
1435 "Non-nil means completing a Lisp symbol in the minibuffer.")
1436 (make-obsolete-variable 'minibuffer-completing-symbol nil "24.1" 'get)
1438 (defvar minibuffer-default nil
1439 "The current default value or list of default values in the minibuffer.
1440 The functions `read-from-minibuffer' and `completing-read' bind
1441 this variable locally.")
1443 (defcustom eval-expression-print-level 4
1444 "Value for `print-level' while printing value in `eval-expression'.
1445 A value of nil means no limit."
1446 :group 'lisp
1447 :type '(choice (const :tag "No Limit" nil) integer)
1448 :version "21.1")
1450 (defcustom eval-expression-print-length 12
1451 "Value for `print-length' while printing value in `eval-expression'.
1452 A value of nil means no limit."
1453 :group 'lisp
1454 :type '(choice (const :tag "No Limit" nil) integer)
1455 :version "21.1")
1457 (defcustom eval-expression-debug-on-error t
1458 "If non-nil set `debug-on-error' to t in `eval-expression'.
1459 If nil, don't change the value of `debug-on-error'."
1460 :group 'lisp
1461 :type 'boolean
1462 :version "21.1")
1464 (defcustom eval-expression-print-maximum-character 127
1465 "The largest integer that will be displayed as a character.
1466 This affects printing by `eval-expression' (via
1467 `eval-expression-print-format')."
1468 :group 'lisp
1469 :type 'integer
1470 :version "26.1")
1472 (defun eval-expression-print-format (value)
1473 "If VALUE in an integer, return a specially formatted string.
1474 This string will typically look like \" (#o1, #x1, ?\\C-a)\".
1475 If VALUE is not an integer, nil is returned.
1476 This function is used by commands like `eval-expression' that
1477 display the result of expression evaluation."
1478 (when (integerp value)
1479 (let ((char-string
1480 (and (characterp value)
1481 (<= value eval-expression-print-maximum-character)
1482 (char-displayable-p value)
1483 (prin1-char value))))
1484 (if char-string
1485 (format " (#o%o, #x%x, %s)" value value char-string)
1486 (format " (#o%o, #x%x)" value value)))))
1488 (defvar eval-expression-minibuffer-setup-hook nil
1489 "Hook run by `eval-expression' when entering the minibuffer.")
1491 (defun read--expression (prompt &optional initial-contents)
1492 (let ((minibuffer-completing-symbol t))
1493 (minibuffer-with-setup-hook
1494 (lambda ()
1495 ;; FIXME: call emacs-lisp-mode?
1496 (add-function :before-until (local 'eldoc-documentation-function)
1497 #'elisp-eldoc-documentation-function)
1498 (eldoc-mode 1)
1499 (add-hook 'completion-at-point-functions
1500 #'elisp-completion-at-point nil t)
1501 (run-hooks 'eval-expression-minibuffer-setup-hook))
1502 (read-from-minibuffer prompt initial-contents
1503 read-expression-map t
1504 'read-expression-history))))
1506 (defun eval-expression-get-print-arguments (prefix-argument)
1507 "Get arguments for commands that print an expression result.
1508 Returns a list (INSERT-VALUE NO-TRUNCATE CHAR-PRINT-LIMIT)
1509 based on PREFIX-ARG. This function determines the interpretation
1510 of the prefix argument for `eval-expression' and
1511 `eval-last-sexp'."
1512 (let ((num (prefix-numeric-value prefix-argument)))
1513 (list (not (memq prefix-argument '(- nil)))
1514 (= num 0)
1515 (cond ((not (memq prefix-argument '(0 -1 - nil))) nil)
1516 ((= num -1) most-positive-fixnum)
1517 (t eval-expression-print-maximum-character)))))
1519 ;; We define this, rather than making `eval' interactive,
1520 ;; for the sake of completion of names like eval-region, eval-buffer.
1521 (defun eval-expression (exp &optional insert-value no-truncate char-print-limit)
1522 "Evaluate EXP and print value in the echo area.
1523 When called interactively, read an Emacs Lisp expression and
1524 evaluate it. Value is also consed on to front of the variable
1525 `values'. Optional argument INSERT-VALUE non-nil (interactively,
1526 with a non `-' prefix argument) means insert the result into the
1527 current buffer instead of printing it in the echo area.
1529 Normally, this function truncates long output according to the
1530 value of the variables `eval-expression-print-length' and
1531 `eval-expression-print-level'. When NO-TRUNCATE is
1532 non-nil (interactively, with a prefix argument of zero), however,
1533 there is no such truncation.
1535 If the resulting value is an integer, and CHAR-PRINT-LIMIT is
1536 non-nil (interactively, unless given a positive prefix argument)
1537 it will be printed in several additional formats (octal,
1538 hexadecimal, and character). The character format is only used
1539 if the value is below CHAR-PRINT-LIMIT (interactively, if the
1540 prefix argument is -1 or the value is below
1541 `eval-expression-print-maximum-character').
1543 Runs the hook `eval-expression-minibuffer-setup-hook' on entering the
1544 minibuffer.
1546 If `eval-expression-debug-on-error' is non-nil, which is the default,
1547 this command arranges for all errors to enter the debugger."
1548 (interactive
1549 (cons (read--expression "Eval: ")
1550 (eval-expression-get-print-arguments current-prefix-arg)))
1552 (if (null eval-expression-debug-on-error)
1553 (push (eval exp lexical-binding) values)
1554 (let ((old-value (make-symbol "t")) new-value)
1555 ;; Bind debug-on-error to something unique so that we can
1556 ;; detect when evalled code changes it.
1557 (let ((debug-on-error old-value))
1558 (push (eval (macroexpand-all exp) lexical-binding) values)
1559 (setq new-value debug-on-error))
1560 ;; If evalled code has changed the value of debug-on-error,
1561 ;; propagate that change to the global binding.
1562 (unless (eq old-value new-value)
1563 (setq debug-on-error new-value))))
1565 (let ((print-length (unless no-truncate eval-expression-print-length))
1566 (print-level (unless no-truncate eval-expression-print-level))
1567 (eval-expression-print-maximum-character char-print-limit)
1568 (deactivate-mark))
1569 (let ((out (if insert-value (current-buffer) t)))
1570 (prog1
1571 (prin1 (car values) out)
1572 (let ((str (and char-print-limit
1573 (eval-expression-print-format (car values)))))
1574 (when str (princ str out)))))))
1576 (defun edit-and-eval-command (prompt command)
1577 "Prompting with PROMPT, let user edit COMMAND and eval result.
1578 COMMAND is a Lisp expression. Let user edit that expression in
1579 the minibuffer, then read and evaluate the result."
1580 (let ((command
1581 (let ((print-level nil)
1582 (minibuffer-history-sexp-flag (1+ (minibuffer-depth))))
1583 (unwind-protect
1584 (read-from-minibuffer prompt
1585 (prin1-to-string command)
1586 read-expression-map t
1587 'command-history)
1588 ;; If command was added to command-history as a string,
1589 ;; get rid of that. We want only evaluable expressions there.
1590 (if (stringp (car command-history))
1591 (setq command-history (cdr command-history)))))))
1593 ;; If command to be redone does not match front of history,
1594 ;; add it to the history.
1595 (or (equal command (car command-history))
1596 (setq command-history (cons command command-history)))
1597 (eval command)))
1599 (defun repeat-complex-command (arg)
1600 "Edit and re-evaluate last complex command, or ARGth from last.
1601 A complex command is one which used the minibuffer.
1602 The command is placed in the minibuffer as a Lisp form for editing.
1603 The result is executed, repeating the command as changed.
1604 If the command has been changed or is not the most recent previous
1605 command it is added to the front of the command history.
1606 You can use the minibuffer history commands \
1607 \\<minibuffer-local-map>\\[next-history-element] and \\[previous-history-element]
1608 to get different commands to edit and resubmit."
1609 (interactive "p")
1610 (let ((elt (nth (1- arg) command-history))
1611 newcmd)
1612 (if elt
1613 (progn
1614 (setq newcmd
1615 (let ((print-level nil)
1616 (minibuffer-history-position arg)
1617 (minibuffer-history-sexp-flag (1+ (minibuffer-depth))))
1618 (unwind-protect
1619 (read-from-minibuffer
1620 "Redo: " (prin1-to-string elt) read-expression-map t
1621 (cons 'command-history arg))
1623 ;; If command was added to command-history as a
1624 ;; string, get rid of that. We want only
1625 ;; evaluable expressions there.
1626 (if (stringp (car command-history))
1627 (setq command-history (cdr command-history))))))
1629 ;; If command to be redone does not match front of history,
1630 ;; add it to the history.
1631 (or (equal newcmd (car command-history))
1632 (setq command-history (cons newcmd command-history)))
1633 (apply #'funcall-interactively
1634 (car newcmd)
1635 (mapcar (lambda (e) (eval e t)) (cdr newcmd))))
1636 (if command-history
1637 (error "Argument %d is beyond length of command history" arg)
1638 (error "There are no previous complex commands to repeat")))))
1641 (defvar extended-command-history nil)
1642 (defvar execute-extended-command--last-typed nil)
1644 (defun read-extended-command ()
1645 "Read command name to invoke in `execute-extended-command'."
1646 (minibuffer-with-setup-hook
1647 (lambda ()
1648 (add-hook 'post-self-insert-hook
1649 (lambda ()
1650 (setq execute-extended-command--last-typed
1651 (minibuffer-contents)))
1652 nil 'local)
1653 (set (make-local-variable 'minibuffer-default-add-function)
1654 (lambda ()
1655 ;; Get a command name at point in the original buffer
1656 ;; to propose it after M-n.
1657 (with-current-buffer (window-buffer (minibuffer-selected-window))
1658 (and (commandp (function-called-at-point))
1659 (format "%S" (function-called-at-point)))))))
1660 ;; Read a string, completing from and restricting to the set of
1661 ;; all defined commands. Don't provide any initial input.
1662 ;; Save the command read on the extended-command history list.
1663 (completing-read
1664 (concat (cond
1665 ((eq current-prefix-arg '-) "- ")
1666 ((and (consp current-prefix-arg)
1667 (eq (car current-prefix-arg) 4)) "C-u ")
1668 ((and (consp current-prefix-arg)
1669 (integerp (car current-prefix-arg)))
1670 (format "%d " (car current-prefix-arg)))
1671 ((integerp current-prefix-arg)
1672 (format "%d " current-prefix-arg)))
1673 ;; This isn't strictly correct if `execute-extended-command'
1674 ;; is bound to anything else (e.g. [menu]).
1675 ;; It could use (key-description (this-single-command-keys)),
1676 ;; but actually a prompt other than "M-x" would be confusing,
1677 ;; because "M-x" is a well-known prompt to read a command
1678 ;; and it serves as a shorthand for "Extended command: ".
1679 "M-x ")
1680 (lambda (string pred action)
1681 (let ((pred
1682 (if (memq action '(nil t))
1683 ;; Exclude obsolete commands from completions.
1684 (lambda (sym)
1685 (and (funcall pred sym)
1686 (or (equal string (symbol-name sym))
1687 (not (get sym 'byte-obsolete-info)))))
1688 pred)))
1689 (complete-with-action action obarray string pred)))
1690 #'commandp t nil 'extended-command-history)))
1692 (defcustom suggest-key-bindings t
1693 "Non-nil means show the equivalent key-binding when M-x command has one.
1694 The value can be a length of time to show the message for.
1695 If the value is non-nil and not a number, we wait 2 seconds."
1696 :group 'keyboard
1697 :type '(choice (const :tag "off" nil)
1698 (integer :tag "time" 2)
1699 (other :tag "on")))
1701 (defcustom extended-command-suggest-shorter t
1702 "If non-nil, show a shorter M-x invocation when there is one."
1703 :group 'keyboard
1704 :type 'boolean
1705 :version "26.1")
1707 (defun execute-extended-command--shorter-1 (name length)
1708 (cond
1709 ((zerop length) (list ""))
1710 ((equal name "") nil)
1712 (nconc (mapcar (lambda (s) (concat (substring name 0 1) s))
1713 (execute-extended-command--shorter-1
1714 (substring name 1) (1- length)))
1715 (when (string-match "\\`\\(-\\)?[^-]*" name)
1716 (execute-extended-command--shorter-1
1717 (substring name (match-end 0)) length))))))
1719 (defun execute-extended-command--shorter (name typed)
1720 (let ((candidates '())
1721 (max (length typed))
1722 (len 1)
1723 binding)
1724 (while (and (not binding)
1725 (progn
1726 (unless candidates
1727 (setq len (1+ len))
1728 (setq candidates (execute-extended-command--shorter-1
1729 name len)))
1730 ;; Don't show the help message if the binding isn't
1731 ;; significantly shorter than the M-x command the user typed.
1732 (< len (- max 5))))
1733 (input-pending-p) ;Dummy call to trigger input-processing, bug#23002.
1734 (let ((candidate (pop candidates)))
1735 (when (equal name
1736 (car-safe (completion-try-completion
1737 candidate obarray 'commandp len)))
1738 (setq binding candidate))))
1739 binding))
1741 (defun execute-extended-command (prefixarg &optional command-name typed)
1742 ;; Based on Fexecute_extended_command in keyboard.c of Emacs.
1743 ;; Aaron S. Hawley <aaron.s.hawley(at)gmail.com> 2009-08-24
1744 "Read a command name, then read the arguments and call the command.
1745 To pass a prefix argument to the command you are
1746 invoking, give a prefix argument to `execute-extended-command'."
1747 (declare (interactive-only command-execute))
1748 ;; FIXME: Remember the actual text typed by the user before completion,
1749 ;; so that we don't later on suggest the same shortening.
1750 (interactive
1751 (let ((execute-extended-command--last-typed nil))
1752 (list current-prefix-arg
1753 (read-extended-command)
1754 execute-extended-command--last-typed)))
1755 ;; Emacs<24 calling-convention was with a single `prefixarg' argument.
1756 (unless command-name
1757 (let ((current-prefix-arg prefixarg) ; for prompt
1758 (execute-extended-command--last-typed nil))
1759 (setq command-name (read-extended-command))
1760 (setq typed execute-extended-command--last-typed)))
1761 (let* ((function (and (stringp command-name) (intern-soft command-name)))
1762 (binding (and suggest-key-bindings
1763 (not executing-kbd-macro)
1764 (where-is-internal function overriding-local-map t))))
1765 (unless (commandp function)
1766 (error "`%s' is not a valid command name" command-name))
1767 ;; Some features, such as novice.el, rely on this-command-keys
1768 ;; including M-x COMMAND-NAME RET.
1769 (set--this-command-keys (concat "\M-x" (symbol-name function) "\r"))
1770 (setq this-command function)
1771 ;; Normally `real-this-command' should never be changed, but here we really
1772 ;; want to pretend that M-x <cmd> RET is nothing more than a "key
1773 ;; binding" for <cmd>, so the command the user really wanted to run is
1774 ;; `function' and not `execute-extended-command'. The difference is
1775 ;; visible in cases such as M-x <cmd> RET and then C-x z (bug#11506).
1776 (setq real-this-command function)
1777 (let ((prefix-arg prefixarg))
1778 (command-execute function 'record))
1779 ;; If enabled, show which key runs this command.
1780 ;; But first wait, and skip the message if there is input.
1781 (let* ((waited
1782 ;; If this command displayed something in the echo area;
1783 ;; wait a few seconds, then display our suggestion message.
1784 ;; FIXME: Wait *after* running post-command-hook!
1785 ;; FIXME: Don't wait if execute-extended-command--shorter won't
1786 ;; find a better answer anyway!
1787 (when suggest-key-bindings
1788 (sit-for (cond
1789 ((zerop (length (current-message))) 0)
1790 ((numberp suggest-key-bindings) suggest-key-bindings)
1791 (t 2))))))
1792 (when (and waited (not (consp unread-command-events)))
1793 (unless (or (not extended-command-suggest-shorter)
1794 binding executing-kbd-macro (not (symbolp function))
1795 (<= (length (symbol-name function)) 2))
1796 ;; There's no binding for CMD. Let's try and find the shortest
1797 ;; string to use in M-x.
1798 ;; FIXME: Can be slow. Cache it maybe?
1799 (while-no-input
1800 (setq binding (execute-extended-command--shorter
1801 (symbol-name function) typed))))
1802 (when binding
1803 (with-temp-message
1804 (format-message "You can run the command `%s' with %s"
1805 function
1806 (if (stringp binding)
1807 (concat "M-x " binding " RET")
1808 (key-description binding)))
1809 (sit-for (if (numberp suggest-key-bindings)
1810 suggest-key-bindings
1811 2))))))))
1813 (defun command-execute (cmd &optional record-flag keys special)
1814 ;; BEWARE: Called directly from the C code.
1815 "Execute CMD as an editor command.
1816 CMD must be a symbol that satisfies the `commandp' predicate.
1817 Optional second arg RECORD-FLAG non-nil
1818 means unconditionally put this command in the variable `command-history'.
1819 Otherwise, that is done only if an arg is read using the minibuffer.
1820 The argument KEYS specifies the value to use instead of (this-command-keys)
1821 when reading the arguments; if it is nil, (this-command-keys) is used.
1822 The argument SPECIAL, if non-nil, means that this command is executing
1823 a special event, so ignore the prefix argument and don't clear it."
1824 (setq debug-on-next-call nil)
1825 (let ((prefixarg (unless special
1826 ;; FIXME: This should probably be done around
1827 ;; pre-command-hook rather than here!
1828 (prog1 prefix-arg
1829 (setq current-prefix-arg prefix-arg)
1830 (setq prefix-arg nil)
1831 (when current-prefix-arg
1832 (prefix-command-update))))))
1833 (if (and (symbolp cmd)
1834 (get cmd 'disabled)
1835 disabled-command-function)
1836 ;; FIXME: Weird calling convention!
1837 (run-hooks 'disabled-command-function)
1838 (let ((final cmd))
1839 (while
1840 (progn
1841 (setq final (indirect-function final))
1842 (if (autoloadp final)
1843 (setq final (autoload-do-load final cmd)))))
1844 (cond
1845 ((arrayp final)
1846 ;; If requested, place the macro in the command history. For
1847 ;; other sorts of commands, call-interactively takes care of this.
1848 (when record-flag
1849 (push `(execute-kbd-macro ,final ,prefixarg) command-history)
1850 ;; Don't keep command history around forever.
1851 (when (and (numberp history-length) (> history-length 0))
1852 (let ((cell (nthcdr history-length command-history)))
1853 (if (consp cell) (setcdr cell nil)))))
1854 (execute-kbd-macro final prefixarg))
1856 ;; Pass `cmd' rather than `final', for the backtrace's sake.
1857 (prog1 (call-interactively cmd record-flag keys)
1858 (when (and (symbolp cmd)
1859 (get cmd 'byte-obsolete-info)
1860 (not (get cmd 'command-execute-obsolete-warned)))
1861 (put cmd 'command-execute-obsolete-warned t)
1862 (message "%s" (macroexp--obsolete-warning
1863 cmd (get cmd 'byte-obsolete-info) "command"))))))))))
1865 (defvar minibuffer-history nil
1866 "Default minibuffer history list.
1867 This is used for all minibuffer input
1868 except when an alternate history list is specified.
1870 Maximum length of the history list is determined by the value
1871 of `history-length', which see.")
1872 (defvar minibuffer-history-sexp-flag nil
1873 "Control whether history list elements are expressions or strings.
1874 If the value of this variable equals current minibuffer depth,
1875 they are expressions; otherwise they are strings.
1876 \(That convention is designed to do the right thing for
1877 recursive uses of the minibuffer.)")
1878 (setq minibuffer-history-variable 'minibuffer-history)
1879 (setq minibuffer-history-position nil) ;; Defvar is in C code.
1880 (defvar minibuffer-history-search-history nil)
1882 (defvar minibuffer-text-before-history nil
1883 "Text that was in this minibuffer before any history commands.
1884 This is nil if there have not yet been any history commands
1885 in this use of the minibuffer.")
1887 (add-hook 'minibuffer-setup-hook 'minibuffer-history-initialize)
1889 (defun minibuffer-history-initialize ()
1890 (setq minibuffer-text-before-history nil))
1892 (defun minibuffer-avoid-prompt (_new _old)
1893 "A point-motion hook for the minibuffer, that moves point out of the prompt."
1894 (declare (obsolete cursor-intangible-mode "25.1"))
1895 (constrain-to-field nil (point-max)))
1897 (defcustom minibuffer-history-case-insensitive-variables nil
1898 "Minibuffer history variables for which matching should ignore case.
1899 If a history variable is a member of this list, then the
1900 \\[previous-matching-history-element] and \\[next-matching-history-element]\
1901 commands ignore case when searching it, regardless of `case-fold-search'."
1902 :type '(repeat variable)
1903 :group 'minibuffer)
1905 (defun previous-matching-history-element (regexp n)
1906 "Find the previous history element that matches REGEXP.
1907 \(Previous history elements refer to earlier actions.)
1908 With prefix argument N, search for Nth previous match.
1909 If N is negative, find the next or Nth next match.
1910 Normally, history elements are matched case-insensitively if
1911 `case-fold-search' is non-nil, but an uppercase letter in REGEXP
1912 makes the search case-sensitive.
1913 See also `minibuffer-history-case-insensitive-variables'."
1914 (interactive
1915 (let* ((enable-recursive-minibuffers t)
1916 (regexp (read-from-minibuffer "Previous element matching (regexp): "
1918 minibuffer-local-map
1920 'minibuffer-history-search-history
1921 (car minibuffer-history-search-history))))
1922 ;; Use the last regexp specified, by default, if input is empty.
1923 (list (if (string= regexp "")
1924 (if minibuffer-history-search-history
1925 (car minibuffer-history-search-history)
1926 (user-error "No previous history search regexp"))
1927 regexp)
1928 (prefix-numeric-value current-prefix-arg))))
1929 (unless (zerop n)
1930 (if (and (zerop minibuffer-history-position)
1931 (null minibuffer-text-before-history))
1932 (setq minibuffer-text-before-history
1933 (minibuffer-contents-no-properties)))
1934 (let ((history (symbol-value minibuffer-history-variable))
1935 (case-fold-search
1936 (if (isearch-no-upper-case-p regexp t) ; assume isearch.el is dumped
1937 ;; On some systems, ignore case for file names.
1938 (if (memq minibuffer-history-variable
1939 minibuffer-history-case-insensitive-variables)
1941 ;; Respect the user's setting for case-fold-search:
1942 case-fold-search)
1943 nil))
1944 prevpos
1945 match-string
1946 match-offset
1947 (pos minibuffer-history-position))
1948 (while (/= n 0)
1949 (setq prevpos pos)
1950 (setq pos (min (max 1 (+ pos (if (< n 0) -1 1))) (length history)))
1951 (when (= pos prevpos)
1952 (user-error (if (= pos 1)
1953 "No later matching history item"
1954 "No earlier matching history item")))
1955 (setq match-string
1956 (if (eq minibuffer-history-sexp-flag (minibuffer-depth))
1957 (let ((print-level nil))
1958 (prin1-to-string (nth (1- pos) history)))
1959 (nth (1- pos) history)))
1960 (setq match-offset
1961 (if (< n 0)
1962 (and (string-match regexp match-string)
1963 (match-end 0))
1964 (and (string-match (concat ".*\\(" regexp "\\)") match-string)
1965 (match-beginning 1))))
1966 (when match-offset
1967 (setq n (+ n (if (< n 0) 1 -1)))))
1968 (setq minibuffer-history-position pos)
1969 (goto-char (point-max))
1970 (delete-minibuffer-contents)
1971 (insert match-string)
1972 (goto-char (+ (minibuffer-prompt-end) match-offset))))
1973 (if (memq (car (car command-history)) '(previous-matching-history-element
1974 next-matching-history-element))
1975 (setq command-history (cdr command-history))))
1977 (defun next-matching-history-element (regexp n)
1978 "Find the next history element that matches REGEXP.
1979 \(The next history element refers to a more recent action.)
1980 With prefix argument N, search for Nth next match.
1981 If N is negative, find the previous or Nth previous match.
1982 Normally, history elements are matched case-insensitively if
1983 `case-fold-search' is non-nil, but an uppercase letter in REGEXP
1984 makes the search case-sensitive."
1985 (interactive
1986 (let* ((enable-recursive-minibuffers t)
1987 (regexp (read-from-minibuffer "Next element matching (regexp): "
1989 minibuffer-local-map
1991 'minibuffer-history-search-history
1992 (car minibuffer-history-search-history))))
1993 ;; Use the last regexp specified, by default, if input is empty.
1994 (list (if (string= regexp "")
1995 (if minibuffer-history-search-history
1996 (car minibuffer-history-search-history)
1997 (user-error "No previous history search regexp"))
1998 regexp)
1999 (prefix-numeric-value current-prefix-arg))))
2000 (previous-matching-history-element regexp (- n)))
2002 (defvar minibuffer-temporary-goal-position nil)
2004 (defvar minibuffer-default-add-function 'minibuffer-default-add-completions
2005 "Function run by `goto-history-element' before consuming default values.
2006 This is useful to dynamically add more elements to the list of default values
2007 when `goto-history-element' reaches the end of this list.
2008 Before calling this function `goto-history-element' sets the variable
2009 `minibuffer-default-add-done' to t, so it will call this function only
2010 once. In special cases, when this function needs to be called more
2011 than once, it can set `minibuffer-default-add-done' to nil explicitly,
2012 overriding the setting of this variable to t in `goto-history-element'.")
2014 (defvar minibuffer-default-add-done nil
2015 "When nil, add more elements to the end of the list of default values.
2016 The value nil causes `goto-history-element' to add more elements to
2017 the list of defaults when it reaches the end of this list. It does
2018 this by calling a function defined by `minibuffer-default-add-function'.")
2020 (make-variable-buffer-local 'minibuffer-default-add-done)
2022 (defun minibuffer-default-add-completions ()
2023 "Return a list of all completions without the default value.
2024 This function is used to add all elements of the completion table to
2025 the end of the list of defaults just after the default value."
2026 (let ((def minibuffer-default)
2027 (all (all-completions ""
2028 minibuffer-completion-table
2029 minibuffer-completion-predicate)))
2030 (if (listp def)
2031 (append def all)
2032 (cons def (delete def all)))))
2034 (defun goto-history-element (nabs)
2035 "Puts element of the minibuffer history in the minibuffer.
2036 The argument NABS specifies the absolute history position."
2037 (interactive "p")
2038 (when (and (not minibuffer-default-add-done)
2039 (functionp minibuffer-default-add-function)
2040 (< nabs (- (if (listp minibuffer-default)
2041 (length minibuffer-default)
2042 1))))
2043 (setq minibuffer-default-add-done t
2044 minibuffer-default (funcall minibuffer-default-add-function)))
2045 (let ((minimum (if minibuffer-default
2046 (- (if (listp minibuffer-default)
2047 (length minibuffer-default)
2050 elt minibuffer-returned-to-present)
2051 (if (and (zerop minibuffer-history-position)
2052 (null minibuffer-text-before-history))
2053 (setq minibuffer-text-before-history
2054 (minibuffer-contents-no-properties)))
2055 (if (< nabs minimum)
2056 (user-error (if minibuffer-default
2057 "End of defaults; no next item"
2058 "End of history; no default available")))
2059 (if (> nabs (if (listp (symbol-value minibuffer-history-variable))
2060 (length (symbol-value minibuffer-history-variable))
2062 (user-error "Beginning of history; no preceding item"))
2063 (unless (memq last-command '(next-history-element
2064 previous-history-element))
2065 (let ((prompt-end (minibuffer-prompt-end)))
2066 (set (make-local-variable 'minibuffer-temporary-goal-position)
2067 (cond ((<= (point) prompt-end) prompt-end)
2068 ((eobp) nil)
2069 (t (point))))))
2070 (goto-char (point-max))
2071 (delete-minibuffer-contents)
2072 (setq minibuffer-history-position nabs)
2073 (cond ((< nabs 0)
2074 (setq elt (if (listp minibuffer-default)
2075 (nth (1- (abs nabs)) minibuffer-default)
2076 minibuffer-default)))
2077 ((= nabs 0)
2078 (setq elt (or minibuffer-text-before-history ""))
2079 (setq minibuffer-returned-to-present t)
2080 (setq minibuffer-text-before-history nil))
2081 (t (setq elt (nth (1- minibuffer-history-position)
2082 (symbol-value minibuffer-history-variable)))))
2083 (insert
2084 (if (and (eq minibuffer-history-sexp-flag (minibuffer-depth))
2085 (not minibuffer-returned-to-present))
2086 (let ((print-level nil))
2087 (prin1-to-string elt))
2088 elt))
2089 (goto-char (or minibuffer-temporary-goal-position (point-max)))))
2091 (defun next-history-element (n)
2092 "Puts next element of the minibuffer history in the minibuffer.
2093 With argument N, it uses the Nth following element."
2094 (interactive "p")
2095 (or (zerop n)
2096 (goto-history-element (- minibuffer-history-position n))))
2098 (defun previous-history-element (n)
2099 "Puts previous element of the minibuffer history in the minibuffer.
2100 With argument N, it uses the Nth previous element."
2101 (interactive "p")
2102 (or (zerop n)
2103 (goto-history-element (+ minibuffer-history-position n))))
2105 (defun next-line-or-history-element (&optional arg)
2106 "Move cursor vertically down ARG lines, or to the next history element.
2107 When point moves over the bottom line of multi-line minibuffer, puts ARGth
2108 next element of the minibuffer history in the minibuffer."
2109 (interactive "^p")
2110 (or arg (setq arg 1))
2111 (let* ((old-point (point))
2112 ;; Don't add newlines if they have the mode enabled globally.
2113 (next-line-add-newlines nil)
2114 ;; Remember the original goal column of possibly multi-line input
2115 ;; excluding the length of the prompt on the first line.
2116 (prompt-end (minibuffer-prompt-end))
2117 (old-column (unless (and (eolp) (> (point) prompt-end))
2118 (if (= (line-number-at-pos) 1)
2119 (max (- (current-column) (1- prompt-end)) 0)
2120 (current-column)))))
2121 (condition-case nil
2122 (with-no-warnings
2123 (next-line arg))
2124 (end-of-buffer
2125 ;; Restore old position since `line-move-visual' moves point to
2126 ;; the end of the line when it fails to go to the next line.
2127 (goto-char old-point)
2128 (next-history-element arg)
2129 ;; Reset `temporary-goal-column' because a correct value is not
2130 ;; calculated when `next-line' above fails by bumping against
2131 ;; the bottom of the minibuffer (bug#22544).
2132 (setq temporary-goal-column 0)
2133 ;; Restore the original goal column on the last line
2134 ;; of possibly multi-line input.
2135 (goto-char (point-max))
2136 (when old-column
2137 (if (= (line-number-at-pos) 1)
2138 (move-to-column (+ old-column (1- (minibuffer-prompt-end))))
2139 (move-to-column old-column)))))))
2141 (defun previous-line-or-history-element (&optional arg)
2142 "Move cursor vertically up ARG lines, or to the previous history element.
2143 When point moves over the top line of multi-line minibuffer, puts ARGth
2144 previous element of the minibuffer history in the minibuffer."
2145 (interactive "^p")
2146 (or arg (setq arg 1))
2147 (let* ((old-point (point))
2148 ;; Remember the original goal column of possibly multi-line input
2149 ;; excluding the length of the prompt on the first line.
2150 (prompt-end (minibuffer-prompt-end))
2151 (old-column (unless (and (eolp) (> (point) prompt-end))
2152 (if (= (line-number-at-pos) 1)
2153 (max (- (current-column) (1- prompt-end)) 0)
2154 (current-column)))))
2155 (condition-case nil
2156 (with-no-warnings
2157 (previous-line arg))
2158 (beginning-of-buffer
2159 ;; Restore old position since `line-move-visual' moves point to
2160 ;; the beginning of the line when it fails to go to the previous line.
2161 (goto-char old-point)
2162 (previous-history-element arg)
2163 ;; Reset `temporary-goal-column' because a correct value is not
2164 ;; calculated when `previous-line' above fails by bumping against
2165 ;; the top of the minibuffer (bug#22544).
2166 (setq temporary-goal-column 0)
2167 ;; Restore the original goal column on the first line
2168 ;; of possibly multi-line input.
2169 (goto-char (minibuffer-prompt-end))
2170 (if old-column
2171 (if (= (line-number-at-pos) 1)
2172 (move-to-column (+ old-column (1- (minibuffer-prompt-end))))
2173 (move-to-column old-column))
2174 ;; Put the cursor at the end of the visual line instead of the
2175 ;; logical line, so the next `previous-line-or-history-element'
2176 ;; would move to the previous history element, not to a possible upper
2177 ;; visual line from the end of logical line in `line-move-visual' mode.
2178 (end-of-visual-line)
2179 ;; Since `end-of-visual-line' puts the cursor at the beginning
2180 ;; of the next visual line, move it one char back to the end
2181 ;; of the first visual line (bug#22544).
2182 (unless (eolp) (backward-char 1)))))))
2184 (defun next-complete-history-element (n)
2185 "Get next history element which completes the minibuffer before the point.
2186 The contents of the minibuffer after the point are deleted, and replaced
2187 by the new completion."
2188 (interactive "p")
2189 (let ((point-at-start (point)))
2190 (next-matching-history-element
2191 (concat
2192 "^" (regexp-quote (buffer-substring (minibuffer-prompt-end) (point))))
2194 ;; next-matching-history-element always puts us at (point-min).
2195 ;; Move to the position we were at before changing the buffer contents.
2196 ;; This is still sensible, because the text before point has not changed.
2197 (goto-char point-at-start)))
2199 (defun previous-complete-history-element (n)
2201 Get previous history element which completes the minibuffer before the point.
2202 The contents of the minibuffer after the point are deleted, and replaced
2203 by the new completion."
2204 (interactive "p")
2205 (next-complete-history-element (- n)))
2207 ;; For compatibility with the old subr of the same name.
2208 (defun minibuffer-prompt-width ()
2209 "Return the display width of the minibuffer prompt.
2210 Return 0 if current buffer is not a minibuffer."
2211 ;; Return the width of everything before the field at the end of
2212 ;; the buffer; this should be 0 for normal buffers.
2213 (1- (minibuffer-prompt-end)))
2215 ;; isearch minibuffer history
2216 (add-hook 'minibuffer-setup-hook 'minibuffer-history-isearch-setup)
2218 (defvar minibuffer-history-isearch-message-overlay)
2219 (make-variable-buffer-local 'minibuffer-history-isearch-message-overlay)
2221 (defun minibuffer-history-isearch-setup ()
2222 "Set up a minibuffer for using isearch to search the minibuffer history.
2223 Intended to be added to `minibuffer-setup-hook'."
2224 (set (make-local-variable 'isearch-search-fun-function)
2225 'minibuffer-history-isearch-search)
2226 (set (make-local-variable 'isearch-message-function)
2227 'minibuffer-history-isearch-message)
2228 (set (make-local-variable 'isearch-wrap-function)
2229 'minibuffer-history-isearch-wrap)
2230 (set (make-local-variable 'isearch-push-state-function)
2231 'minibuffer-history-isearch-push-state)
2232 (add-hook 'isearch-mode-end-hook 'minibuffer-history-isearch-end nil t))
2234 (defun minibuffer-history-isearch-end ()
2235 "Clean up the minibuffer after terminating isearch in the minibuffer."
2236 (if minibuffer-history-isearch-message-overlay
2237 (delete-overlay minibuffer-history-isearch-message-overlay)))
2239 (defun minibuffer-history-isearch-search ()
2240 "Return the proper search function, for isearch in minibuffer history."
2241 (lambda (string bound noerror)
2242 (let ((search-fun
2243 ;; Use standard functions to search within minibuffer text
2244 (isearch-search-fun-default))
2245 found)
2246 ;; Avoid lazy-highlighting matches in the minibuffer prompt when
2247 ;; searching forward. Lazy-highlight calls this lambda with the
2248 ;; bound arg, so skip the minibuffer prompt.
2249 (if (and bound isearch-forward (< (point) (minibuffer-prompt-end)))
2250 (goto-char (minibuffer-prompt-end)))
2252 ;; 1. First try searching in the initial minibuffer text
2253 (funcall search-fun string
2254 (if isearch-forward bound (minibuffer-prompt-end))
2255 noerror)
2256 ;; 2. If the above search fails, start putting next/prev history
2257 ;; elements in the minibuffer successively, and search the string
2258 ;; in them. Do this only when bound is nil (i.e. not while
2259 ;; lazy-highlighting search strings in the current minibuffer text).
2260 (unless bound
2261 (condition-case nil
2262 (progn
2263 (while (not found)
2264 (cond (isearch-forward
2265 (next-history-element 1)
2266 (goto-char (minibuffer-prompt-end)))
2268 (previous-history-element 1)
2269 (goto-char (point-max))))
2270 (setq isearch-barrier (point) isearch-opoint (point))
2271 ;; After putting the next/prev history element, search
2272 ;; the string in them again, until next-history-element
2273 ;; or previous-history-element raises an error at the
2274 ;; beginning/end of history.
2275 (setq found (funcall search-fun string
2276 (unless isearch-forward
2277 ;; For backward search, don't search
2278 ;; in the minibuffer prompt
2279 (minibuffer-prompt-end))
2280 noerror)))
2281 ;; Return point of the new search result
2282 (point))
2283 ;; Return nil when next(prev)-history-element fails
2284 (error nil)))))))
2286 (defun minibuffer-history-isearch-message (&optional c-q-hack ellipsis)
2287 "Display the minibuffer history search prompt.
2288 If there are no search errors, this function displays an overlay with
2289 the isearch prompt which replaces the original minibuffer prompt.
2290 Otherwise, it displays the standard isearch message returned from
2291 the function `isearch-message'."
2292 (if (not (and (minibufferp) isearch-success (not isearch-error)))
2293 ;; Use standard function `isearch-message' when not in the minibuffer,
2294 ;; or search fails, or has an error (like incomplete regexp).
2295 ;; This function overwrites minibuffer text with isearch message,
2296 ;; so it's possible to see what is wrong in the search string.
2297 (isearch-message c-q-hack ellipsis)
2298 ;; Otherwise, put the overlay with the standard isearch prompt over
2299 ;; the initial minibuffer prompt.
2300 (if (overlayp minibuffer-history-isearch-message-overlay)
2301 (move-overlay minibuffer-history-isearch-message-overlay
2302 (point-min) (minibuffer-prompt-end))
2303 (setq minibuffer-history-isearch-message-overlay
2304 (make-overlay (point-min) (minibuffer-prompt-end)))
2305 (overlay-put minibuffer-history-isearch-message-overlay 'evaporate t))
2306 (overlay-put minibuffer-history-isearch-message-overlay
2307 'display (isearch-message-prefix c-q-hack ellipsis))
2308 ;; And clear any previous isearch message.
2309 (message "")))
2311 (defun minibuffer-history-isearch-wrap ()
2312 "Wrap the minibuffer history search when search fails.
2313 Move point to the first history element for a forward search,
2314 or to the last history element for a backward search."
2315 ;; When `minibuffer-history-isearch-search' fails on reaching the
2316 ;; beginning/end of the history, wrap the search to the first/last
2317 ;; minibuffer history element.
2318 (if isearch-forward
2319 (goto-history-element (length (symbol-value minibuffer-history-variable)))
2320 (goto-history-element 0))
2321 (setq isearch-success t)
2322 (goto-char (if isearch-forward (minibuffer-prompt-end) (point-max))))
2324 (defun minibuffer-history-isearch-push-state ()
2325 "Save a function restoring the state of minibuffer history search.
2326 Save `minibuffer-history-position' to the additional state parameter
2327 in the search status stack."
2328 (let ((pos minibuffer-history-position))
2329 (lambda (cmd)
2330 (minibuffer-history-isearch-pop-state cmd pos))))
2332 (defun minibuffer-history-isearch-pop-state (_cmd hist-pos)
2333 "Restore the minibuffer history search state.
2334 Go to the history element by the absolute history position HIST-POS."
2335 (goto-history-element hist-pos))
2338 ;Put this on C-x u, so we can force that rather than C-_ into startup msg
2339 (define-obsolete-function-alias 'advertised-undo 'undo "23.2")
2341 (defconst undo-equiv-table (make-hash-table :test 'eq :weakness t)
2342 "Table mapping redo records to the corresponding undo one.
2343 A redo record for undo-in-region maps to t.
2344 A redo record for ordinary undo maps to the following (earlier) undo.")
2346 (defvar undo-in-region nil
2347 "Non-nil if `pending-undo-list' is not just a tail of `buffer-undo-list'.")
2349 (defvar undo-no-redo nil
2350 "If t, `undo' doesn't go through redo entries.")
2352 (defvar pending-undo-list nil
2353 "Within a run of consecutive undo commands, list remaining to be undone.
2354 If t, we undid all the way to the end of it.")
2356 (defun undo (&optional arg)
2357 "Undo some previous changes.
2358 Repeat this command to undo more changes.
2359 A numeric ARG serves as a repeat count.
2361 In Transient Mark mode when the mark is active, only undo changes within
2362 the current region. Similarly, when not in Transient Mark mode, just \\[universal-argument]
2363 as an argument limits undo to changes within the current region."
2364 (interactive "*P")
2365 ;; Make last-command indicate for the next command that this was an undo.
2366 ;; That way, another undo will undo more.
2367 ;; If we get to the end of the undo history and get an error,
2368 ;; another undo command will find the undo history empty
2369 ;; and will get another error. To begin undoing the undos,
2370 ;; you must type some other command.
2371 (let* ((modified (buffer-modified-p))
2372 ;; For an indirect buffer, look in the base buffer for the
2373 ;; auto-save data.
2374 (base-buffer (or (buffer-base-buffer) (current-buffer)))
2375 (recent-save (with-current-buffer base-buffer
2376 (recent-auto-save-p)))
2377 message)
2378 ;; If we get an error in undo-start,
2379 ;; the next command should not be a "consecutive undo".
2380 ;; So set `this-command' to something other than `undo'.
2381 (setq this-command 'undo-start)
2383 (unless (and (eq last-command 'undo)
2384 (or (eq pending-undo-list t)
2385 ;; If something (a timer or filter?) changed the buffer
2386 ;; since the previous command, don't continue the undo seq.
2387 (let ((list buffer-undo-list))
2388 (while (eq (car list) nil)
2389 (setq list (cdr list)))
2390 ;; If the last undo record made was made by undo
2391 ;; it shows nothing else happened in between.
2392 (gethash list undo-equiv-table))))
2393 (setq undo-in-region
2394 (or (region-active-p) (and arg (not (numberp arg)))))
2395 (if undo-in-region
2396 (undo-start (region-beginning) (region-end))
2397 (undo-start))
2398 ;; get rid of initial undo boundary
2399 (undo-more 1))
2400 ;; If we got this far, the next command should be a consecutive undo.
2401 (setq this-command 'undo)
2402 ;; Check to see whether we're hitting a redo record, and if
2403 ;; so, ask the user whether she wants to skip the redo/undo pair.
2404 (let ((equiv (gethash pending-undo-list undo-equiv-table)))
2405 (or (eq (selected-window) (minibuffer-window))
2406 (setq message (format "%s%s!"
2407 (if (or undo-no-redo (not equiv))
2408 "Undo" "Redo")
2409 (if undo-in-region " in region" ""))))
2410 (when (and (consp equiv) undo-no-redo)
2411 ;; The equiv entry might point to another redo record if we have done
2412 ;; undo-redo-undo-redo-... so skip to the very last equiv.
2413 (while (let ((next (gethash equiv undo-equiv-table)))
2414 (if next (setq equiv next))))
2415 (setq pending-undo-list equiv)))
2416 (undo-more
2417 (if (numberp arg)
2418 (prefix-numeric-value arg)
2420 ;; Record the fact that the just-generated undo records come from an
2421 ;; undo operation--that is, they are redo records.
2422 ;; In the ordinary case (not within a region), map the redo
2423 ;; record to the following undos.
2424 ;; I don't know how to do that in the undo-in-region case.
2425 (let ((list buffer-undo-list))
2426 ;; Strip any leading undo boundaries there might be, like we do
2427 ;; above when checking.
2428 (while (eq (car list) nil)
2429 (setq list (cdr list)))
2430 (puthash list
2431 ;; Prevent identity mapping. This can happen if
2432 ;; consecutive nils are erroneously in undo list.
2433 (if (or undo-in-region (eq list pending-undo-list))
2435 pending-undo-list)
2436 undo-equiv-table))
2437 ;; Don't specify a position in the undo record for the undo command.
2438 ;; Instead, undoing this should move point to where the change is.
2439 (let ((tail buffer-undo-list)
2440 (prev nil))
2441 (while (car tail)
2442 (when (integerp (car tail))
2443 (let ((pos (car tail)))
2444 (if prev
2445 (setcdr prev (cdr tail))
2446 (setq buffer-undo-list (cdr tail)))
2447 (setq tail (cdr tail))
2448 (while (car tail)
2449 (if (eq pos (car tail))
2450 (if prev
2451 (setcdr prev (cdr tail))
2452 (setq buffer-undo-list (cdr tail)))
2453 (setq prev tail))
2454 (setq tail (cdr tail)))
2455 (setq tail nil)))
2456 (setq prev tail tail (cdr tail))))
2457 ;; Record what the current undo list says,
2458 ;; so the next command can tell if the buffer was modified in between.
2459 (and modified (not (buffer-modified-p))
2460 (with-current-buffer base-buffer
2461 (delete-auto-save-file-if-necessary recent-save)))
2462 ;; Display a message announcing success.
2463 (if message
2464 (message "%s" message))))
2466 (defun buffer-disable-undo (&optional buffer)
2467 "Make BUFFER stop keeping undo information.
2468 No argument or nil as argument means do this for the current buffer."
2469 (interactive)
2470 (with-current-buffer (if buffer (get-buffer buffer) (current-buffer))
2471 (setq buffer-undo-list t)))
2473 (defun undo-only (&optional arg)
2474 "Undo some previous changes.
2475 Repeat this command to undo more changes.
2476 A numeric ARG serves as a repeat count.
2477 Contrary to `undo', this will not redo a previous undo."
2478 (interactive "*p")
2479 (let ((undo-no-redo t)) (undo arg)))
2481 (defvar undo-in-progress nil
2482 "Non-nil while performing an undo.
2483 Some change-hooks test this variable to do something different.")
2485 (defun undo-more (n)
2486 "Undo back N undo-boundaries beyond what was already undone recently.
2487 Call `undo-start' to get ready to undo recent changes,
2488 then call `undo-more' one or more times to undo them."
2489 (or (listp pending-undo-list)
2490 (user-error (concat "No further undo information"
2491 (and undo-in-region " for region"))))
2492 (let ((undo-in-progress t))
2493 ;; Note: The following, while pulling elements off
2494 ;; `pending-undo-list' will call primitive change functions which
2495 ;; will push more elements onto `buffer-undo-list'.
2496 (setq pending-undo-list (primitive-undo n pending-undo-list))
2497 (if (null pending-undo-list)
2498 (setq pending-undo-list t))))
2500 (defun primitive-undo (n list)
2501 "Undo N records from the front of the list LIST.
2502 Return what remains of the list."
2504 ;; This is a good feature, but would make undo-start
2505 ;; unable to do what is expected.
2506 ;;(when (null (car (list)))
2507 ;; ;; If the head of the list is a boundary, it is the boundary
2508 ;; ;; preceding this command. Get rid of it and don't count it.
2509 ;; (setq list (cdr list))))
2511 (let ((arg n)
2512 ;; In a writable buffer, enable undoing read-only text that is
2513 ;; so because of text properties.
2514 (inhibit-read-only t)
2515 ;; Don't let `intangible' properties interfere with undo.
2516 (inhibit-point-motion-hooks t)
2517 ;; We use oldlist only to check for EQ. ++kfs
2518 (oldlist buffer-undo-list)
2519 (did-apply nil)
2520 (next nil))
2521 (while (> arg 0)
2522 (while (setq next (pop list)) ;Exit inner loop at undo boundary.
2523 ;; Handle an integer by setting point to that value.
2524 (pcase next
2525 ((pred integerp) (goto-char next))
2526 ;; Element (t . TIME) records previous modtime.
2527 ;; Preserve any flag of NONEXISTENT_MODTIME_NSECS or
2528 ;; UNKNOWN_MODTIME_NSECS.
2529 (`(t . ,time)
2530 ;; If this records an obsolete save
2531 ;; (not matching the actual disk file)
2532 ;; then don't mark unmodified.
2533 (when (or (equal time (visited-file-modtime))
2534 (and (consp time)
2535 (equal (list (car time) (cdr time))
2536 (visited-file-modtime))))
2537 (when (fboundp 'unlock-buffer)
2538 (unlock-buffer))
2539 (set-buffer-modified-p nil)))
2540 ;; Element (nil PROP VAL BEG . END) is property change.
2541 (`(nil . ,(or `(,prop ,val ,beg . ,end) pcase--dontcare))
2542 (when (or (> (point-min) beg) (< (point-max) end))
2543 (error "Changes to be undone are outside visible portion of buffer"))
2544 (put-text-property beg end prop val))
2545 ;; Element (BEG . END) means range was inserted.
2546 (`(,(and beg (pred integerp)) . ,(and end (pred integerp)))
2547 ;; (and `(,beg . ,end) `(,(pred integerp) . ,(pred integerp)))
2548 ;; Ideally: `(,(pred integerp beg) . ,(pred integerp end))
2549 (when (or (> (point-min) beg) (< (point-max) end))
2550 (error "Changes to be undone are outside visible portion of buffer"))
2551 ;; Set point first thing, so that undoing this undo
2552 ;; does not send point back to where it is now.
2553 (goto-char beg)
2554 (delete-region beg end))
2555 ;; Element (apply FUN . ARGS) means call FUN to undo.
2556 (`(apply . ,fun-args)
2557 (let ((currbuff (current-buffer)))
2558 (if (integerp (car fun-args))
2559 ;; Long format: (apply DELTA START END FUN . ARGS).
2560 (pcase-let* ((`(,delta ,start ,end ,fun . ,args) fun-args)
2561 (start-mark (copy-marker start nil))
2562 (end-mark (copy-marker end t)))
2563 (when (or (> (point-min) start) (< (point-max) end))
2564 (error "Changes to be undone are outside visible portion of buffer"))
2565 (apply fun args) ;; Use `save-current-buffer'?
2566 ;; Check that the function did what the entry
2567 ;; said it would do.
2568 (unless (and (= start start-mark)
2569 (= (+ delta end) end-mark))
2570 (error "Changes to be undone by function different than announced"))
2571 (set-marker start-mark nil)
2572 (set-marker end-mark nil))
2573 (apply fun-args))
2574 (unless (eq currbuff (current-buffer))
2575 (error "Undo function switched buffer"))
2576 (setq did-apply t)))
2577 ;; Element (STRING . POS) means STRING was deleted.
2578 (`(,(and string (pred stringp)) . ,(and pos (pred integerp)))
2579 (let ((valid-marker-adjustments nil)
2580 (apos (abs pos)))
2581 (when (or (< apos (point-min)) (> apos (point-max)))
2582 (error "Changes to be undone are outside visible portion of buffer"))
2583 ;; Check that marker adjustments which were recorded
2584 ;; with the (STRING . POS) record are still valid, ie
2585 ;; the markers haven't moved. We check their validity
2586 ;; before reinserting the string so as we don't need to
2587 ;; mind marker insertion-type.
2588 (while (and (markerp (car-safe (car list)))
2589 (integerp (cdr-safe (car list))))
2590 (let* ((marker-adj (pop list))
2591 (m (car marker-adj)))
2592 (and (eq (marker-buffer m) (current-buffer))
2593 (= apos m)
2594 (push marker-adj valid-marker-adjustments))))
2595 ;; Insert string and adjust point
2596 (if (< pos 0)
2597 (progn
2598 (goto-char (- pos))
2599 (insert string))
2600 (goto-char pos)
2601 (insert string)
2602 (goto-char pos))
2603 ;; Adjust the valid marker adjustments
2604 (dolist (adj valid-marker-adjustments)
2605 ;; Insert might have invalidated some of the markers
2606 ;; via modification hooks. Update only the currently
2607 ;; valid ones (bug#25599).
2608 (if (marker-buffer (car adj))
2609 (set-marker (car adj)
2610 (- (car adj) (cdr adj)))))))
2611 ;; (MARKER . OFFSET) means a marker MARKER was adjusted by OFFSET.
2612 (`(,(and marker (pred markerp)) . ,(and offset (pred integerp)))
2613 (warn "Encountered %S entry in undo list with no matching (TEXT . POS) entry"
2614 next)
2615 ;; Even though these elements are not expected in the undo
2616 ;; list, adjust them to be conservative for the 24.4
2617 ;; release. (Bug#16818)
2618 (when (marker-buffer marker)
2619 (set-marker marker
2620 (- marker offset)
2621 (marker-buffer marker))))
2622 (_ (error "Unrecognized entry in undo list %S" next))))
2623 (setq arg (1- arg)))
2624 ;; Make sure an apply entry produces at least one undo entry,
2625 ;; so the test in `undo' for continuing an undo series
2626 ;; will work right.
2627 (if (and did-apply
2628 (eq oldlist buffer-undo-list))
2629 (setq buffer-undo-list
2630 (cons (list 'apply 'cdr nil) buffer-undo-list))))
2631 list)
2633 ;; Deep copy of a list
2634 (defun undo-copy-list (list)
2635 "Make a copy of undo list LIST."
2636 (mapcar 'undo-copy-list-1 list))
2638 (defun undo-copy-list-1 (elt)
2639 (if (consp elt)
2640 (cons (car elt) (undo-copy-list-1 (cdr elt)))
2641 elt))
2643 (defun undo-start (&optional beg end)
2644 "Set `pending-undo-list' to the front of the undo list.
2645 The next call to `undo-more' will undo the most recently made change.
2646 If BEG and END are specified, then only undo elements
2647 that apply to text between BEG and END are used; other undo elements
2648 are ignored. If BEG and END are nil, all undo elements are used."
2649 (if (eq buffer-undo-list t)
2650 (user-error "No undo information in this buffer"))
2651 (setq pending-undo-list
2652 (if (and beg end (not (= beg end)))
2653 (undo-make-selective-list (min beg end) (max beg end))
2654 buffer-undo-list)))
2656 ;; The positions given in elements of the undo list are the positions
2657 ;; as of the time that element was recorded to undo history. In
2658 ;; general, subsequent buffer edits render those positions invalid in
2659 ;; the current buffer, unless adjusted according to the intervening
2660 ;; undo elements.
2662 ;; Undo in region is a use case that requires adjustments to undo
2663 ;; elements. It must adjust positions of elements in the region based
2664 ;; on newer elements not in the region so as they may be correctly
2665 ;; applied in the current buffer. undo-make-selective-list
2666 ;; accomplishes this with its undo-deltas list of adjustments. An
2667 ;; example undo history from oldest to newest:
2669 ;; buf pos:
2670 ;; 123456789 buffer-undo-list undo-deltas
2671 ;; --------- ---------------- -----------
2672 ;; aaa (1 . 4) (1 . -3)
2673 ;; aaba (3 . 4) N/A (in region)
2674 ;; ccaaba (1 . 3) (1 . -2)
2675 ;; ccaabaddd (7 . 10) (7 . -3)
2676 ;; ccaabdd ("ad" . 6) (6 . 2)
2677 ;; ccaabaddd (6 . 8) (6 . -2)
2678 ;; | |<-- region: "caab", from 2 to 6
2680 ;; When the user starts a run of undos in region,
2681 ;; undo-make-selective-list is called to create the full list of in
2682 ;; region elements. Each element is adjusted forward chronologically
2683 ;; through undo-deltas to determine if it is in the region.
2685 ;; In the above example, the insertion of "b" is (3 . 4) in the
2686 ;; buffer-undo-list. The undo-delta (1 . -2) causes (3 . 4) to become
2687 ;; (5 . 6). The next three undo-deltas cause no adjustment, so (5
2688 ;; . 6) is assessed as in the region and placed in the selective list.
2689 ;; Notably, the end of region itself adjusts from "2 to 6" to "2 to 5"
2690 ;; due to the selected element. The "b" insertion is the only element
2691 ;; fully in the region, so in this example undo-make-selective-list
2692 ;; returns (nil (5 . 6)).
2694 ;; The adjustment of the (7 . 10) insertion of "ddd" shows an edge
2695 ;; case. It is adjusted through the undo-deltas: ((6 . 2) (6 . -2)).
2696 ;; Normally an undo-delta of (6 . 2) would cause positions after 6 to
2697 ;; adjust by 2. However, they shouldn't adjust to less than 6, so (7
2698 ;; . 10) adjusts to (6 . 8) due to the first undo delta.
2700 ;; More interesting is how to adjust the "ddd" insertion due to the
2701 ;; next undo-delta: (6 . -2), corresponding to reinsertion of "ad".
2702 ;; If the reinsertion was a manual retyping of "ad", then the total
2703 ;; adjustment should be (7 . 10) -> (6 . 8) -> (8 . 10). However, if
2704 ;; the reinsertion was due to undo, one might expect the first "d"
2705 ;; character would again be a part of the "ddd" text, meaning its
2706 ;; total adjustment would be (7 . 10) -> (6 . 8) -> (7 . 10).
2708 ;; undo-make-selective-list assumes in this situation that "ad" was a
2709 ;; new edit, even if it was inserted because of an undo.
2710 ;; Consequently, if the user undos in region "8 to 10" of the
2711 ;; "ccaabaddd" buffer, they could be surprised that it becomes
2712 ;; "ccaabad", as though the first "d" became detached from the
2713 ;; original "ddd" insertion. This quirk is a FIXME.
2715 (defun undo-make-selective-list (start end)
2716 "Return a list of undo elements for the region START to END.
2717 The elements come from `buffer-undo-list', but we keep only the
2718 elements inside this region, and discard those outside this
2719 region. The elements' positions are adjusted so as the returned
2720 list can be applied to the current buffer."
2721 (let ((ulist buffer-undo-list)
2722 ;; A list of position adjusted undo elements in the region.
2723 (selective-list (list nil))
2724 ;; A list of undo-deltas for out of region undo elements.
2725 undo-deltas
2726 undo-elt)
2727 (while ulist
2728 (when undo-no-redo
2729 (while (gethash ulist undo-equiv-table)
2730 (setq ulist (gethash ulist undo-equiv-table))))
2731 (setq undo-elt (car ulist))
2732 (cond
2733 ((null undo-elt)
2734 ;; Don't put two nils together in the list
2735 (when (car selective-list)
2736 (push nil selective-list)))
2737 ((and (consp undo-elt) (eq (car undo-elt) t))
2738 ;; This is a "was unmodified" element. Keep it
2739 ;; if we have kept everything thus far.
2740 (when (not undo-deltas)
2741 (push undo-elt selective-list)))
2742 ;; Skip over marker adjustments, instead relying
2743 ;; on finding them after (TEXT . POS) elements
2744 ((markerp (car-safe undo-elt))
2745 nil)
2747 (let ((adjusted-undo-elt (undo-adjust-elt undo-elt
2748 undo-deltas)))
2749 (if (undo-elt-in-region adjusted-undo-elt start end)
2750 (progn
2751 (setq end (+ end (cdr (undo-delta adjusted-undo-elt))))
2752 (push adjusted-undo-elt selective-list)
2753 ;; Keep (MARKER . ADJUSTMENT) if their (TEXT . POS) was
2754 ;; kept. primitive-undo may discard them later.
2755 (when (and (stringp (car-safe adjusted-undo-elt))
2756 (integerp (cdr-safe adjusted-undo-elt)))
2757 (let ((list-i (cdr ulist)))
2758 (while (markerp (car-safe (car list-i)))
2759 (push (pop list-i) selective-list)))))
2760 (let ((delta (undo-delta undo-elt)))
2761 (when (/= 0 (cdr delta))
2762 (push delta undo-deltas)))))))
2763 (pop ulist))
2764 (nreverse selective-list)))
2766 (defun undo-elt-in-region (undo-elt start end)
2767 "Determine whether UNDO-ELT falls inside the region START ... END.
2768 If it crosses the edge, we return nil.
2770 Generally this function is not useful for determining
2771 whether (MARKER . ADJUSTMENT) undo elements are in the region,
2772 because markers can be arbitrarily relocated. Instead, pass the
2773 marker adjustment's corresponding (TEXT . POS) element."
2774 (cond ((integerp undo-elt)
2775 (and (>= undo-elt start)
2776 (<= undo-elt end)))
2777 ((eq undo-elt nil)
2779 ((atom undo-elt)
2780 nil)
2781 ((stringp (car undo-elt))
2782 ;; (TEXT . POSITION)
2783 (and (>= (abs (cdr undo-elt)) start)
2784 (<= (abs (cdr undo-elt)) end)))
2785 ((and (consp undo-elt) (markerp (car undo-elt)))
2786 ;; (MARKER . ADJUSTMENT)
2787 (<= start (car undo-elt) end))
2788 ((null (car undo-elt))
2789 ;; (nil PROPERTY VALUE BEG . END)
2790 (let ((tail (nthcdr 3 undo-elt)))
2791 (and (>= (car tail) start)
2792 (<= (cdr tail) end))))
2793 ((integerp (car undo-elt))
2794 ;; (BEGIN . END)
2795 (and (>= (car undo-elt) start)
2796 (<= (cdr undo-elt) end)))))
2798 (defun undo-elt-crosses-region (undo-elt start end)
2799 "Test whether UNDO-ELT crosses one edge of that region START ... END.
2800 This assumes we have already decided that UNDO-ELT
2801 is not *inside* the region START...END."
2802 (declare (obsolete nil "25.1"))
2803 (cond ((atom undo-elt) nil)
2804 ((null (car undo-elt))
2805 ;; (nil PROPERTY VALUE BEG . END)
2806 (let ((tail (nthcdr 3 undo-elt)))
2807 (and (< (car tail) end)
2808 (> (cdr tail) start))))
2809 ((integerp (car undo-elt))
2810 ;; (BEGIN . END)
2811 (and (< (car undo-elt) end)
2812 (> (cdr undo-elt) start)))))
2814 (defun undo-adjust-elt (elt deltas)
2815 "Return adjustment of undo element ELT by the undo DELTAS
2816 list."
2817 (pcase elt
2818 ;; POSITION
2819 ((pred integerp)
2820 (undo-adjust-pos elt deltas))
2821 ;; (BEG . END)
2822 (`(,(and beg (pred integerp)) . ,(and end (pred integerp)))
2823 (undo-adjust-beg-end beg end deltas))
2824 ;; (TEXT . POSITION)
2825 (`(,(and text (pred stringp)) . ,(and pos (pred integerp)))
2826 (cons text (* (if (< pos 0) -1 1)
2827 (undo-adjust-pos (abs pos) deltas))))
2828 ;; (nil PROPERTY VALUE BEG . END)
2829 (`(nil . ,(or `(,prop ,val ,beg . ,end) pcase--dontcare))
2830 `(nil ,prop ,val . ,(undo-adjust-beg-end beg end deltas)))
2831 ;; (apply DELTA START END FUN . ARGS)
2832 ;; FIXME
2833 ;; All others return same elt
2834 (_ elt)))
2836 ;; (BEG . END) can adjust to the same positions, commonly when an
2837 ;; insertion was undone and they are out of region, for example:
2839 ;; buf pos:
2840 ;; 123456789 buffer-undo-list undo-deltas
2841 ;; --------- ---------------- -----------
2842 ;; [...]
2843 ;; abbaa (2 . 4) (2 . -2)
2844 ;; aaa ("bb" . 2) (2 . 2)
2845 ;; [...]
2847 ;; "bb" insertion (2 . 4) adjusts to (2 . 2) because of the subsequent
2848 ;; undo. Further adjustments to such an element should be the same as
2849 ;; for (TEXT . POSITION) elements. The options are:
2851 ;; 1: POSITION adjusts using <= (use-< nil), resulting in behavior
2852 ;; analogous to marker insertion-type t.
2854 ;; 2: POSITION adjusts using <, resulting in behavior analogous to
2855 ;; marker insertion-type nil.
2857 ;; There was no strong reason to prefer one or the other, except that
2858 ;; the first is more consistent with prior undo in region behavior.
2859 (defun undo-adjust-beg-end (beg end deltas)
2860 "Return cons of adjustments to BEG and END by the undo DELTAS
2861 list."
2862 (let ((adj-beg (undo-adjust-pos beg deltas)))
2863 ;; Note: option 2 above would be like (cons (min ...) adj-end)
2864 (cons adj-beg
2865 (max adj-beg (undo-adjust-pos end deltas t)))))
2867 (defun undo-adjust-pos (pos deltas &optional use-<)
2868 "Return adjustment of POS by the undo DELTAS list, comparing
2869 with < or <= based on USE-<."
2870 (dolist (d deltas pos)
2871 (when (if use-<
2872 (< (car d) pos)
2873 (<= (car d) pos))
2874 (setq pos
2875 ;; Don't allow pos to become less than the undo-delta
2876 ;; position. This edge case is described in the overview
2877 ;; comments.
2878 (max (car d) (- pos (cdr d)))))))
2880 ;; Return the first affected buffer position and the delta for an undo element
2881 ;; delta is defined as the change in subsequent buffer positions if we *did*
2882 ;; the undo.
2883 (defun undo-delta (undo-elt)
2884 (if (consp undo-elt)
2885 (cond ((stringp (car undo-elt))
2886 ;; (TEXT . POSITION)
2887 (cons (abs (cdr undo-elt)) (length (car undo-elt))))
2888 ((integerp (car undo-elt))
2889 ;; (BEGIN . END)
2890 (cons (car undo-elt) (- (car undo-elt) (cdr undo-elt))))
2892 '(0 . 0)))
2893 '(0 . 0)))
2895 ;;; Default undo-boundary addition
2897 ;; This section adds a new undo-boundary at either after a command is
2898 ;; called or in some cases on a timer called after a change is made in
2899 ;; any buffer.
2900 (defvar-local undo-auto--last-boundary-cause nil
2901 "Describe the cause of the last undo-boundary.
2903 If `explicit', the last boundary was caused by an explicit call to
2904 `undo-boundary', that is one not called by the code in this
2905 section.
2907 If it is equal to `timer', then the last boundary was inserted
2908 by `undo-auto--boundary-timer'.
2910 If it is equal to `command', then the last boundary was inserted
2911 automatically after a command, that is by the code defined in
2912 this section.
2914 If it is equal to a list, then the last boundary was inserted by
2915 an amalgamating command. The car of the list is the number of
2916 times an amalgamating command has been called, and the cdr are the
2917 buffers that were changed during the last command.")
2919 (defvar undo-auto-current-boundary-timer nil
2920 "Current timer which will run `undo-auto--boundary-timer' or nil.
2922 If set to non-nil, this will effectively disable the timer.")
2924 (defvar undo-auto--this-command-amalgamating nil
2925 "Non-nil if `this-command' should be amalgamated.
2926 This variable is set to nil by `undo-auto--boundaries' and is set
2927 by `undo-auto-amalgamate'." )
2929 (defun undo-auto--needs-boundary-p ()
2930 "Return non-nil if `buffer-undo-list' needs a boundary at the start."
2931 (car-safe buffer-undo-list))
2933 (defun undo-auto--last-boundary-amalgamating-number ()
2934 "Return the number of amalgamating last commands or nil.
2935 Amalgamating commands are, by default, either
2936 `self-insert-command' and `delete-char', but can be any command
2937 that calls `undo-auto-amalgamate'."
2938 (car-safe undo-auto--last-boundary-cause))
2940 (defun undo-auto--ensure-boundary (cause)
2941 "Add an `undo-boundary' to the current buffer if needed.
2942 REASON describes the reason that the boundary is being added; see
2943 `undo-auto--last-boundary' for more information."
2944 (when (and
2945 (undo-auto--needs-boundary-p))
2946 (let ((last-amalgamating
2947 (undo-auto--last-boundary-amalgamating-number)))
2948 (undo-boundary)
2949 (setq undo-auto--last-boundary-cause
2950 (if (eq 'amalgamate cause)
2951 (cons
2952 (if last-amalgamating (1+ last-amalgamating) 0)
2953 undo-auto--undoably-changed-buffers)
2954 cause)))))
2956 (defun undo-auto--boundaries (cause)
2957 "Check recently changed buffers and add a boundary if necessary.
2958 REASON describes the reason that the boundary is being added; see
2959 `undo-last-boundary' for more information."
2960 ;; (Bug #23785) All commands should ensure that there is an undo
2961 ;; boundary whether they have changed the current buffer or not.
2962 (when (eq cause 'command)
2963 (add-to-list 'undo-auto--undoably-changed-buffers (current-buffer)))
2964 (dolist (b undo-auto--undoably-changed-buffers)
2965 (when (buffer-live-p b)
2966 (with-current-buffer b
2967 (undo-auto--ensure-boundary cause))))
2968 (setq undo-auto--undoably-changed-buffers nil))
2970 (defun undo-auto--boundary-timer ()
2971 "Timer function run by `undo-auto-current-boundary-timer'."
2972 (setq undo-auto-current-boundary-timer nil)
2973 (undo-auto--boundaries 'timer))
2975 (defun undo-auto--boundary-ensure-timer ()
2976 "Ensure that the `undo-auto-current-boundary-timer' is set."
2977 (unless undo-auto-current-boundary-timer
2978 (setq undo-auto-current-boundary-timer
2979 (run-at-time 10 nil #'undo-auto--boundary-timer))))
2981 (defvar undo-auto--undoably-changed-buffers nil
2982 "List of buffers that have changed recently.
2984 This list is maintained by `undo-auto--undoable-change' and
2985 `undo-auto--boundaries' and can be affected by changes to their
2986 default values.")
2988 (defun undo-auto--add-boundary ()
2989 "Add an `undo-boundary' in appropriate buffers."
2990 (undo-auto--boundaries
2991 (let ((amal undo-auto--this-command-amalgamating))
2992 (setq undo-auto--this-command-amalgamating nil)
2993 (if amal
2994 'amalgamate
2995 'command))))
2997 (defun undo-auto-amalgamate ()
2998 "Amalgamate undo if necessary.
2999 This function can be called before an amalgamating command. It
3000 removes the previous `undo-boundary' if a series of such calls
3001 have been made. By default `self-insert-command' and
3002 `delete-char' are the only amalgamating commands, although this
3003 function could be called by any command wishing to have this
3004 behavior."
3005 (let ((last-amalgamating-count
3006 (undo-auto--last-boundary-amalgamating-number)))
3007 (setq undo-auto--this-command-amalgamating t)
3008 (when
3009 last-amalgamating-count
3011 (and
3012 (< last-amalgamating-count 20)
3013 (eq this-command last-command))
3014 ;; Amalgamate all buffers that have changed.
3015 (dolist (b (cdr undo-auto--last-boundary-cause))
3016 (when (buffer-live-p b)
3017 (with-current-buffer
3019 (when
3020 ;; The head of `buffer-undo-list' is nil.
3021 ;; `car-safe' doesn't work because
3022 ;; `buffer-undo-list' need not be a list!
3023 (and (listp buffer-undo-list)
3024 (not (car buffer-undo-list)))
3025 (setq buffer-undo-list
3026 (cdr buffer-undo-list))))))
3027 (setq undo-auto--last-boundary-cause 0)))))
3029 (defun undo-auto--undoable-change ()
3030 "Called after every undoable buffer change."
3031 (add-to-list 'undo-auto--undoably-changed-buffers (current-buffer))
3032 (undo-auto--boundary-ensure-timer))
3033 ;; End auto-boundary section
3035 (defun undo-amalgamate-change-group (handle)
3036 "Amalgamate changes in change-group since HANDLE.
3037 Remove all undo boundaries between the state of HANDLE and now.
3038 HANDLE is as returned by `prepare-change-group'."
3039 (dolist (elt handle)
3040 (with-current-buffer (car elt)
3041 (setq elt (cdr elt))
3042 (when (consp buffer-undo-list)
3043 (let ((old-car (car-safe elt))
3044 (old-cdr (cdr-safe elt)))
3045 (unwind-protect
3046 (progn
3047 ;; Temporarily truncate the undo log at ELT.
3048 (when (consp elt)
3049 (setcar elt t) (setcdr elt nil))
3050 (when
3051 (or (null elt) ;The undo-log was empty.
3052 ;; `elt' is still in the log: normal case.
3053 (eq elt (last buffer-undo-list))
3054 ;; `elt' is not in the log any more, but that's because
3055 ;; the log is "all new", so we should remove all
3056 ;; boundaries from it.
3057 (not (eq (last buffer-undo-list) (last old-cdr))))
3058 (cl-callf (lambda (x) (delq nil x))
3059 (if (car buffer-undo-list)
3060 buffer-undo-list
3061 ;; Preserve the undo-boundaries at either ends of the
3062 ;; change-groups.
3063 (cdr buffer-undo-list)))))
3064 ;; Reset the modified cons cell ELT to its original content.
3065 (when (consp elt)
3066 (setcar elt old-car)
3067 (setcdr elt old-cdr))))))))
3070 (defcustom undo-ask-before-discard nil
3071 "If non-nil ask about discarding undo info for the current command.
3072 Normally, Emacs discards the undo info for the current command if
3073 it exceeds `undo-outer-limit'. But if you set this option
3074 non-nil, it asks in the echo area whether to discard the info.
3075 If you answer no, there is a slight risk that Emacs might crash, so
3076 only do it if you really want to undo the command.
3078 This option is mainly intended for debugging. You have to be
3079 careful if you use it for other purposes. Garbage collection is
3080 inhibited while the question is asked, meaning that Emacs might
3081 leak memory. So you should make sure that you do not wait
3082 excessively long before answering the question."
3083 :type 'boolean
3084 :group 'undo
3085 :version "22.1")
3087 (defvar undo-extra-outer-limit nil
3088 "If non-nil, an extra level of size that's ok in an undo item.
3089 We don't ask the user about truncating the undo list until the
3090 current item gets bigger than this amount.
3092 This variable only matters if `undo-ask-before-discard' is non-nil.")
3093 (make-variable-buffer-local 'undo-extra-outer-limit)
3095 ;; When the first undo batch in an undo list is longer than
3096 ;; undo-outer-limit, this function gets called to warn the user that
3097 ;; the undo info for the current command was discarded. Garbage
3098 ;; collection is inhibited around the call, so it had better not do a
3099 ;; lot of consing.
3100 (setq undo-outer-limit-function 'undo-outer-limit-truncate)
3101 (defun undo-outer-limit-truncate (size)
3102 (if undo-ask-before-discard
3103 (when (or (null undo-extra-outer-limit)
3104 (> size undo-extra-outer-limit))
3105 ;; Don't ask the question again unless it gets even bigger.
3106 ;; This applies, in particular, if the user quits from the question.
3107 ;; Such a quit quits out of GC, but something else will call GC
3108 ;; again momentarily. It will call this function again,
3109 ;; but we don't want to ask the question again.
3110 (setq undo-extra-outer-limit (+ size 50000))
3111 (if (let (use-dialog-box track-mouse executing-kbd-macro )
3112 (yes-or-no-p (format-message
3113 "Buffer `%s' undo info is %d bytes long; discard it? "
3114 (buffer-name) size)))
3115 (progn (setq buffer-undo-list nil)
3116 (setq undo-extra-outer-limit nil)
3118 nil))
3119 (display-warning '(undo discard-info)
3120 (concat
3121 (format-message
3122 "Buffer `%s' undo info was %d bytes long.\n"
3123 (buffer-name) size)
3124 "The undo info was discarded because it exceeded \
3125 `undo-outer-limit'.
3127 This is normal if you executed a command that made a huge change
3128 to the buffer. In that case, to prevent similar problems in the
3129 future, set `undo-outer-limit' to a value that is large enough to
3130 cover the maximum size of normal changes you expect a single
3131 command to make, but not so large that it might exceed the
3132 maximum memory allotted to Emacs.
3134 If you did not execute any such command, the situation is
3135 probably due to a bug and you should report it.
3137 You can disable the popping up of this buffer by adding the entry
3138 \(undo discard-info) to the user option `warning-suppress-types',
3139 which is defined in the `warnings' library.\n")
3140 :warning)
3141 (setq buffer-undo-list nil)
3144 (defcustom password-word-equivalents
3145 '("password" "passcode" "passphrase" "pass phrase"
3146 ; These are sorted according to the GNU en_US locale.
3147 "암호" ; ko
3148 "パスワード" ; ja
3149 "ପ୍ରବେଶ ସଙ୍କେତ" ; or
3150 "ពាក្យសម្ងាត់" ; km
3151 "adgangskode" ; da
3152 "contraseña" ; es
3153 "contrasenya" ; ca
3154 "geslo" ; sl
3155 "hasło" ; pl
3156 "heslo" ; cs, sk
3157 "iphasiwedi" ; zu
3158 "jelszó" ; hu
3159 "lösenord" ; sv
3160 "lozinka" ; hr, sr
3161 "mật khẩu" ; vi
3162 "mot de passe" ; fr
3163 "parola" ; tr
3164 "pasahitza" ; eu
3165 "passord" ; nb
3166 "passwort" ; de
3167 "pasvorto" ; eo
3168 "salasana" ; fi
3169 "senha" ; pt
3170 "slaptažodis" ; lt
3171 "wachtwoord" ; nl
3172 "كلمة السر" ; ar
3173 "ססמה" ; he
3174 "лозинка" ; sr
3175 "пароль" ; kk, ru, uk
3176 "गुप्तशब्द" ; mr
3177 "शब्दकूट" ; hi
3178 "પાસવર્ડ" ; gu
3179 "సంకేతపదము" ; te
3180 "ਪਾਸਵਰਡ" ; pa
3181 "ಗುಪ್ತಪದ" ; kn
3182 "கடவுச்சொல்" ; ta
3183 "അടയാളവാക്ക്" ; ml
3184 "গুপ্তশব্দ" ; as
3185 "পাসওয়ার্ড" ; bn_IN
3186 "රහස්පදය" ; si
3187 "密码" ; zh_CN
3188 "密碼" ; zh_TW
3190 "List of words equivalent to \"password\".
3191 This is used by Shell mode and other parts of Emacs to recognize
3192 password prompts, including prompts in languages other than
3193 English. Different case choices should not be assumed to be
3194 included; callers should bind `case-fold-search' to t."
3195 :type '(repeat string)
3196 :version "24.4"
3197 :group 'processes)
3199 (defvar shell-command-history nil
3200 "History list for some commands that read shell commands.
3202 Maximum length of the history list is determined by the value
3203 of `history-length', which see.")
3205 (defvar shell-command-switch (purecopy "-c")
3206 "Switch used to have the shell execute its command line argument.")
3208 (defvar shell-command-default-error-buffer nil
3209 "Buffer name for `shell-command' and `shell-command-on-region' error output.
3210 This buffer is used when `shell-command' or `shell-command-on-region'
3211 is run interactively. A value of nil means that output to stderr and
3212 stdout will be intermixed in the output stream.")
3214 (declare-function mailcap-file-default-commands "mailcap" (files))
3215 (declare-function dired-get-filename "dired" (&optional localp no-error-if-not-filep))
3217 (defun minibuffer-default-add-shell-commands ()
3218 "Return a list of all commands associated with the current file.
3219 This function is used to add all related commands retrieved by `mailcap'
3220 to the end of the list of defaults just after the default value."
3221 (interactive)
3222 (let* ((filename (if (listp minibuffer-default)
3223 (car minibuffer-default)
3224 minibuffer-default))
3225 (commands (and filename (require 'mailcap nil t)
3226 (mailcap-file-default-commands (list filename)))))
3227 (setq commands (mapcar (lambda (command)
3228 (concat command " " filename))
3229 commands))
3230 (if (listp minibuffer-default)
3231 (append minibuffer-default commands)
3232 (cons minibuffer-default commands))))
3234 (declare-function shell-completion-vars "shell" ())
3236 (defvar minibuffer-local-shell-command-map
3237 (let ((map (make-sparse-keymap)))
3238 (set-keymap-parent map minibuffer-local-map)
3239 (define-key map "\t" 'completion-at-point)
3240 map)
3241 "Keymap used for completing shell commands in minibuffer.")
3243 (defun read-shell-command (prompt &optional initial-contents hist &rest args)
3244 "Read a shell command from the minibuffer.
3245 The arguments are the same as the ones of `read-from-minibuffer',
3246 except READ and KEYMAP are missing and HIST defaults
3247 to `shell-command-history'."
3248 (require 'shell)
3249 (minibuffer-with-setup-hook
3250 (lambda ()
3251 (shell-completion-vars)
3252 (set (make-local-variable 'minibuffer-default-add-function)
3253 'minibuffer-default-add-shell-commands))
3254 (apply 'read-from-minibuffer prompt initial-contents
3255 minibuffer-local-shell-command-map
3257 (or hist 'shell-command-history)
3258 args)))
3260 (defcustom async-shell-command-buffer 'confirm-new-buffer
3261 "What to do when the output buffer is used by another shell command.
3262 This option specifies how to resolve the conflict where a new command
3263 wants to direct its output to the buffer `*Async Shell Command*',
3264 but this buffer is already taken by another running shell command.
3266 The value `confirm-kill-process' is used to ask for confirmation before
3267 killing the already running process and running a new process
3268 in the same buffer, `confirm-new-buffer' for confirmation before running
3269 the command in a new buffer with a name other than the default buffer name,
3270 `new-buffer' for doing the same without confirmation,
3271 `confirm-rename-buffer' for confirmation before renaming the existing
3272 output buffer and running a new command in the default buffer,
3273 `rename-buffer' for doing the same without confirmation."
3274 :type '(choice (const :tag "Confirm killing of running command"
3275 confirm-kill-process)
3276 (const :tag "Confirm creation of a new buffer"
3277 confirm-new-buffer)
3278 (const :tag "Create a new buffer"
3279 new-buffer)
3280 (const :tag "Confirm renaming of existing buffer"
3281 confirm-rename-buffer)
3282 (const :tag "Rename the existing buffer"
3283 rename-buffer))
3284 :group 'shell
3285 :version "24.3")
3287 (defcustom async-shell-command-display-buffer t
3288 "Whether to display the command buffer immediately.
3289 If t, display the buffer immediately; if nil, wait until there
3290 is output."
3291 :type '(choice (const :tag "Display buffer immediately"
3293 (const :tag "Display buffer on output"
3294 nil))
3295 :group 'shell
3296 :version "26.1")
3298 (defun shell-command--save-pos-or-erase ()
3299 "Store a buffer position or erase the buffer.
3300 See `shell-command-dont-erase-buffer'."
3301 (let ((sym shell-command-dont-erase-buffer)
3302 pos)
3303 (setq buffer-read-only nil)
3304 ;; Setting buffer-read-only to nil doesn't suffice
3305 ;; if some text has a non-nil read-only property,
3306 ;; which comint sometimes adds for prompts.
3307 (setq pos
3308 (cond ((eq sym 'save-point) (point))
3309 ((eq sym 'beg-last-out) (point-max))
3310 ((not sym)
3311 (let ((inhibit-read-only t))
3312 (erase-buffer) nil))))
3313 (when pos
3314 (goto-char (point-max))
3315 (push (cons (current-buffer) pos)
3316 shell-command-saved-pos))))
3318 (defun shell-command--set-point-after-cmd (&optional buffer)
3319 "Set point in BUFFER after command complete.
3320 BUFFER is the output buffer of the command; if nil, then defaults
3321 to the current BUFFER.
3322 Set point to the `cdr' of the element in `shell-command-saved-pos'
3323 whose `car' is BUFFER."
3324 (when shell-command-dont-erase-buffer
3325 (let* ((sym shell-command-dont-erase-buffer)
3326 (buf (or buffer (current-buffer)))
3327 (pos (alist-get buf shell-command-saved-pos)))
3328 (setq shell-command-saved-pos
3329 (assq-delete-all buf shell-command-saved-pos))
3330 (when (buffer-live-p buf)
3331 (let ((win (car (get-buffer-window-list buf)))
3332 (pmax (with-current-buffer buf (point-max))))
3333 (unless (and pos (memq sym '(save-point beg-last-out)))
3334 (setq pos pmax))
3335 ;; Set point in the window displaying buf, if any; otherwise
3336 ;; display buf temporary in selected frame and set the point.
3337 (if win
3338 (set-window-point win pos)
3339 (save-window-excursion
3340 (let ((win (display-buffer
3342 '(nil (inhibit-switch-frame . t)))))
3343 (set-window-point win pos)))))))))
3345 (defun async-shell-command (command &optional output-buffer error-buffer)
3346 "Execute string COMMAND asynchronously in background.
3348 Like `shell-command', but adds `&' at the end of COMMAND
3349 to execute it asynchronously.
3351 The output appears in the buffer `*Async Shell Command*'.
3352 That buffer is in shell mode.
3354 You can configure `async-shell-command-buffer' to specify what to do
3355 when the `*Async Shell Command*' buffer is already taken by another
3356 running shell command. To run COMMAND without displaying the output
3357 in a window you can configure `display-buffer-alist' to use the action
3358 `display-buffer-no-window' for the buffer `*Async Shell Command*'.
3360 In Elisp, you will often be better served by calling `start-process'
3361 directly, since it offers more control and does not impose the use of
3362 a shell (with its need to quote arguments)."
3363 (interactive
3364 (list
3365 (read-shell-command "Async shell command: " nil nil
3366 (let ((filename
3367 (cond
3368 (buffer-file-name)
3369 ((eq major-mode 'dired-mode)
3370 (dired-get-filename nil t)))))
3371 (and filename (file-relative-name filename))))
3372 current-prefix-arg
3373 shell-command-default-error-buffer))
3374 (unless (string-match "&[ \t]*\\'" command)
3375 (setq command (concat command " &")))
3376 (shell-command command output-buffer error-buffer))
3378 (defun shell-command (command &optional output-buffer error-buffer)
3379 "Execute string COMMAND in inferior shell; display output, if any.
3380 With prefix argument, insert the COMMAND's output at point.
3382 Interactively, prompt for COMMAND in the minibuffer.
3384 If COMMAND ends in `&', execute it asynchronously.
3385 The output appears in the buffer `*Async Shell Command*'.
3386 That buffer is in shell mode. You can also use
3387 `async-shell-command' that automatically adds `&'.
3389 Otherwise, COMMAND is executed synchronously. The output appears in
3390 the buffer `*Shell Command Output*'. If the output is short enough to
3391 display in the echo area (which is determined by the variables
3392 `resize-mini-windows' and `max-mini-window-height'), it is shown
3393 there, but it is nonetheless available in buffer `*Shell Command
3394 Output*' even though that buffer is not automatically displayed.
3396 To specify a coding system for converting non-ASCII characters
3397 in the shell command output, use \\[universal-coding-system-argument] \
3398 before this command.
3400 Noninteractive callers can specify coding systems by binding
3401 `coding-system-for-read' and `coding-system-for-write'.
3403 The optional second argument OUTPUT-BUFFER, if non-nil,
3404 says to put the output in some other buffer.
3405 If OUTPUT-BUFFER is a buffer or buffer name, erase that buffer
3406 and insert the output there; a non-nil value of
3407 `shell-command-dont-erase-buffer' prevents the buffer from being
3408 erased. If OUTPUT-BUFFER is not a buffer and not nil, insert the
3409 output in current buffer after point leaving mark after it. This
3410 cannot be done asynchronously.
3412 If the command terminates without error, but generates output,
3413 and you did not specify \"insert it in the current buffer\",
3414 the output can be displayed in the echo area or in its buffer.
3415 If the output is short enough to display in the echo area
3416 \(determined by the variable `max-mini-window-height' if
3417 `resize-mini-windows' is non-nil), it is shown there.
3418 Otherwise, the buffer containing the output is displayed.
3420 If there is output and an error, and you did not specify \"insert it
3421 in the current buffer\", a message about the error goes at the end
3422 of the output.
3424 If the optional third argument ERROR-BUFFER is non-nil, it is a buffer
3425 or buffer name to which to direct the command's standard error output.
3426 If it is nil, error output is mingled with regular output.
3427 In an interactive call, the variable `shell-command-default-error-buffer'
3428 specifies the value of ERROR-BUFFER.
3430 In Elisp, you will often be better served by calling `call-process' or
3431 `start-process' directly, since they offer more control and do not
3432 impose the use of a shell (with its need to quote arguments)."
3434 (interactive
3435 (list
3436 (read-shell-command "Shell command: " nil nil
3437 (let ((filename
3438 (cond
3439 (buffer-file-name)
3440 ((eq major-mode 'dired-mode)
3441 (dired-get-filename nil t)))))
3442 (and filename (file-relative-name filename))))
3443 current-prefix-arg
3444 shell-command-default-error-buffer))
3445 ;; Look for a handler in case default-directory is a remote file name.
3446 (let ((handler
3447 (find-file-name-handler (directory-file-name default-directory)
3448 'shell-command)))
3449 (if handler
3450 (funcall handler 'shell-command command output-buffer error-buffer)
3451 (if (and output-buffer
3452 (not (or (bufferp output-buffer) (stringp output-buffer))))
3453 ;; Output goes in current buffer.
3454 (let ((error-file
3455 (if error-buffer
3456 (make-temp-file
3457 (expand-file-name "scor"
3458 (or small-temporary-file-directory
3459 temporary-file-directory)))
3460 nil)))
3461 (barf-if-buffer-read-only)
3462 (push-mark nil t)
3463 ;; We do not use -f for csh; we will not support broken use of
3464 ;; .cshrcs. Even the BSD csh manual says to use
3465 ;; "if ($?prompt) exit" before things which are not useful
3466 ;; non-interactively. Besides, if someone wants their other
3467 ;; aliases for shell commands then they can still have them.
3468 (call-process shell-file-name nil
3469 (if error-file
3470 (list t error-file)
3472 nil shell-command-switch command)
3473 (when (and error-file (file-exists-p error-file))
3474 (if (< 0 (nth 7 (file-attributes error-file)))
3475 (with-current-buffer (get-buffer-create error-buffer)
3476 (let ((pos-from-end (- (point-max) (point))))
3477 (or (bobp)
3478 (insert "\f\n"))
3479 ;; Do no formatting while reading error file,
3480 ;; because that can run a shell command, and we
3481 ;; don't want that to cause an infinite recursion.
3482 (format-insert-file error-file nil)
3483 ;; Put point after the inserted errors.
3484 (goto-char (- (point-max) pos-from-end)))
3485 (display-buffer (current-buffer))))
3486 (delete-file error-file))
3487 ;; This is like exchange-point-and-mark, but doesn't
3488 ;; activate the mark. It is cleaner to avoid activation,
3489 ;; even though the command loop would deactivate the mark
3490 ;; because we inserted text.
3491 (goto-char (prog1 (mark t)
3492 (set-marker (mark-marker) (point)
3493 (current-buffer)))))
3494 ;; Output goes in a separate buffer.
3495 ;; Preserve the match data in case called from a program.
3496 ;; FIXME: It'd be ridiculous for an Elisp function to call
3497 ;; shell-command and assume that it won't mess the match-data!
3498 (save-match-data
3499 (if (string-match "[ \t]*&[ \t]*\\'" command)
3500 ;; Command ending with ampersand means asynchronous.
3501 (let* ((buffer (get-buffer-create
3502 (or output-buffer "*Async Shell Command*")))
3503 (bname (buffer-name buffer))
3504 (directory default-directory)
3505 proc)
3506 ;; Remove the ampersand.
3507 (setq command (substring command 0 (match-beginning 0)))
3508 ;; Ask the user what to do with already running process.
3509 (setq proc (get-buffer-process buffer))
3510 (when proc
3511 (cond
3512 ((eq async-shell-command-buffer 'confirm-kill-process)
3513 ;; If will kill a process, query first.
3514 (if (yes-or-no-p "A command is running in the default buffer. Kill it? ")
3515 (kill-process proc)
3516 (error "Shell command in progress")))
3517 ((eq async-shell-command-buffer 'confirm-new-buffer)
3518 ;; If will create a new buffer, query first.
3519 (if (yes-or-no-p "A command is running in the default buffer. Use a new buffer? ")
3520 (setq buffer (generate-new-buffer bname))
3521 (error "Shell command in progress")))
3522 ((eq async-shell-command-buffer 'new-buffer)
3523 ;; It will create a new buffer.
3524 (setq buffer (generate-new-buffer bname)))
3525 ((eq async-shell-command-buffer 'confirm-rename-buffer)
3526 ;; If will rename the buffer, query first.
3527 (if (yes-or-no-p "A command is running in the default buffer. Rename it? ")
3528 (progn
3529 (with-current-buffer buffer
3530 (rename-uniquely))
3531 (setq buffer (get-buffer-create bname)))
3532 (error "Shell command in progress")))
3533 ((eq async-shell-command-buffer 'rename-buffer)
3534 ;; It will rename the buffer.
3535 (with-current-buffer buffer
3536 (rename-uniquely))
3537 (setq buffer (get-buffer-create bname)))))
3538 (with-current-buffer buffer
3539 (shell-command--save-pos-or-erase)
3540 (setq default-directory directory)
3541 (setq proc (start-process "Shell" buffer shell-file-name
3542 shell-command-switch command))
3543 (setq mode-line-process '(":%s"))
3544 (require 'shell) (shell-mode)
3545 (set-process-sentinel proc 'shell-command-sentinel)
3546 ;; Use the comint filter for proper handling of
3547 ;; carriage motion (see comint-inhibit-carriage-motion).
3548 (set-process-filter proc 'comint-output-filter)
3549 (if async-shell-command-display-buffer
3550 ;; Display buffer immediately.
3551 (display-buffer buffer '(nil (allow-no-window . t)))
3552 ;; Defer displaying buffer until first process output.
3553 ;; Use disposable named advice so that the buffer is
3554 ;; displayed at most once per process lifetime.
3555 (let ((nonce (make-symbol "nonce")))
3556 (add-function :before (process-filter proc)
3557 (lambda (proc _string)
3558 (let ((buf (process-buffer proc)))
3559 (when (buffer-live-p buf)
3560 (remove-function (process-filter proc)
3561 nonce)
3562 (display-buffer buf))))
3563 `((name . ,nonce)))))))
3564 ;; Otherwise, command is executed synchronously.
3565 (shell-command-on-region (point) (point) command
3566 output-buffer nil error-buffer)))))))
3568 (defun display-message-or-buffer (message &optional buffer-name action frame)
3569 "Display MESSAGE in the echo area if possible, otherwise in a pop-up buffer.
3570 MESSAGE may be either a string or a buffer.
3572 A pop-up buffer is displayed using `display-buffer' if MESSAGE is too long
3573 for maximum height of the echo area, as defined by `max-mini-window-height'
3574 if `resize-mini-windows' is non-nil.
3576 Returns either the string shown in the echo area, or when a pop-up
3577 buffer is used, the window used to display it.
3579 If MESSAGE is a string, then the optional argument BUFFER-NAME is the
3580 name of the buffer used to display it in the case where a pop-up buffer
3581 is used, defaulting to `*Message*'. In the case where MESSAGE is a
3582 string and it is displayed in the echo area, it is not specified whether
3583 the contents are inserted into the buffer anyway.
3585 Optional arguments ACTION and FRAME are as for `display-buffer',
3586 and are only used if a pop-up buffer is displayed."
3587 (cond ((and (stringp message) (not (string-match "\n" message)))
3588 ;; Trivial case where we can use the echo area
3589 (message "%s" message))
3590 ((and (stringp message)
3591 (= (string-match "\n" message) (1- (length message))))
3592 ;; Trivial case where we can just remove single trailing newline
3593 (message "%s" (substring message 0 (1- (length message)))))
3595 ;; General case
3596 (with-current-buffer
3597 (if (bufferp message)
3598 message
3599 (get-buffer-create (or buffer-name "*Message*")))
3601 (unless (bufferp message)
3602 (erase-buffer)
3603 (insert message))
3605 (let ((lines
3606 (if (= (buffer-size) 0)
3608 (count-screen-lines nil nil nil (minibuffer-window)))))
3609 (cond ((= lines 0))
3610 ((and (or (<= lines 1)
3611 (<= lines
3612 (if resize-mini-windows
3613 (cond ((floatp max-mini-window-height)
3614 (* (frame-height)
3615 max-mini-window-height))
3616 ((integerp max-mini-window-height)
3617 max-mini-window-height)
3620 1)))
3621 ;; Don't use the echo area if the output buffer is
3622 ;; already displayed in the selected frame.
3623 (not (get-buffer-window (current-buffer))))
3624 ;; Echo area
3625 (goto-char (point-max))
3626 (when (bolp)
3627 (backward-char 1))
3628 (message "%s" (buffer-substring (point-min) (point))))
3630 ;; Buffer
3631 (goto-char (point-min))
3632 (display-buffer (current-buffer) action frame))))))))
3635 ;; We have a sentinel to prevent insertion of a termination message
3636 ;; in the buffer itself, and to set the point in the buffer when
3637 ;; `shell-command-dont-erase-buffer' is non-nil.
3638 (defun shell-command-sentinel (process signal)
3639 (when (memq (process-status process) '(exit signal))
3640 (shell-command--set-point-after-cmd (process-buffer process))
3641 (message "%s: %s."
3642 (car (cdr (cdr (process-command process))))
3643 (substring signal 0 -1))))
3645 (defun shell-command-on-region (start end command
3646 &optional output-buffer replace
3647 error-buffer display-error-buffer
3648 region-noncontiguous-p)
3649 "Execute string COMMAND in inferior shell with region as input.
3650 Normally display output (if any) in temp buffer `*Shell Command Output*';
3651 Prefix arg means replace the region with it. Return the exit code of
3652 COMMAND.
3654 To specify a coding system for converting non-ASCII characters
3655 in the input and output to the shell command, use \\[universal-coding-system-argument]
3656 before this command. By default, the input (from the current buffer)
3657 is encoded using coding-system specified by `process-coding-system-alist',
3658 falling back to `default-process-coding-system' if no match for COMMAND
3659 is found in `process-coding-system-alist'.
3661 Noninteractive callers can specify coding systems by binding
3662 `coding-system-for-read' and `coding-system-for-write'.
3664 If the command generates output, the output may be displayed
3665 in the echo area or in a buffer.
3666 If the output is short enough to display in the echo area
3667 \(determined by the variable `max-mini-window-height' if
3668 `resize-mini-windows' is non-nil), it is shown there.
3669 Otherwise it is displayed in the buffer `*Shell Command Output*'.
3670 The output is available in that buffer in both cases.
3672 If there is output and an error, a message about the error
3673 appears at the end of the output.
3675 Optional fourth arg OUTPUT-BUFFER specifies where to put the
3676 command's output. If the value is a buffer or buffer name,
3677 erase that buffer and insert the output there; a non-nil value of
3678 `shell-command-dont-erase-buffer' prevent to erase the buffer.
3679 If the value is nil, use the buffer `*Shell Command Output*'.
3680 Any other non-nil value means to insert the output in the
3681 current buffer after START.
3683 Optional fifth arg REPLACE, if non-nil, means to insert the
3684 output in place of text from START to END, putting point and mark
3685 around it.
3687 Optional sixth arg ERROR-BUFFER, if non-nil, specifies a buffer
3688 or buffer name to which to direct the command's standard error
3689 output. If nil, error output is mingled with regular output.
3690 When called interactively, `shell-command-default-error-buffer'
3691 is used for ERROR-BUFFER.
3693 Optional seventh arg DISPLAY-ERROR-BUFFER, if non-nil, means to
3694 display the error buffer if there were any errors. When called
3695 interactively, this is t."
3696 (interactive (let (string)
3697 (unless (mark)
3698 (user-error "The mark is not set now, so there is no region"))
3699 ;; Do this before calling region-beginning
3700 ;; and region-end, in case subprocess output
3701 ;; relocates them while we are in the minibuffer.
3702 (setq string (read-shell-command "Shell command on region: "))
3703 ;; call-interactively recognizes region-beginning and
3704 ;; region-end specially, leaving them in the history.
3705 (list (region-beginning) (region-end)
3706 string
3707 current-prefix-arg
3708 current-prefix-arg
3709 shell-command-default-error-buffer
3711 (region-noncontiguous-p))))
3712 (let ((error-file
3713 (if error-buffer
3714 (make-temp-file
3715 (expand-file-name "scor"
3716 (or small-temporary-file-directory
3717 temporary-file-directory)))
3718 nil))
3719 exit-status)
3720 ;; Unless a single contiguous chunk is selected, operate on multiple chunks.
3721 (if region-noncontiguous-p
3722 (let ((input (concat (funcall region-extract-function 'delete) "\n"))
3723 output)
3724 (with-temp-buffer
3725 (insert input)
3726 (call-process-region (point-min) (point-max)
3727 shell-file-name t t
3728 nil shell-command-switch
3729 command)
3730 (setq output (split-string (buffer-string) "\n")))
3731 (goto-char start)
3732 (funcall region-insert-function output))
3733 (if (or replace
3734 (and output-buffer
3735 (not (or (bufferp output-buffer) (stringp output-buffer)))))
3736 ;; Replace specified region with output from command.
3737 (let ((swap (and replace (< start end))))
3738 ;; Don't muck with mark unless REPLACE says we should.
3739 (goto-char start)
3740 (and replace (push-mark (point) 'nomsg))
3741 (setq exit-status
3742 (call-shell-region start end command replace
3743 (if error-file
3744 (list t error-file)
3745 t)))
3746 ;; It is rude to delete a buffer which the command is not using.
3747 ;; (let ((shell-buffer (get-buffer "*Shell Command Output*")))
3748 ;; (and shell-buffer (not (eq shell-buffer (current-buffer)))
3749 ;; (kill-buffer shell-buffer)))
3750 ;; Don't muck with mark unless REPLACE says we should.
3751 (and replace swap (exchange-point-and-mark)))
3752 ;; No prefix argument: put the output in a temp buffer,
3753 ;; replacing its entire contents.
3754 (let ((buffer (get-buffer-create
3755 (or output-buffer "*Shell Command Output*"))))
3756 (unwind-protect
3757 (if (and (eq buffer (current-buffer))
3758 (or (not shell-command-dont-erase-buffer)
3759 (and (not (eq buffer (get-buffer "*Shell Command Output*")))
3760 (not (region-active-p)))))
3761 ;; If the input is the same buffer as the output,
3762 ;; delete everything but the specified region,
3763 ;; then replace that region with the output.
3764 (progn (setq buffer-read-only nil)
3765 (delete-region (max start end) (point-max))
3766 (delete-region (point-min) (min start end))
3767 (setq exit-status
3768 (call-process-region (point-min) (point-max)
3769 shell-file-name t
3770 (if error-file
3771 (list t error-file)
3773 nil shell-command-switch
3774 command)))
3775 ;; Clear the output buffer, then run the command with
3776 ;; output there.
3777 (let ((directory default-directory))
3778 (with-current-buffer buffer
3779 (if (not output-buffer)
3780 (setq default-directory directory))
3781 (shell-command--save-pos-or-erase)))
3782 (setq exit-status
3783 (call-shell-region start end command nil
3784 (if error-file
3785 (list buffer error-file)
3786 buffer))))
3787 ;; Report the output.
3788 (with-current-buffer buffer
3789 (setq mode-line-process
3790 (cond ((null exit-status)
3791 " - Error")
3792 ((stringp exit-status)
3793 (format " - Signal [%s]" exit-status))
3794 ((not (equal 0 exit-status))
3795 (format " - Exit [%d]" exit-status)))))
3796 (if (with-current-buffer buffer (> (point-max) (point-min)))
3797 ;; There's some output, display it
3798 (progn
3799 (display-message-or-buffer buffer)
3800 (shell-command--set-point-after-cmd buffer))
3801 ;; No output; error?
3802 (let ((output
3803 (if (and error-file
3804 (< 0 (nth 7 (file-attributes error-file))))
3805 (format "some error output%s"
3806 (if shell-command-default-error-buffer
3807 (format " to the \"%s\" buffer"
3808 shell-command-default-error-buffer)
3809 ""))
3810 "no output")))
3811 (cond ((null exit-status)
3812 (message "(Shell command failed with error)"))
3813 ((equal 0 exit-status)
3814 (message "(Shell command succeeded with %s)"
3815 output))
3816 ((stringp exit-status)
3817 (message "(Shell command killed by signal %s)"
3818 exit-status))
3820 (message "(Shell command failed with code %d and %s)"
3821 exit-status output))))
3822 ;; Don't kill: there might be useful info in the undo-log.
3823 ;; (kill-buffer buffer)
3824 )))))
3826 (when (and error-file (file-exists-p error-file))
3827 (if (< 0 (nth 7 (file-attributes error-file)))
3828 (with-current-buffer (get-buffer-create error-buffer)
3829 (let ((pos-from-end (- (point-max) (point))))
3830 (or (bobp)
3831 (insert "\f\n"))
3832 ;; Do no formatting while reading error file,
3833 ;; because that can run a shell command, and we
3834 ;; don't want that to cause an infinite recursion.
3835 (format-insert-file error-file nil)
3836 ;; Put point after the inserted errors.
3837 (goto-char (- (point-max) pos-from-end)))
3838 (and display-error-buffer
3839 (display-buffer (current-buffer)))))
3840 (delete-file error-file))
3841 exit-status))
3843 (defun shell-command-to-string (command)
3844 "Execute shell command COMMAND and return its output as a string."
3845 (with-output-to-string
3846 (with-current-buffer
3847 standard-output
3848 (process-file shell-file-name nil t nil shell-command-switch command))))
3850 (defun process-file (program &optional infile buffer display &rest args)
3851 "Process files synchronously in a separate process.
3852 Similar to `call-process', but may invoke a file handler based on
3853 `default-directory'. The current working directory of the
3854 subprocess is `default-directory'.
3856 File names in INFILE and BUFFER are handled normally, but file
3857 names in ARGS should be relative to `default-directory', as they
3858 are passed to the process verbatim. (This is a difference to
3859 `call-process' which does not support file handlers for INFILE
3860 and BUFFER.)
3862 Some file handlers might not support all variants, for example
3863 they might behave as if DISPLAY was nil, regardless of the actual
3864 value passed."
3865 (let ((fh (find-file-name-handler default-directory 'process-file))
3866 lc stderr-file)
3867 (unwind-protect
3868 (if fh (apply fh 'process-file program infile buffer display args)
3869 (when infile (setq lc (file-local-copy infile)))
3870 (setq stderr-file (when (and (consp buffer) (stringp (cadr buffer)))
3871 (make-temp-file "emacs")))
3872 (prog1
3873 (apply 'call-process program
3874 (or lc infile)
3875 (if stderr-file (list (car buffer) stderr-file) buffer)
3876 display args)
3877 (when stderr-file (copy-file stderr-file (cadr buffer) t))))
3878 (when stderr-file (delete-file stderr-file))
3879 (when lc (delete-file lc)))))
3881 (defvar process-file-side-effects t
3882 "Whether a call of `process-file' changes remote files.
3884 By default, this variable is always set to t, meaning that a
3885 call of `process-file' could potentially change any file on a
3886 remote host. When set to nil, a file handler could optimize
3887 its behavior with respect to remote file attribute caching.
3889 You should only ever change this variable with a let-binding;
3890 never with `setq'.")
3892 (defun start-file-process (name buffer program &rest program-args)
3893 "Start a program in a subprocess. Return the process object for it.
3895 Similar to `start-process', but may invoke a file handler based on
3896 `default-directory'. See Info node `(elisp)Magic File Names'.
3898 This handler ought to run PROGRAM, perhaps on the local host,
3899 perhaps on a remote host that corresponds to `default-directory'.
3900 In the latter case, the local part of `default-directory' becomes
3901 the working directory of the process.
3903 PROGRAM and PROGRAM-ARGS might be file names. They are not
3904 objects of file handler invocation. File handlers might not
3905 support pty association, if PROGRAM is nil."
3906 (let ((fh (find-file-name-handler default-directory 'start-file-process)))
3907 (if fh (apply fh 'start-file-process name buffer program program-args)
3908 (apply 'start-process name buffer program program-args))))
3910 ;;;; Process menu
3912 (defvar tabulated-list-format)
3913 (defvar tabulated-list-entries)
3914 (defvar tabulated-list-sort-key)
3915 (declare-function tabulated-list-init-header "tabulated-list" ())
3916 (declare-function tabulated-list-print "tabulated-list"
3917 (&optional remember-pos update))
3919 (defvar process-menu-query-only nil)
3921 (defvar process-menu-mode-map
3922 (let ((map (make-sparse-keymap)))
3923 (define-key map [?d] 'process-menu-delete-process)
3924 map))
3926 (define-derived-mode process-menu-mode tabulated-list-mode "Process Menu"
3927 "Major mode for listing the processes called by Emacs."
3928 (setq tabulated-list-format [("Process" 15 t)
3929 ("PID" 7 t)
3930 ("Status" 7 t)
3931 ("Buffer" 15 t)
3932 ("TTY" 12 t)
3933 ("Command" 0 t)])
3934 (make-local-variable 'process-menu-query-only)
3935 (setq tabulated-list-sort-key (cons "Process" nil))
3936 (add-hook 'tabulated-list-revert-hook 'list-processes--refresh nil t))
3938 (defun process-menu-delete-process ()
3939 "Kill process at point in a `list-processes' buffer."
3940 (interactive)
3941 (let ((pos (point)))
3942 (delete-process (tabulated-list-get-id))
3943 (revert-buffer)
3944 (goto-char (min pos (point-max)))
3945 (if (eobp)
3946 (forward-line -1)
3947 (beginning-of-line))))
3949 (defun list-processes--refresh ()
3950 "Recompute the list of processes for the Process List buffer.
3951 Also, delete any process that is exited or signaled."
3952 (setq tabulated-list-entries nil)
3953 (dolist (p (process-list))
3954 (cond ((memq (process-status p) '(exit signal closed))
3955 (delete-process p))
3956 ((or (not process-menu-query-only)
3957 (process-query-on-exit-flag p))
3958 (let* ((buf (process-buffer p))
3959 (type (process-type p))
3960 (pid (if (process-id p) (format "%d" (process-id p)) "--"))
3961 (name (process-name p))
3962 (status (symbol-name (process-status p)))
3963 (buf-label (if (buffer-live-p buf)
3964 `(,(buffer-name buf)
3965 face link
3966 help-echo ,(format-message
3967 "Visit buffer `%s'"
3968 (buffer-name buf))
3969 follow-link t
3970 process-buffer ,buf
3971 action process-menu-visit-buffer)
3972 "--"))
3973 (tty (or (process-tty-name p) "--"))
3974 (cmd
3975 (if (memq type '(network serial))
3976 (let ((contact (process-contact p t)))
3977 (if (eq type 'network)
3978 (format "(%s %s)"
3979 (if (plist-get contact :type)
3980 "datagram"
3981 "network")
3982 (if (plist-get contact :server)
3983 (format "server on %s"
3985 (plist-get contact :host)
3986 (plist-get contact :local)))
3987 (format "connection to %s"
3988 (plist-get contact :host))))
3989 (format "(serial port %s%s)"
3990 (or (plist-get contact :port) "?")
3991 (let ((speed (plist-get contact :speed)))
3992 (if speed
3993 (format " at %s b/s" speed)
3994 "")))))
3995 (mapconcat 'identity (process-command p) " "))))
3996 (push (list p (vector name pid status buf-label tty cmd))
3997 tabulated-list-entries)))))
3998 (tabulated-list-init-header))
4000 (defun process-menu-visit-buffer (button)
4001 (display-buffer (button-get button 'process-buffer)))
4003 (defun list-processes (&optional query-only buffer)
4004 "Display a list of all processes that are Emacs sub-processes.
4005 If optional argument QUERY-ONLY is non-nil, only processes with
4006 the query-on-exit flag set are listed.
4007 Any process listed as exited or signaled is actually eliminated
4008 after the listing is made.
4009 Optional argument BUFFER specifies a buffer to use, instead of
4010 \"*Process List*\".
4011 The return value is always nil.
4013 This function lists only processes that were launched by Emacs. To
4014 see other processes running on the system, use `list-system-processes'."
4015 (interactive)
4016 (or (fboundp 'process-list)
4017 (error "Asynchronous subprocesses are not supported on this system"))
4018 (unless (bufferp buffer)
4019 (setq buffer (get-buffer-create "*Process List*")))
4020 (with-current-buffer buffer
4021 (process-menu-mode)
4022 (setq process-menu-query-only query-only)
4023 (list-processes--refresh)
4024 (tabulated-list-print))
4025 (display-buffer buffer)
4026 nil)
4028 ;;;; Prefix commands
4030 (setq prefix-command--needs-update nil)
4031 (setq prefix-command--last-echo nil)
4033 (defun internal-echo-keystrokes-prefix ()
4034 ;; BEWARE: Called directly from C code.
4035 ;; If the return value is non-nil, it means we are in the middle of
4036 ;; a command with prefix, such as a command invoked with prefix-arg.
4037 (if (not prefix-command--needs-update)
4038 prefix-command--last-echo
4039 (setq prefix-command--last-echo
4040 (let ((strs nil))
4041 (run-hook-wrapped 'prefix-command-echo-keystrokes-functions
4042 (lambda (fun) (push (funcall fun) strs)))
4043 (setq strs (delq nil strs))
4044 (when strs (mapconcat #'identity strs " "))))))
4046 (defvar prefix-command-echo-keystrokes-functions nil
4047 "Abnormal hook which constructs the description of the current prefix state.
4048 Each function is called with no argument, should return a string or nil.")
4050 (defun prefix-command-update ()
4051 "Update state of prefix commands.
4052 Call it whenever you change the \"prefix command state\"."
4053 (setq prefix-command--needs-update t))
4055 (defvar prefix-command-preserve-state-hook nil
4056 "Normal hook run when a command needs to preserve the prefix.")
4058 (defun prefix-command-preserve-state ()
4059 "Pass the current prefix command state to the next command.
4060 Should be called by all prefix commands.
4061 Runs `prefix-command-preserve-state-hook'."
4062 (run-hooks 'prefix-command-preserve-state-hook)
4063 ;; If the current command is a prefix command, we don't want the next (real)
4064 ;; command to have `last-command' set to, say, `universal-argument'.
4065 (setq this-command last-command)
4066 (setq real-this-command real-last-command)
4067 (prefix-command-update))
4069 (defun reset-this-command-lengths ()
4070 (declare (obsolete prefix-command-preserve-state "25.1"))
4071 nil)
4073 ;;;;; The main prefix command.
4075 ;; FIXME: Declaration of `prefix-arg' should be moved here!?
4077 (add-hook 'prefix-command-echo-keystrokes-functions
4078 #'universal-argument--description)
4079 (defun universal-argument--description ()
4080 (when prefix-arg
4081 (concat "C-u"
4082 (pcase prefix-arg
4083 (`(-) " -")
4084 (`(,(and (pred integerp) n))
4085 (let ((str ""))
4086 (while (and (> n 4) (= (mod n 4) 0))
4087 (setq str (concat str " C-u"))
4088 (setq n (/ n 4)))
4089 (if (= n 4) str (format " %s" prefix-arg))))
4090 (_ (format " %s" prefix-arg))))))
4092 (add-hook 'prefix-command-preserve-state-hook
4093 #'universal-argument--preserve)
4094 (defun universal-argument--preserve ()
4095 (setq prefix-arg current-prefix-arg))
4097 (defvar universal-argument-map
4098 (let ((map (make-sparse-keymap))
4099 (universal-argument-minus
4100 ;; For backward compatibility, minus with no modifiers is an ordinary
4101 ;; command if digits have already been entered.
4102 `(menu-item "" negative-argument
4103 :filter ,(lambda (cmd)
4104 (if (integerp prefix-arg) nil cmd)))))
4105 (define-key map [switch-frame]
4106 (lambda (e) (interactive "e")
4107 (handle-switch-frame e) (universal-argument--mode)))
4108 (define-key map [?\C-u] 'universal-argument-more)
4109 (define-key map [?-] universal-argument-minus)
4110 (define-key map [?0] 'digit-argument)
4111 (define-key map [?1] 'digit-argument)
4112 (define-key map [?2] 'digit-argument)
4113 (define-key map [?3] 'digit-argument)
4114 (define-key map [?4] 'digit-argument)
4115 (define-key map [?5] 'digit-argument)
4116 (define-key map [?6] 'digit-argument)
4117 (define-key map [?7] 'digit-argument)
4118 (define-key map [?8] 'digit-argument)
4119 (define-key map [?9] 'digit-argument)
4120 (define-key map [kp-0] 'digit-argument)
4121 (define-key map [kp-1] 'digit-argument)
4122 (define-key map [kp-2] 'digit-argument)
4123 (define-key map [kp-3] 'digit-argument)
4124 (define-key map [kp-4] 'digit-argument)
4125 (define-key map [kp-5] 'digit-argument)
4126 (define-key map [kp-6] 'digit-argument)
4127 (define-key map [kp-7] 'digit-argument)
4128 (define-key map [kp-8] 'digit-argument)
4129 (define-key map [kp-9] 'digit-argument)
4130 (define-key map [kp-subtract] universal-argument-minus)
4131 map)
4132 "Keymap used while processing \\[universal-argument].")
4134 (defun universal-argument--mode ()
4135 (prefix-command-update)
4136 (set-transient-map universal-argument-map nil))
4138 (defun universal-argument ()
4139 "Begin a numeric argument for the following command.
4140 Digits or minus sign following \\[universal-argument] make up the numeric argument.
4141 \\[universal-argument] following the digits or minus sign ends the argument.
4142 \\[universal-argument] without digits or minus sign provides 4 as argument.
4143 Repeating \\[universal-argument] without digits or minus sign
4144 multiplies the argument by 4 each time.
4145 For some commands, just \\[universal-argument] by itself serves as a flag
4146 which is different in effect from any particular numeric argument.
4147 These commands include \\[set-mark-command] and \\[start-kbd-macro]."
4148 (interactive)
4149 (prefix-command-preserve-state)
4150 (setq prefix-arg (list 4))
4151 (universal-argument--mode))
4153 (defun universal-argument-more (arg)
4154 ;; A subsequent C-u means to multiply the factor by 4 if we've typed
4155 ;; nothing but C-u's; otherwise it means to terminate the prefix arg.
4156 (interactive "P")
4157 (prefix-command-preserve-state)
4158 (setq prefix-arg (if (consp arg)
4159 (list (* 4 (car arg)))
4160 (if (eq arg '-)
4161 (list -4)
4162 arg)))
4163 (when (consp prefix-arg) (universal-argument--mode)))
4165 (defun negative-argument (arg)
4166 "Begin a negative numeric argument for the next command.
4167 \\[universal-argument] following digits or minus sign ends the argument."
4168 (interactive "P")
4169 (prefix-command-preserve-state)
4170 (setq prefix-arg (cond ((integerp arg) (- arg))
4171 ((eq arg '-) nil)
4172 (t '-)))
4173 (universal-argument--mode))
4175 (defun digit-argument (arg)
4176 "Part of the numeric argument for the next command.
4177 \\[universal-argument] following digits or minus sign ends the argument."
4178 (interactive "P")
4179 (prefix-command-preserve-state)
4180 (let* ((char (if (integerp last-command-event)
4181 last-command-event
4182 (get last-command-event 'ascii-character)))
4183 (digit (- (logand char ?\177) ?0)))
4184 (setq prefix-arg (cond ((integerp arg)
4185 (+ (* arg 10)
4186 (if (< arg 0) (- digit) digit)))
4187 ((eq arg '-)
4188 ;; Treat -0 as just -, so that -01 will work.
4189 (if (zerop digit) '- (- digit)))
4191 digit))))
4192 (universal-argument--mode))
4195 (defvar filter-buffer-substring-functions nil
4196 "This variable is a wrapper hook around `buffer-substring--filter'.
4197 \(See `with-wrapper-hook' for details about wrapper hooks.)")
4198 (make-obsolete-variable 'filter-buffer-substring-functions
4199 'filter-buffer-substring-function "24.4")
4201 (defvar filter-buffer-substring-function #'buffer-substring--filter
4202 "Function to perform the filtering in `filter-buffer-substring'.
4203 The function is called with the same 3 arguments (BEG END DELETE)
4204 that `filter-buffer-substring' received. It should return the
4205 buffer substring between BEG and END, after filtering. If DELETE is
4206 non-nil, it should delete the text between BEG and END from the buffer.")
4208 (defvar buffer-substring-filters nil
4209 "List of filter functions for `buffer-substring--filter'.
4210 Each function must accept a single argument, a string, and return a string.
4211 The buffer substring is passed to the first function in the list,
4212 and the return value of each function is passed to the next.
4213 As a special convention, point is set to the start of the buffer text
4214 being operated on (i.e., the first argument of `buffer-substring--filter')
4215 before these functions are called.")
4216 (make-obsolete-variable 'buffer-substring-filters
4217 'filter-buffer-substring-function "24.1")
4219 (defun filter-buffer-substring (beg end &optional delete)
4220 "Return the buffer substring between BEG and END, after filtering.
4221 If DELETE is non-nil, delete the text between BEG and END from the buffer.
4223 This calls the function that `filter-buffer-substring-function' specifies
4224 \(passing the same three arguments that it received) to do the work,
4225 and returns whatever it does. The default function does no filtering,
4226 unless a hook has been set.
4228 Use `filter-buffer-substring' instead of `buffer-substring',
4229 `buffer-substring-no-properties', or `delete-and-extract-region' when
4230 you want to allow filtering to take place. For example, major or minor
4231 modes can use `filter-buffer-substring-function' to extract characters
4232 that are special to a buffer, and should not be copied into other buffers."
4233 (funcall filter-buffer-substring-function beg end delete))
4235 (defun buffer-substring--filter (beg end &optional delete)
4236 "Default function to use for `filter-buffer-substring-function'.
4237 Its arguments and return value are as specified for `filter-buffer-substring'.
4238 Also respects the obsolete wrapper hook `filter-buffer-substring-functions'
4239 \(see `with-wrapper-hook' for details about wrapper hooks),
4240 and the abnormal hook `buffer-substring-filters'.
4241 No filtering is done unless a hook says to."
4242 (subr--with-wrapper-hook-no-warnings
4243 filter-buffer-substring-functions (beg end delete)
4244 (cond
4245 ((or delete buffer-substring-filters)
4246 (save-excursion
4247 (goto-char beg)
4248 (let ((string (if delete (delete-and-extract-region beg end)
4249 (buffer-substring beg end))))
4250 (dolist (filter buffer-substring-filters)
4251 (setq string (funcall filter string)))
4252 string)))
4254 (buffer-substring beg end)))))
4257 ;;;; Window system cut and paste hooks.
4259 (defvar interprogram-cut-function #'gui-select-text
4260 "Function to call to make a killed region available to other programs.
4261 Most window systems provide a facility for cutting and pasting
4262 text between different programs, such as the clipboard on X and
4263 MS-Windows, or the pasteboard on Nextstep/Mac OS.
4265 This variable holds a function that Emacs calls whenever text is
4266 put in the kill ring, to make the new kill available to other
4267 programs. The function takes one argument, TEXT, which is a
4268 string containing the text which should be made available.")
4270 (defvar interprogram-paste-function #'gui-selection-value
4271 "Function to call to get text cut from other programs.
4272 Most window systems provide a facility for cutting and pasting
4273 text between different programs, such as the clipboard on X and
4274 MS-Windows, or the pasteboard on Nextstep/Mac OS.
4276 This variable holds a function that Emacs calls to obtain text
4277 that other programs have provided for pasting. The function is
4278 called with no arguments. If no other program has provided text
4279 to paste, the function should return nil (in which case the
4280 caller, usually `current-kill', should use the top of the Emacs
4281 kill ring). If another program has provided text to paste, the
4282 function should return that text as a string (in which case the
4283 caller should put this string in the kill ring as the latest
4284 kill).
4286 The function may also return a list of strings if the window
4287 system supports multiple selections. The first string will be
4288 used as the pasted text, but the other will be placed in the kill
4289 ring for easy access via `yank-pop'.
4291 Note that the function should return a string only if a program
4292 other than Emacs has provided a string for pasting; if Emacs
4293 provided the most recent string, the function should return nil.
4294 If it is difficult to tell whether Emacs or some other program
4295 provided the current string, it is probably good enough to return
4296 nil if the string is equal (according to `string=') to the last
4297 text Emacs provided.")
4301 ;;;; The kill ring data structure.
4303 (defvar kill-ring nil
4304 "List of killed text sequences.
4305 Since the kill ring is supposed to interact nicely with cut-and-paste
4306 facilities offered by window systems, use of this variable should
4307 interact nicely with `interprogram-cut-function' and
4308 `interprogram-paste-function'. The functions `kill-new',
4309 `kill-append', and `current-kill' are supposed to implement this
4310 interaction; you may want to use them instead of manipulating the kill
4311 ring directly.")
4313 (defcustom kill-ring-max 60
4314 "Maximum length of kill ring before oldest elements are thrown away."
4315 :type 'integer
4316 :group 'killing)
4318 (defvar kill-ring-yank-pointer nil
4319 "The tail of the kill ring whose car is the last thing yanked.")
4321 (defcustom save-interprogram-paste-before-kill nil
4322 "Save existing clipboard text into kill ring before replacing it.
4323 A non-nil value ensures that Emacs kill operations do not
4324 irrevocably overwrite existing clipboard text by saving it to the
4325 `kill-ring' prior to the kill. Such text can subsequently be
4326 retrieved via \\[yank] \\[yank-pop]]."
4327 :type 'boolean
4328 :group 'killing
4329 :version "23.2")
4331 (defcustom kill-do-not-save-duplicates nil
4332 "Do not add a new string to `kill-ring' if it duplicates the last one.
4333 The comparison is done using `equal-including-properties'."
4334 :type 'boolean
4335 :group 'killing
4336 :version "23.2")
4338 (defun kill-new (string &optional replace)
4339 "Make STRING the latest kill in the kill ring.
4340 Set `kill-ring-yank-pointer' to point to it.
4341 If `interprogram-cut-function' is non-nil, apply it to STRING.
4342 Optional second argument REPLACE non-nil means that STRING will replace
4343 the front of the kill ring, rather than being added to the list.
4345 When `save-interprogram-paste-before-kill' and `interprogram-paste-function'
4346 are non-nil, save the interprogram paste string(s) into `kill-ring' before
4347 STRING.
4349 When the yank handler has a non-nil PARAM element, the original STRING
4350 argument is not used by `insert-for-yank'. However, since Lisp code
4351 may access and use elements from the kill ring directly, the STRING
4352 argument should still be a \"useful\" string for such uses."
4353 (unless (and kill-do-not-save-duplicates
4354 ;; Due to text properties such as 'yank-handler that
4355 ;; can alter the contents to yank, comparison using
4356 ;; `equal' is unsafe.
4357 (equal-including-properties string (car kill-ring)))
4358 (if (fboundp 'menu-bar-update-yank-menu)
4359 (menu-bar-update-yank-menu string (and replace (car kill-ring)))))
4360 (when save-interprogram-paste-before-kill
4361 (let ((interprogram-paste (and interprogram-paste-function
4362 (funcall interprogram-paste-function))))
4363 (when interprogram-paste
4364 (dolist (s (if (listp interprogram-paste)
4365 (nreverse interprogram-paste)
4366 (list interprogram-paste)))
4367 (unless (and kill-do-not-save-duplicates
4368 (equal-including-properties s (car kill-ring)))
4369 (push s kill-ring))))))
4370 (unless (and kill-do-not-save-duplicates
4371 (equal-including-properties string (car kill-ring)))
4372 (if (and replace kill-ring)
4373 (setcar kill-ring string)
4374 (push string kill-ring)
4375 (if (> (length kill-ring) kill-ring-max)
4376 (setcdr (nthcdr (1- kill-ring-max) kill-ring) nil))))
4377 (setq kill-ring-yank-pointer kill-ring)
4378 (if interprogram-cut-function
4379 (funcall interprogram-cut-function string)))
4381 ;; It has been argued that this should work like `self-insert-command'
4382 ;; which merges insertions in `buffer-undo-list' in groups of 20
4383 ;; (hard-coded in `undo-auto-amalgamate').
4384 (defcustom kill-append-merge-undo nil
4385 "Amalgamate appending kills with the last kill for undo.
4386 When non-nil, appending or prepending text to the last kill makes
4387 \\[undo] restore both pieces of text simultaneously."
4388 :type 'boolean
4389 :group 'killing
4390 :version "25.1")
4392 (defun kill-append (string before-p)
4393 "Append STRING to the end of the latest kill in the kill ring.
4394 If BEFORE-P is non-nil, prepend STRING to the kill instead.
4395 If `interprogram-cut-function' is non-nil, call it with the
4396 resulting kill.
4397 If `kill-append-merge-undo' is non-nil, remove the last undo
4398 boundary in the current buffer."
4399 (let* ((cur (car kill-ring)))
4400 (kill-new (if before-p (concat string cur) (concat cur string))
4401 (or (= (length cur) 0)
4402 (equal nil (get-text-property 0 'yank-handler cur))))
4403 (when (and kill-append-merge-undo (not buffer-read-only))
4404 (let ((prev buffer-undo-list)
4405 (next (cdr buffer-undo-list)))
4406 ;; find the next undo boundary
4407 (while (car next)
4408 (pop next)
4409 (pop prev))
4410 ;; remove this undo boundary
4411 (when prev
4412 (setcdr prev (cdr next)))))))
4414 (defcustom yank-pop-change-selection nil
4415 "Whether rotating the kill ring changes the window system selection.
4416 If non-nil, whenever the kill ring is rotated (usually via the
4417 `yank-pop' command), Emacs also calls `interprogram-cut-function'
4418 to copy the new kill to the window system selection."
4419 :type 'boolean
4420 :group 'killing
4421 :version "23.1")
4423 (defun current-kill (n &optional do-not-move)
4424 "Rotate the yanking point by N places, and then return that kill.
4425 If N is zero and `interprogram-paste-function' is set to a
4426 function that returns a string or a list of strings, and if that
4427 function doesn't return nil, then that string (or list) is added
4428 to the front of the kill ring and the string (or first string in
4429 the list) is returned as the latest kill.
4431 If N is not zero, and if `yank-pop-change-selection' is
4432 non-nil, use `interprogram-cut-function' to transfer the
4433 kill at the new yank point into the window system selection.
4435 If optional arg DO-NOT-MOVE is non-nil, then don't actually
4436 move the yanking point; just return the Nth kill forward."
4438 (let ((interprogram-paste (and (= n 0)
4439 interprogram-paste-function
4440 (funcall interprogram-paste-function))))
4441 (if interprogram-paste
4442 (progn
4443 ;; Disable the interprogram cut function when we add the new
4444 ;; text to the kill ring, so Emacs doesn't try to own the
4445 ;; selection, with identical text.
4446 (let ((interprogram-cut-function nil))
4447 (if (listp interprogram-paste)
4448 (mapc 'kill-new (nreverse interprogram-paste))
4449 (kill-new interprogram-paste)))
4450 (car kill-ring))
4451 (or kill-ring (error "Kill ring is empty"))
4452 (let ((ARGth-kill-element
4453 (nthcdr (mod (- n (length kill-ring-yank-pointer))
4454 (length kill-ring))
4455 kill-ring)))
4456 (unless do-not-move
4457 (setq kill-ring-yank-pointer ARGth-kill-element)
4458 (when (and yank-pop-change-selection
4459 (> n 0)
4460 interprogram-cut-function)
4461 (funcall interprogram-cut-function (car ARGth-kill-element))))
4462 (car ARGth-kill-element)))))
4466 ;;;; Commands for manipulating the kill ring.
4468 (defcustom kill-read-only-ok nil
4469 "Non-nil means don't signal an error for killing read-only text."
4470 :type 'boolean
4471 :group 'killing)
4473 (defun kill-region (beg end &optional region)
4474 "Kill (\"cut\") text between point and mark.
4475 This deletes the text from the buffer and saves it in the kill ring.
4476 The command \\[yank] can retrieve it from there.
4477 \(If you want to save the region without killing it, use \\[kill-ring-save].)
4479 If you want to append the killed region to the last killed text,
4480 use \\[append-next-kill] before \\[kill-region].
4482 Any command that calls this function is a \"kill command\".
4483 If the previous command was also a kill command,
4484 the text killed this time appends to the text killed last time
4485 to make one entry in the kill ring.
4487 The killed text is filtered by `filter-buffer-substring' before it is
4488 saved in the kill ring, so the actual saved text might be different
4489 from what was killed.
4491 If the buffer is read-only, Emacs will beep and refrain from deleting
4492 the text, but put the text in the kill ring anyway. This means that
4493 you can use the killing commands to copy text from a read-only buffer.
4495 Lisp programs should use this function for killing text.
4496 (To delete text, use `delete-region'.)
4497 Supply two arguments, character positions BEG and END indicating the
4498 stretch of text to be killed. If the optional argument REGION is
4499 non-nil, the function ignores BEG and END, and kills the current
4500 region instead."
4501 ;; Pass mark first, then point, because the order matters when
4502 ;; calling `kill-append'.
4503 (interactive (list (mark) (point) 'region))
4504 (unless (and beg end)
4505 (user-error "The mark is not set now, so there is no region"))
4506 (condition-case nil
4507 (let ((string (if region
4508 (funcall region-extract-function 'delete)
4509 (filter-buffer-substring beg end 'delete))))
4510 (when string ;STRING is nil if BEG = END
4511 ;; Add that string to the kill ring, one way or another.
4512 (if (eq last-command 'kill-region)
4513 (kill-append string (< end beg))
4514 (kill-new string)))
4515 (when (or string (eq last-command 'kill-region))
4516 (setq this-command 'kill-region))
4517 (setq deactivate-mark t)
4518 nil)
4519 ((buffer-read-only text-read-only)
4520 ;; The code above failed because the buffer, or some of the characters
4521 ;; in the region, are read-only.
4522 ;; We should beep, in case the user just isn't aware of this.
4523 ;; However, there's no harm in putting
4524 ;; the region's text in the kill ring, anyway.
4525 (copy-region-as-kill beg end region)
4526 ;; Set this-command now, so it will be set even if we get an error.
4527 (setq this-command 'kill-region)
4528 ;; This should barf, if appropriate, and give us the correct error.
4529 (if kill-read-only-ok
4530 (progn (message "Read only text copied to kill ring") nil)
4531 ;; Signal an error if the buffer is read-only.
4532 (barf-if-buffer-read-only)
4533 ;; If the buffer isn't read-only, the text is.
4534 (signal 'text-read-only (list (current-buffer)))))))
4536 ;; copy-region-as-kill no longer sets this-command, because it's confusing
4537 ;; to get two copies of the text when the user accidentally types M-w and
4538 ;; then corrects it with the intended C-w.
4539 (defun copy-region-as-kill (beg end &optional region)
4540 "Save the region as if killed, but don't kill it.
4541 In Transient Mark mode, deactivate the mark.
4542 If `interprogram-cut-function' is non-nil, also save the text for a window
4543 system cut and paste.
4545 The copied text is filtered by `filter-buffer-substring' before it is
4546 saved in the kill ring, so the actual saved text might be different
4547 from what was in the buffer.
4549 When called from Lisp, save in the kill ring the stretch of text
4550 between BEG and END, unless the optional argument REGION is
4551 non-nil, in which case ignore BEG and END, and save the current
4552 region instead.
4554 This command's old key binding has been given to `kill-ring-save'."
4555 ;; Pass mark first, then point, because the order matters when
4556 ;; calling `kill-append'.
4557 (interactive (list (mark) (point)
4558 (prefix-numeric-value current-prefix-arg)))
4559 (let ((str (if region
4560 (funcall region-extract-function nil)
4561 (filter-buffer-substring beg end))))
4562 (if (eq last-command 'kill-region)
4563 (kill-append str (< end beg))
4564 (kill-new str)))
4565 (setq deactivate-mark t)
4566 nil)
4568 (defun kill-ring-save (beg end &optional region)
4569 "Save the region as if killed, but don't kill it.
4570 In Transient Mark mode, deactivate the mark.
4571 If `interprogram-cut-function' is non-nil, also save the text for a window
4572 system cut and paste.
4574 If you want to append the killed line to the last killed text,
4575 use \\[append-next-kill] before \\[kill-ring-save].
4577 The copied text is filtered by `filter-buffer-substring' before it is
4578 saved in the kill ring, so the actual saved text might be different
4579 from what was in the buffer.
4581 When called from Lisp, save in the kill ring the stretch of text
4582 between BEG and END, unless the optional argument REGION is
4583 non-nil, in which case ignore BEG and END, and save the current
4584 region instead.
4586 This command is similar to `copy-region-as-kill', except that it gives
4587 visual feedback indicating the extent of the region being copied."
4588 ;; Pass mark first, then point, because the order matters when
4589 ;; calling `kill-append'.
4590 (interactive (list (mark) (point)
4591 (prefix-numeric-value current-prefix-arg)))
4592 (copy-region-as-kill beg end region)
4593 ;; This use of called-interactively-p is correct because the code it
4594 ;; controls just gives the user visual feedback.
4595 (if (called-interactively-p 'interactive)
4596 (indicate-copied-region)))
4598 (defun indicate-copied-region (&optional message-len)
4599 "Indicate that the region text has been copied interactively.
4600 If the mark is visible in the selected window, blink the cursor
4601 between point and mark if there is currently no active region
4602 highlighting.
4604 If the mark lies outside the selected window, display an
4605 informative message containing a sample of the copied text. The
4606 optional argument MESSAGE-LEN, if non-nil, specifies the length
4607 of this sample text; it defaults to 40."
4608 (let ((mark (mark t))
4609 (point (point))
4610 ;; Inhibit quitting so we can make a quit here
4611 ;; look like a C-g typed as a command.
4612 (inhibit-quit t))
4613 (if (pos-visible-in-window-p mark (selected-window))
4614 ;; Swap point-and-mark quickly so as to show the region that
4615 ;; was selected. Don't do it if the region is highlighted.
4616 (unless (and (region-active-p)
4617 (face-background 'region))
4618 ;; Swap point and mark.
4619 (set-marker (mark-marker) (point) (current-buffer))
4620 (goto-char mark)
4621 (sit-for blink-matching-delay)
4622 ;; Swap back.
4623 (set-marker (mark-marker) mark (current-buffer))
4624 (goto-char point)
4625 ;; If user quit, deactivate the mark
4626 ;; as C-g would as a command.
4627 (and quit-flag (region-active-p)
4628 (deactivate-mark)))
4629 (let ((len (min (abs (- mark point))
4630 (or message-len 40))))
4631 (if (< point mark)
4632 ;; Don't say "killed"; that is misleading.
4633 (message "Saved text until \"%s\""
4634 (buffer-substring-no-properties (- mark len) mark))
4635 (message "Saved text from \"%s\""
4636 (buffer-substring-no-properties mark (+ mark len))))))))
4638 (defun append-next-kill (&optional interactive)
4639 "Cause following command, if it kills, to add to previous kill.
4640 If the next command kills forward from point, the kill is
4641 appended to the previous killed text. If the command kills
4642 backward, the kill is prepended. Kill commands that act on the
4643 region, such as `kill-region', are regarded as killing forward if
4644 point is after mark, and killing backward if point is before
4645 mark.
4647 If the next command is not a kill command, `append-next-kill' has
4648 no effect.
4650 The argument is used for internal purposes; do not supply one."
4651 (interactive "p")
4652 ;; We don't use (interactive-p), since that breaks kbd macros.
4653 (if interactive
4654 (progn
4655 (setq this-command 'kill-region)
4656 (message "If the next command is a kill, it will append"))
4657 (setq last-command 'kill-region)))
4659 (defvar bidi-directional-controls-chars "\x202a-\x202e\x2066-\x2069"
4660 "Character set that matches bidirectional formatting control characters.")
4662 (defvar bidi-directional-non-controls-chars "^\x202a-\x202e\x2066-\x2069"
4663 "Character set that matches any character except bidirectional controls.")
4665 (defun squeeze-bidi-context-1 (from to category replacement)
4666 "A subroutine of `squeeze-bidi-context'.
4667 FROM and TO should be markers, CATEGORY and REPLACEMENT should be strings."
4668 (let ((pt (copy-marker from))
4669 (limit (copy-marker to))
4670 (old-pt 0)
4671 lim1)
4672 (setq lim1 limit)
4673 (goto-char pt)
4674 (while (< pt limit)
4675 (if (> pt old-pt)
4676 (move-marker lim1
4677 (save-excursion
4678 ;; L and R categories include embedding and
4679 ;; override controls, but we don't want to
4680 ;; replace them, because that might change
4681 ;; the visual order. Likewise with PDF and
4682 ;; isolate controls.
4683 (+ pt (skip-chars-forward
4684 bidi-directional-non-controls-chars
4685 limit)))))
4686 ;; Replace any run of non-RTL characters by a single LRM.
4687 (if (null (re-search-forward category lim1 t))
4688 ;; No more characters of CATEGORY, we are done.
4689 (setq pt limit)
4690 (replace-match replacement nil t)
4691 (move-marker pt (point)))
4692 (setq old-pt pt)
4693 ;; Skip directional controls, if any.
4694 (move-marker
4695 pt (+ pt (skip-chars-forward bidi-directional-controls-chars limit))))))
4697 (defun squeeze-bidi-context (from to)
4698 "Replace characters between FROM and TO while keeping bidi context.
4700 This function replaces the region of text with as few characters
4701 as possible, while preserving the effect that region will have on
4702 bidirectional display before and after the region."
4703 (let ((start (set-marker (make-marker)
4704 (if (> from 0) from (+ (point-max) from))))
4705 (end (set-marker (make-marker) to))
4706 ;; This is for when they copy text with read-only text
4707 ;; properties.
4708 (inhibit-read-only t))
4709 (if (null (marker-position end))
4710 (setq end (point-max-marker)))
4711 ;; Replace each run of non-RTL characters with a single LRM.
4712 (squeeze-bidi-context-1 start end "\\CR+" "\x200e")
4713 ;; Replace each run of non-LTR characters with a single RLM. Note
4714 ;; that the \cR category includes both the Arabic Letter (AL) and
4715 ;; R characters; here we ignore the distinction between them,
4716 ;; because that distinction only affects Arabic Number (AN)
4717 ;; characters, which are weak and don't affect the reordering.
4718 (squeeze-bidi-context-1 start end "\\CL+" "\x200f")))
4720 (defun line-substring-with-bidi-context (start end &optional no-properties)
4721 "Return buffer text between START and END with its bidi context.
4723 START and END are assumed to belong to the same physical line
4724 of buffer text. This function prepends and appends to the text
4725 between START and END bidi control characters that preserve the
4726 visual order of that text when it is inserted at some other place."
4727 (if (or (< start (point-min))
4728 (> end (point-max)))
4729 (signal 'args-out-of-range (list (current-buffer) start end)))
4730 (let ((buf (current-buffer))
4731 substr para-dir from to)
4732 (save-excursion
4733 (goto-char start)
4734 (setq para-dir (current-bidi-paragraph-direction))
4735 (setq from (line-beginning-position)
4736 to (line-end-position))
4737 (goto-char from)
4738 ;; If we don't have any mixed directional characters in the
4739 ;; entire line, we can just copy the substring without adding
4740 ;; any context.
4741 (if (or (looking-at-p "\\CR*$")
4742 (looking-at-p "\\CL*$"))
4743 (setq substr (if no-properties
4744 (buffer-substring-no-properties start end)
4745 (buffer-substring start end)))
4746 (setq substr
4747 (with-temp-buffer
4748 (if no-properties
4749 (insert-buffer-substring-no-properties buf from to)
4750 (insert-buffer-substring buf from to))
4751 (squeeze-bidi-context 1 (1+ (- start from)))
4752 (squeeze-bidi-context (- end to) nil)
4753 (buffer-substring 1 (point-max)))))
4755 ;; Wrap the string in LRI/RLI..PDI pair to achieve 2 effects:
4756 ;; (1) force the string to have the same base embedding
4757 ;; direction as the paragraph direction at the source, no matter
4758 ;; what is the paragraph direction at destination; and (2) avoid
4759 ;; affecting the visual order of the surrounding text at
4760 ;; destination if there are characters of different
4761 ;; directionality there.
4762 (concat (if (eq para-dir 'left-to-right) "\x2066" "\x2067")
4763 substr "\x2069"))))
4765 (defun buffer-substring-with-bidi-context (start end &optional no-properties)
4766 "Return portion of current buffer between START and END with bidi context.
4768 This function works similar to `buffer-substring', but it prepends and
4769 appends to the text bidi directional control characters necessary to
4770 preserve the visual appearance of the text if it is inserted at another
4771 place. This is useful when the buffer substring includes bidirectional
4772 text and control characters that cause non-trivial reordering on display.
4773 If copied verbatim, such text can have a very different visual appearance,
4774 and can also change the visual appearance of the surrounding text at the
4775 destination of the copy.
4777 Optional argument NO-PROPERTIES, if non-nil, means copy the text without
4778 the text properties."
4779 (let (line-end substr)
4780 (if (or (< start (point-min))
4781 (> end (point-max)))
4782 (signal 'args-out-of-range (list (current-buffer) start end)))
4783 (save-excursion
4784 (goto-char start)
4785 (setq line-end (min end (line-end-position)))
4786 (while (< start end)
4787 (setq substr
4788 (concat substr
4789 (if substr "\n" "")
4790 (line-substring-with-bidi-context start line-end
4791 no-properties)))
4792 (forward-line 1)
4793 (setq start (point))
4794 (setq line-end (min end (line-end-position))))
4795 substr)))
4797 ;; Yanking.
4799 (defcustom yank-handled-properties
4800 '((font-lock-face . yank-handle-font-lock-face-property)
4801 (category . yank-handle-category-property))
4802 "List of special text property handling conditions for yanking.
4803 Each element should have the form (PROP . FUN), where PROP is a
4804 property symbol and FUN is a function. When the `yank' command
4805 inserts text into the buffer, it scans the inserted text for
4806 stretches of text that have `eq' values of the text property
4807 PROP; for each such stretch of text, FUN is called with three
4808 arguments: the property's value in that text, and the start and
4809 end positions of the text.
4811 This is done prior to removing the properties specified by
4812 `yank-excluded-properties'."
4813 :group 'killing
4814 :type '(repeat (cons (symbol :tag "property symbol")
4815 function))
4816 :version "24.3")
4818 ;; This is actually used in subr.el but defcustom does not work there.
4819 (defcustom yank-excluded-properties
4820 '(category field follow-link fontified font-lock-face help-echo
4821 intangible invisible keymap local-map mouse-face read-only
4822 yank-handler)
4823 "Text properties to discard when yanking.
4824 The value should be a list of text properties to discard or t,
4825 which means to discard all text properties.
4827 See also `yank-handled-properties'."
4828 :type '(choice (const :tag "All" t) (repeat symbol))
4829 :group 'killing
4830 :version "24.3")
4832 (defvar yank-window-start nil)
4833 (defvar yank-undo-function nil
4834 "If non-nil, function used by `yank-pop' to delete last stretch of yanked text.
4835 Function is called with two parameters, START and END corresponding to
4836 the value of the mark and point; it is guaranteed that START <= END.
4837 Normally set from the UNDO element of a yank-handler; see `insert-for-yank'.")
4839 (defun yank-pop (&optional arg)
4840 "Replace just-yanked stretch of killed text with a different stretch.
4841 This command is allowed only immediately after a `yank' or a `yank-pop'.
4842 At such a time, the region contains a stretch of reinserted
4843 previously-killed text. `yank-pop' deletes that text and inserts in its
4844 place a different stretch of killed text.
4846 With no argument, the previous kill is inserted.
4847 With argument N, insert the Nth previous kill.
4848 If N is negative, this is a more recent kill.
4850 The sequence of kills wraps around, so that after the oldest one
4851 comes the newest one.
4853 This command honors the `yank-handled-properties' and
4854 `yank-excluded-properties' variables, and the `yank-handler' text
4855 property, in the way that `yank' does."
4856 (interactive "*p")
4857 (if (not (eq last-command 'yank))
4858 (user-error "Previous command was not a yank"))
4859 (setq this-command 'yank)
4860 (unless arg (setq arg 1))
4861 (let ((inhibit-read-only t)
4862 (before (< (point) (mark t))))
4863 (if before
4864 (funcall (or yank-undo-function 'delete-region) (point) (mark t))
4865 (funcall (or yank-undo-function 'delete-region) (mark t) (point)))
4866 (setq yank-undo-function nil)
4867 (set-marker (mark-marker) (point) (current-buffer))
4868 (insert-for-yank (current-kill arg))
4869 ;; Set the window start back where it was in the yank command,
4870 ;; if possible.
4871 (set-window-start (selected-window) yank-window-start t)
4872 (if before
4873 ;; This is like exchange-point-and-mark, but doesn't activate the mark.
4874 ;; It is cleaner to avoid activation, even though the command
4875 ;; loop would deactivate the mark because we inserted text.
4876 (goto-char (prog1 (mark t)
4877 (set-marker (mark-marker) (point) (current-buffer))))))
4878 nil)
4880 (defun yank (&optional arg)
4881 "Reinsert (\"paste\") the last stretch of killed text.
4882 More precisely, reinsert the most recent kill, which is the
4883 stretch of killed text most recently killed OR yanked. Put point
4884 at the end, and set mark at the beginning without activating it.
4885 With just \\[universal-argument] as argument, put point at beginning, and mark at end.
4886 With argument N, reinsert the Nth most recent kill.
4888 This command honors the `yank-handled-properties' and
4889 `yank-excluded-properties' variables, and the `yank-handler' text
4890 property, as described below.
4892 Properties listed in `yank-handled-properties' are processed,
4893 then those listed in `yank-excluded-properties' are discarded.
4895 If STRING has a non-nil `yank-handler' property anywhere, the
4896 normal insert behavior is altered, and instead, for each contiguous
4897 segment of STRING that has a given value of the `yank-handler'
4898 property, that value is used as follows:
4900 The value of a `yank-handler' property must be a list of one to four
4901 elements, of the form (FUNCTION PARAM NOEXCLUDE UNDO).
4902 FUNCTION, if non-nil, should be a function of one argument (the
4903 object to insert); FUNCTION is called instead of `insert'.
4904 PARAM, if present and non-nil, is passed to FUNCTION (to be handled
4905 in whatever way is appropriate; e.g. if FUNCTION is `yank-rectangle',
4906 PARAM may be a list of strings to insert as a rectangle). If PARAM
4907 is nil, then the current segment of STRING is used.
4908 If NOEXCLUDE is present and non-nil, the normal removal of
4909 `yank-excluded-properties' is not performed; instead FUNCTION is
4910 responsible for the removal. This may be necessary if FUNCTION
4911 adjusts point before or after inserting the object.
4912 UNDO, if present and non-nil, should be a function to be called
4913 by `yank-pop' to undo the insertion of the current PARAM. It is
4914 given two arguments, the start and end of the region. FUNCTION
4915 may set `yank-undo-function' to override UNDO.
4917 See also the command `yank-pop' (\\[yank-pop])."
4918 (interactive "*P")
4919 (setq yank-window-start (window-start))
4920 ;; If we don't get all the way thru, make last-command indicate that
4921 ;; for the following command.
4922 (setq this-command t)
4923 (push-mark)
4924 (insert-for-yank (current-kill (cond
4925 ((listp arg) 0)
4926 ((eq arg '-) -2)
4927 (t (1- arg)))))
4928 (if (consp arg)
4929 ;; This is like exchange-point-and-mark, but doesn't activate the mark.
4930 ;; It is cleaner to avoid activation, even though the command
4931 ;; loop would deactivate the mark because we inserted text.
4932 (goto-char (prog1 (mark t)
4933 (set-marker (mark-marker) (point) (current-buffer)))))
4934 ;; If we do get all the way thru, make this-command indicate that.
4935 (if (eq this-command t)
4936 (setq this-command 'yank))
4937 nil)
4939 (defun rotate-yank-pointer (arg)
4940 "Rotate the yanking point in the kill ring.
4941 With ARG, rotate that many kills forward (or backward, if negative)."
4942 (interactive "p")
4943 (current-kill arg))
4945 ;; Some kill commands.
4947 ;; Internal subroutine of delete-char
4948 (defun kill-forward-chars (arg)
4949 (if (listp arg) (setq arg (car arg)))
4950 (if (eq arg '-) (setq arg -1))
4951 (kill-region (point) (+ (point) arg)))
4953 ;; Internal subroutine of backward-delete-char
4954 (defun kill-backward-chars (arg)
4955 (if (listp arg) (setq arg (car arg)))
4956 (if (eq arg '-) (setq arg -1))
4957 (kill-region (point) (- (point) arg)))
4959 (defcustom backward-delete-char-untabify-method 'untabify
4960 "The method for untabifying when deleting backward.
4961 Can be `untabify' -- turn a tab to many spaces, then delete one space;
4962 `hungry' -- delete all whitespace, both tabs and spaces;
4963 `all' -- delete all whitespace, including tabs, spaces and newlines;
4964 nil -- just delete one character."
4965 :type '(choice (const untabify) (const hungry) (const all) (const nil))
4966 :version "20.3"
4967 :group 'killing)
4969 (defun backward-delete-char-untabify (arg &optional killp)
4970 "Delete characters backward, changing tabs into spaces.
4971 The exact behavior depends on `backward-delete-char-untabify-method'.
4972 Delete ARG chars, and kill (save in kill ring) if KILLP is non-nil.
4973 Interactively, ARG is the prefix arg (default 1)
4974 and KILLP is t if a prefix arg was specified."
4975 (interactive "*p\nP")
4976 (when (eq backward-delete-char-untabify-method 'untabify)
4977 (let ((count arg))
4978 (save-excursion
4979 (while (and (> count 0) (not (bobp)))
4980 (if (= (preceding-char) ?\t)
4981 (let ((col (current-column)))
4982 (forward-char -1)
4983 (setq col (- col (current-column)))
4984 (insert-char ?\s col)
4985 (delete-char 1)))
4986 (forward-char -1)
4987 (setq count (1- count))))))
4988 (let* ((skip (cond ((eq backward-delete-char-untabify-method 'hungry) " \t")
4989 ((eq backward-delete-char-untabify-method 'all)
4990 " \t\n\r")))
4991 (n (if skip
4992 (let* ((oldpt (point))
4993 (wh (- oldpt (save-excursion
4994 (skip-chars-backward skip)
4995 (constrain-to-field nil oldpt)))))
4996 (+ arg (if (zerop wh) 0 (1- wh))))
4997 arg)))
4998 ;; Avoid warning about delete-backward-char
4999 (with-no-warnings (delete-backward-char n killp))))
5001 (defun zap-to-char (arg char)
5002 "Kill up to and including ARGth occurrence of CHAR.
5003 Case is ignored if `case-fold-search' is non-nil in the current buffer.
5004 Goes backward if ARG is negative; error if CHAR not found."
5005 (interactive (list (prefix-numeric-value current-prefix-arg)
5006 (read-char "Zap to char: " t)))
5007 ;; Avoid "obsolete" warnings for translation-table-for-input.
5008 (with-no-warnings
5009 (if (char-table-p translation-table-for-input)
5010 (setq char (or (aref translation-table-for-input char) char))))
5011 (kill-region (point) (progn
5012 (search-forward (char-to-string char) nil nil arg)
5013 (point))))
5015 ;; kill-line and its subroutines.
5017 (defcustom kill-whole-line nil
5018 "If non-nil, `kill-line' with no arg at start of line kills the whole line."
5019 :type 'boolean
5020 :group 'killing)
5022 (defun kill-line (&optional arg)
5023 "Kill the rest of the current line; if no nonblanks there, kill thru newline.
5024 With prefix argument ARG, kill that many lines from point.
5025 Negative arguments kill lines backward.
5026 With zero argument, kills the text before point on the current line.
5028 When calling from a program, nil means \"no arg\",
5029 a number counts as a prefix arg.
5031 To kill a whole line, when point is not at the beginning, type \
5032 \\[move-beginning-of-line] \\[kill-line] \\[kill-line].
5034 If `show-trailing-whitespace' is non-nil, this command will just
5035 kill the rest of the current line, even if there are no nonblanks
5036 there.
5038 If option `kill-whole-line' is non-nil, then this command kills the whole line
5039 including its terminating newline, when used at the beginning of a line
5040 with no argument. As a consequence, you can always kill a whole line
5041 by typing \\[move-beginning-of-line] \\[kill-line].
5043 If you want to append the killed line to the last killed text,
5044 use \\[append-next-kill] before \\[kill-line].
5046 If the buffer is read-only, Emacs will beep and refrain from deleting
5047 the line, but put the line in the kill ring anyway. This means that
5048 you can use this command to copy text from a read-only buffer.
5049 \(If the variable `kill-read-only-ok' is non-nil, then this won't
5050 even beep.)"
5051 (interactive "P")
5052 (kill-region (point)
5053 ;; It is better to move point to the other end of the kill
5054 ;; before killing. That way, in a read-only buffer, point
5055 ;; moves across the text that is copied to the kill ring.
5056 ;; The choice has no effect on undo now that undo records
5057 ;; the value of point from before the command was run.
5058 (progn
5059 (if arg
5060 (forward-visible-line (prefix-numeric-value arg))
5061 (if (eobp)
5062 (signal 'end-of-buffer nil))
5063 (let ((end
5064 (save-excursion
5065 (end-of-visible-line) (point))))
5066 (if (or (save-excursion
5067 ;; If trailing whitespace is visible,
5068 ;; don't treat it as nothing.
5069 (unless show-trailing-whitespace
5070 (skip-chars-forward " \t" end))
5071 (= (point) end))
5072 (and kill-whole-line (bolp)))
5073 (forward-visible-line 1)
5074 (goto-char end))))
5075 (point))))
5077 (defun kill-whole-line (&optional arg)
5078 "Kill current line.
5079 With prefix ARG, kill that many lines starting from the current line.
5080 If ARG is negative, kill backward. Also kill the preceding newline.
5081 \(This is meant to make \\[repeat] work well with negative arguments.)
5082 If ARG is zero, kill current line but exclude the trailing newline."
5083 (interactive "p")
5084 (or arg (setq arg 1))
5085 (if (and (> arg 0) (eobp) (save-excursion (forward-visible-line 0) (eobp)))
5086 (signal 'end-of-buffer nil))
5087 (if (and (< arg 0) (bobp) (save-excursion (end-of-visible-line) (bobp)))
5088 (signal 'beginning-of-buffer nil))
5089 (unless (eq last-command 'kill-region)
5090 (kill-new "")
5091 (setq last-command 'kill-region))
5092 (cond ((zerop arg)
5093 ;; We need to kill in two steps, because the previous command
5094 ;; could have been a kill command, in which case the text
5095 ;; before point needs to be prepended to the current kill
5096 ;; ring entry and the text after point appended. Also, we
5097 ;; need to use save-excursion to avoid copying the same text
5098 ;; twice to the kill ring in read-only buffers.
5099 (save-excursion
5100 (kill-region (point) (progn (forward-visible-line 0) (point))))
5101 (kill-region (point) (progn (end-of-visible-line) (point))))
5102 ((< arg 0)
5103 (save-excursion
5104 (kill-region (point) (progn (end-of-visible-line) (point))))
5105 (kill-region (point)
5106 (progn (forward-visible-line (1+ arg))
5107 (unless (bobp) (backward-char))
5108 (point))))
5110 (save-excursion
5111 (kill-region (point) (progn (forward-visible-line 0) (point))))
5112 (kill-region (point)
5113 (progn (forward-visible-line arg) (point))))))
5115 (defun forward-visible-line (arg)
5116 "Move forward by ARG lines, ignoring currently invisible newlines only.
5117 If ARG is negative, move backward -ARG lines.
5118 If ARG is zero, move to the beginning of the current line."
5119 (condition-case nil
5120 (if (> arg 0)
5121 (progn
5122 (while (> arg 0)
5123 (or (zerop (forward-line 1))
5124 (signal 'end-of-buffer nil))
5125 ;; If the newline we just skipped is invisible,
5126 ;; don't count it.
5127 (let ((prop
5128 (get-char-property (1- (point)) 'invisible)))
5129 (if (if (eq buffer-invisibility-spec t)
5130 prop
5131 (or (memq prop buffer-invisibility-spec)
5132 (assq prop buffer-invisibility-spec)))
5133 (setq arg (1+ arg))))
5134 (setq arg (1- arg)))
5135 ;; If invisible text follows, and it is a number of complete lines,
5136 ;; skip it.
5137 (let ((opoint (point)))
5138 (while (and (not (eobp))
5139 (let ((prop
5140 (get-char-property (point) 'invisible)))
5141 (if (eq buffer-invisibility-spec t)
5142 prop
5143 (or (memq prop buffer-invisibility-spec)
5144 (assq prop buffer-invisibility-spec)))))
5145 (goto-char
5146 (if (get-text-property (point) 'invisible)
5147 (or (next-single-property-change (point) 'invisible)
5148 (point-max))
5149 (next-overlay-change (point)))))
5150 (unless (bolp)
5151 (goto-char opoint))))
5152 (let ((first t))
5153 (while (or first (<= arg 0))
5154 (if first
5155 (beginning-of-line)
5156 (or (zerop (forward-line -1))
5157 (signal 'beginning-of-buffer nil)))
5158 ;; If the newline we just moved to is invisible,
5159 ;; don't count it.
5160 (unless (bobp)
5161 (let ((prop
5162 (get-char-property (1- (point)) 'invisible)))
5163 (unless (if (eq buffer-invisibility-spec t)
5164 prop
5165 (or (memq prop buffer-invisibility-spec)
5166 (assq prop buffer-invisibility-spec)))
5167 (setq arg (1+ arg)))))
5168 (setq first nil))
5169 ;; If invisible text follows, and it is a number of complete lines,
5170 ;; skip it.
5171 (let ((opoint (point)))
5172 (while (and (not (bobp))
5173 (let ((prop
5174 (get-char-property (1- (point)) 'invisible)))
5175 (if (eq buffer-invisibility-spec t)
5176 prop
5177 (or (memq prop buffer-invisibility-spec)
5178 (assq prop buffer-invisibility-spec)))))
5179 (goto-char
5180 (if (get-text-property (1- (point)) 'invisible)
5181 (or (previous-single-property-change (point) 'invisible)
5182 (point-min))
5183 (previous-overlay-change (point)))))
5184 (unless (bolp)
5185 (goto-char opoint)))))
5186 ((beginning-of-buffer end-of-buffer)
5187 nil)))
5189 (defun end-of-visible-line ()
5190 "Move to end of current visible line."
5191 (end-of-line)
5192 ;; If the following character is currently invisible,
5193 ;; skip all characters with that same `invisible' property value,
5194 ;; then find the next newline.
5195 (while (and (not (eobp))
5196 (save-excursion
5197 (skip-chars-forward "^\n")
5198 (let ((prop
5199 (get-char-property (point) 'invisible)))
5200 (if (eq buffer-invisibility-spec t)
5201 prop
5202 (or (memq prop buffer-invisibility-spec)
5203 (assq prop buffer-invisibility-spec))))))
5204 (skip-chars-forward "^\n")
5205 (if (get-text-property (point) 'invisible)
5206 (goto-char (or (next-single-property-change (point) 'invisible)
5207 (point-max)))
5208 (goto-char (next-overlay-change (point))))
5209 (end-of-line)))
5211 (defun kill-current-buffer ()
5212 "Kill the current buffer.
5213 When called in the minibuffer, get out of the minibuffer
5214 using `abort-recursive-edit'.
5216 This is like `kill-this-buffer', but it doesn't have to be invoked
5217 via the menu bar, and pays no attention to the menu-bar's frame."
5218 (interactive)
5219 (let ((frame (selected-frame)))
5220 (if (and (frame-live-p frame)
5221 (not (window-minibuffer-p (frame-selected-window frame))))
5222 (kill-buffer (current-buffer))
5223 (abort-recursive-edit))))
5226 (defun insert-buffer (buffer)
5227 "Insert after point the contents of BUFFER.
5228 Puts mark after the inserted text.
5229 BUFFER may be a buffer or a buffer name."
5230 (declare (interactive-only insert-buffer-substring))
5231 (interactive
5232 (list
5233 (progn
5234 (barf-if-buffer-read-only)
5235 (read-buffer "Insert buffer: "
5236 (if (eq (selected-window) (next-window))
5237 (other-buffer (current-buffer))
5238 (window-buffer (next-window)))
5239 t))))
5240 (push-mark
5241 (save-excursion
5242 (insert-buffer-substring (get-buffer buffer))
5243 (point)))
5244 nil)
5246 (defun append-to-buffer (buffer start end)
5247 "Append to specified buffer the text of the region.
5248 It is inserted into that buffer before its point.
5250 When calling from a program, give three arguments:
5251 BUFFER (or buffer name), START and END.
5252 START and END specify the portion of the current buffer to be copied."
5253 (interactive
5254 (list (read-buffer "Append to buffer: " (other-buffer (current-buffer) t))
5255 (region-beginning) (region-end)))
5256 (let* ((oldbuf (current-buffer))
5257 (append-to (get-buffer-create buffer))
5258 (windows (get-buffer-window-list append-to t t))
5259 point)
5260 (save-excursion
5261 (with-current-buffer append-to
5262 (setq point (point))
5263 (barf-if-buffer-read-only)
5264 (insert-buffer-substring oldbuf start end)
5265 (dolist (window windows)
5266 (when (= (window-point window) point)
5267 (set-window-point window (point))))))))
5269 (defun prepend-to-buffer (buffer start end)
5270 "Prepend to specified buffer the text of the region.
5271 It is inserted into that buffer after its point.
5273 When calling from a program, give three arguments:
5274 BUFFER (or buffer name), START and END.
5275 START and END specify the portion of the current buffer to be copied."
5276 (interactive "BPrepend to buffer: \nr")
5277 (let ((oldbuf (current-buffer)))
5278 (with-current-buffer (get-buffer-create buffer)
5279 (barf-if-buffer-read-only)
5280 (save-excursion
5281 (insert-buffer-substring oldbuf start end)))))
5283 (defun copy-to-buffer (buffer start end)
5284 "Copy to specified buffer the text of the region.
5285 It is inserted into that buffer, replacing existing text there.
5287 When calling from a program, give three arguments:
5288 BUFFER (or buffer name), START and END.
5289 START and END specify the portion of the current buffer to be copied."
5290 (interactive "BCopy to buffer: \nr")
5291 (let ((oldbuf (current-buffer)))
5292 (with-current-buffer (get-buffer-create buffer)
5293 (barf-if-buffer-read-only)
5294 (erase-buffer)
5295 (save-excursion
5296 (insert-buffer-substring oldbuf start end)))))
5298 (define-error 'mark-inactive (purecopy "The mark is not active now"))
5300 (defvar activate-mark-hook nil
5301 "Hook run when the mark becomes active.
5302 It is also run at the end of a command, if the mark is active and
5303 it is possible that the region may have changed.")
5305 (defvar deactivate-mark-hook nil
5306 "Hook run when the mark becomes inactive.")
5308 (defun mark (&optional force)
5309 "Return this buffer's mark value as integer, or nil if never set.
5311 In Transient Mark mode, this function signals an error if
5312 the mark is not active. However, if `mark-even-if-inactive' is non-nil,
5313 or the argument FORCE is non-nil, it disregards whether the mark
5314 is active, and returns an integer or nil in the usual way.
5316 If you are using this in an editing command, you are most likely making
5317 a mistake; see the documentation of `set-mark'."
5318 (if (or force (not transient-mark-mode) mark-active mark-even-if-inactive)
5319 (marker-position (mark-marker))
5320 (signal 'mark-inactive nil)))
5322 ;; Behind display-selections-p.
5324 (defun deactivate-mark (&optional force)
5325 "Deactivate the mark.
5326 If Transient Mark mode is disabled, this function normally does
5327 nothing; but if FORCE is non-nil, it deactivates the mark anyway.
5329 Deactivating the mark sets `mark-active' to nil, updates the
5330 primary selection according to `select-active-regions', and runs
5331 `deactivate-mark-hook'.
5333 If Transient Mark mode was temporarily enabled, reset the value
5334 of the variable `transient-mark-mode'; if this causes Transient
5335 Mark mode to be disabled, don't change `mark-active' to nil or
5336 run `deactivate-mark-hook'."
5337 (when (or (region-active-p) force)
5338 (when (and (if (eq select-active-regions 'only)
5339 (eq (car-safe transient-mark-mode) 'only)
5340 select-active-regions)
5341 (region-active-p)
5342 (display-selections-p))
5343 ;; The var `saved-region-selection', if non-nil, is the text in
5344 ;; the region prior to the last command modifying the buffer.
5345 ;; Set the selection to that, or to the current region.
5346 (cond (saved-region-selection
5347 (if (gui-backend-selection-owner-p 'PRIMARY)
5348 (gui-set-selection 'PRIMARY saved-region-selection))
5349 (setq saved-region-selection nil))
5350 ;; If another program has acquired the selection, region
5351 ;; deactivation should not clobber it (Bug#11772).
5352 ((and (/= (region-beginning) (region-end))
5353 (or (gui-backend-selection-owner-p 'PRIMARY)
5354 (null (gui-backend-selection-exists-p 'PRIMARY))))
5355 (gui-set-selection 'PRIMARY
5356 (funcall region-extract-function nil)))))
5357 (when mark-active (force-mode-line-update)) ;Refresh toolbar (bug#16382).
5358 (cond
5359 ((eq (car-safe transient-mark-mode) 'only)
5360 (setq transient-mark-mode (cdr transient-mark-mode))
5361 (if (eq transient-mark-mode (default-value 'transient-mark-mode))
5362 (kill-local-variable 'transient-mark-mode)))
5363 ((eq transient-mark-mode 'lambda)
5364 (kill-local-variable 'transient-mark-mode)))
5365 (setq mark-active nil)
5366 (run-hooks 'deactivate-mark-hook)
5367 (redisplay--update-region-highlight (selected-window))))
5369 (defun activate-mark (&optional no-tmm)
5370 "Activate the mark.
5371 If NO-TMM is non-nil, leave `transient-mark-mode' alone."
5372 (when (mark t)
5373 (unless (region-active-p)
5374 (force-mode-line-update) ;Refresh toolbar (bug#16382).
5375 (setq mark-active t)
5376 (unless (or transient-mark-mode no-tmm)
5377 (setq-local transient-mark-mode 'lambda))
5378 (run-hooks 'activate-mark-hook))))
5380 (defun set-mark (pos)
5381 "Set this buffer's mark to POS. Don't use this function!
5382 That is to say, don't use this function unless you want
5383 the user to see that the mark has moved, and you want the previous
5384 mark position to be lost.
5386 Normally, when a new mark is set, the old one should go on the stack.
5387 This is why most applications should use `push-mark', not `set-mark'.
5389 Novice Emacs Lisp programmers often try to use the mark for the wrong
5390 purposes. The mark saves a location for the user's convenience.
5391 Most editing commands should not alter the mark.
5392 To remember a location for internal use in the Lisp program,
5393 store it in a Lisp variable. Example:
5395 (let ((beg (point))) (forward-line 1) (delete-region beg (point)))."
5396 (if pos
5397 (progn
5398 (set-marker (mark-marker) pos (current-buffer))
5399 (activate-mark 'no-tmm))
5400 ;; Normally we never clear mark-active except in Transient Mark mode.
5401 ;; But when we actually clear out the mark value too, we must
5402 ;; clear mark-active in any mode.
5403 (deactivate-mark t)
5404 ;; `deactivate-mark' sometimes leaves mark-active non-nil, but
5405 ;; it should never be nil if the mark is nil.
5406 (setq mark-active nil)
5407 (set-marker (mark-marker) nil)))
5409 (defun save-mark-and-excursion--save ()
5410 (cons
5411 (let ((mark (mark-marker)))
5412 (and (marker-position mark) (copy-marker mark)))
5413 mark-active))
5415 (defun save-mark-and-excursion--restore (saved-mark-info)
5416 (let ((saved-mark (car saved-mark-info))
5417 (omark (marker-position (mark-marker)))
5418 (nmark nil)
5419 (saved-mark-active (cdr saved-mark-info)))
5420 ;; Mark marker
5421 (if (null saved-mark)
5422 (set-marker (mark-marker) nil)
5423 (setf nmark (marker-position saved-mark))
5424 (set-marker (mark-marker) nmark)
5425 (set-marker saved-mark nil))
5426 ;; Mark active
5427 (let ((cur-mark-active mark-active))
5428 (setq mark-active saved-mark-active)
5429 ;; If mark is active now, and either was not active or was at a
5430 ;; different place, run the activate hook.
5431 (if saved-mark-active
5432 (when (or (not cur-mark-active)
5433 (not (eq omark nmark)))
5434 (run-hooks 'activate-mark-hook))
5435 ;; If mark has ceased to be active, run deactivate hook.
5436 (when cur-mark-active
5437 (run-hooks 'deactivate-mark-hook))))))
5439 (defmacro save-mark-and-excursion (&rest body)
5440 "Like `save-excursion', but also save and restore the mark state.
5441 This macro does what `save-excursion' did before Emacs 25.1."
5442 (declare (indent 0) (debug t))
5443 (let ((saved-marker-sym (make-symbol "saved-marker")))
5444 `(let ((,saved-marker-sym (save-mark-and-excursion--save)))
5445 (unwind-protect
5446 (save-excursion ,@body)
5447 (save-mark-and-excursion--restore ,saved-marker-sym)))))
5449 (defcustom use-empty-active-region nil
5450 "Whether \"region-aware\" commands should act on empty regions.
5451 If nil, region-aware commands treat the empty region as inactive.
5452 If non-nil, region-aware commands treat the region as active as
5453 long as the mark is active, even if the region is empty.
5455 Region-aware commands are those that act on the region if it is
5456 active and Transient Mark mode is enabled, and on the text near
5457 point otherwise."
5458 :type 'boolean
5459 :version "23.1"
5460 :group 'editing-basics)
5462 (defun use-region-p ()
5463 "Return t if the region is active and it is appropriate to act on it.
5464 This is used by commands that act specially on the region under
5465 Transient Mark mode.
5467 The return value is t if Transient Mark mode is enabled and the
5468 mark is active; furthermore, if `use-empty-active-region' is nil,
5469 the region must not be empty. Otherwise, the return value is nil.
5471 For some commands, it may be appropriate to ignore the value of
5472 `use-empty-active-region'; in that case, use `region-active-p'."
5473 (and (region-active-p)
5474 (or use-empty-active-region (> (region-end) (region-beginning)))))
5476 (defun region-active-p ()
5477 "Return non-nil if Transient Mark mode is enabled and the mark is active.
5479 Some commands act specially on the region when Transient Mark
5480 mode is enabled. Usually, such commands should use
5481 `use-region-p' instead of this function, because `use-region-p'
5482 also checks the value of `use-empty-active-region'."
5483 (and transient-mark-mode mark-active
5484 ;; FIXME: Somehow we sometimes end up with mark-active non-nil but
5485 ;; without the mark being set (e.g. bug#17324). We really should fix
5486 ;; that problem, but in the mean time, let's make sure we don't say the
5487 ;; region is active when there's no mark.
5488 (progn (cl-assert (mark)) t)))
5490 (defun region-bounds ()
5491 "Return the boundaries of the region as a pair of positions.
5492 Value is a list of cons cells of the form (START . END)."
5493 (funcall region-extract-function 'bounds))
5495 (defun region-noncontiguous-p ()
5496 "Return non-nil if the region contains several pieces.
5497 An example is a rectangular region handled as a list of
5498 separate contiguous regions for each line."
5499 (> (length (region-bounds)) 1))
5501 (defvar redisplay-unhighlight-region-function
5502 (lambda (rol) (when (overlayp rol) (delete-overlay rol))))
5504 (defvar redisplay-highlight-region-function
5505 (lambda (start end window rol)
5506 (if (not (overlayp rol))
5507 (let ((nrol (make-overlay start end)))
5508 (funcall redisplay-unhighlight-region-function rol)
5509 (overlay-put nrol 'window window)
5510 (overlay-put nrol 'face 'region)
5511 ;; Normal priority so that a large region doesn't hide all the
5512 ;; overlays within it, but high secondary priority so that if it
5513 ;; ends/starts in the middle of a small overlay, that small overlay
5514 ;; won't hide the region's boundaries.
5515 (overlay-put nrol 'priority '(nil . 100))
5516 nrol)
5517 (unless (and (eq (overlay-buffer rol) (current-buffer))
5518 (eq (overlay-start rol) start)
5519 (eq (overlay-end rol) end))
5520 (move-overlay rol start end (current-buffer)))
5521 rol)))
5523 (defun redisplay--update-region-highlight (window)
5524 (let ((rol (window-parameter window 'internal-region-overlay)))
5525 (if (not (and (region-active-p)
5526 (or highlight-nonselected-windows
5527 (eq window (selected-window))
5528 (and (window-minibuffer-p)
5529 (eq window (minibuffer-selected-window))))))
5530 (funcall redisplay-unhighlight-region-function rol)
5531 (let* ((pt (window-point window))
5532 (mark (mark))
5533 (start (min pt mark))
5534 (end (max pt mark))
5535 (new
5536 (funcall redisplay-highlight-region-function
5537 start end window rol)))
5538 (unless (equal new rol)
5539 (set-window-parameter window 'internal-region-overlay
5540 new))))))
5542 (defvar pre-redisplay-functions (list #'redisplay--update-region-highlight)
5543 "Hook run just before redisplay.
5544 It is called in each window that is to be redisplayed. It takes one argument,
5545 which is the window that will be redisplayed. When run, the `current-buffer'
5546 is set to the buffer displayed in that window.")
5548 (defun redisplay--pre-redisplay-functions (windows)
5549 (with-demoted-errors "redisplay--pre-redisplay-functions: %S"
5550 (if (null windows)
5551 (with-current-buffer (window-buffer (selected-window))
5552 (run-hook-with-args 'pre-redisplay-functions (selected-window)))
5553 (dolist (win (if (listp windows) windows (window-list-1 nil nil t)))
5554 (with-current-buffer (window-buffer win)
5555 (run-hook-with-args 'pre-redisplay-functions win))))))
5557 (add-function :before pre-redisplay-function
5558 #'redisplay--pre-redisplay-functions)
5561 (defvar-local mark-ring nil
5562 "The list of former marks of the current buffer, most recent first.")
5563 (put 'mark-ring 'permanent-local t)
5565 (defcustom mark-ring-max 16
5566 "Maximum size of mark ring. Start discarding off end if gets this big."
5567 :type 'integer
5568 :group 'editing-basics)
5570 (defvar global-mark-ring nil
5571 "The list of saved global marks, most recent first.")
5573 (defcustom global-mark-ring-max 16
5574 "Maximum size of global mark ring. \
5575 Start discarding off end if gets this big."
5576 :type 'integer
5577 :group 'editing-basics)
5579 (defun pop-to-mark-command ()
5580 "Jump to mark, and pop a new position for mark off the ring.
5581 \(Does not affect global mark ring)."
5582 (interactive)
5583 (if (null (mark t))
5584 (user-error "No mark set in this buffer")
5585 (if (= (point) (mark t))
5586 (message "Mark popped"))
5587 (goto-char (mark t))
5588 (pop-mark)))
5590 (defun push-mark-command (arg &optional nomsg)
5591 "Set mark at where point is.
5592 If no prefix ARG and mark is already set there, just activate it.
5593 Display `Mark set' unless the optional second arg NOMSG is non-nil."
5594 (interactive "P")
5595 (let ((mark (mark t)))
5596 (if (or arg (null mark) (/= mark (point)))
5597 (push-mark nil nomsg t)
5598 (activate-mark 'no-tmm)
5599 (unless nomsg
5600 (message "Mark activated")))))
5602 (defcustom set-mark-command-repeat-pop nil
5603 "Non-nil means repeating \\[set-mark-command] after popping mark pops it again.
5604 That means that C-u \\[set-mark-command] \\[set-mark-command]
5605 will pop the mark twice, and
5606 C-u \\[set-mark-command] \\[set-mark-command] \\[set-mark-command]
5607 will pop the mark three times.
5609 A value of nil means \\[set-mark-command]'s behavior does not change
5610 after C-u \\[set-mark-command]."
5611 :type 'boolean
5612 :group 'editing-basics)
5614 (defun set-mark-command (arg)
5615 "Set the mark where point is, and activate it; or jump to the mark.
5616 Setting the mark also alters the region, which is the text
5617 between point and mark; this is the closest equivalent in
5618 Emacs to what some editors call the \"selection\".
5620 With no prefix argument, set the mark at point, and push the
5621 old mark position on local mark ring. Also push the new mark on
5622 global mark ring, if the previous mark was set in another buffer.
5624 When Transient Mark Mode is off, immediately repeating this
5625 command activates `transient-mark-mode' temporarily.
5627 With prefix argument (e.g., \\[universal-argument] \\[set-mark-command]), \
5628 jump to the mark, and set the mark from
5629 position popped off the local mark ring (this does not affect the global
5630 mark ring). Use \\[pop-global-mark] to jump to a mark popped off the global
5631 mark ring (see `pop-global-mark').
5633 If `set-mark-command-repeat-pop' is non-nil, repeating
5634 the \\[set-mark-command] command with no prefix argument pops the next position
5635 off the local (or global) mark ring and jumps there.
5637 With \\[universal-argument] \\[universal-argument] as prefix
5638 argument, unconditionally set mark where point is, even if
5639 `set-mark-command-repeat-pop' is non-nil.
5641 Novice Emacs Lisp programmers often try to use the mark for the wrong
5642 purposes. See the documentation of `set-mark' for more information."
5643 (interactive "P")
5644 (cond ((eq transient-mark-mode 'lambda)
5645 (kill-local-variable 'transient-mark-mode))
5646 ((eq (car-safe transient-mark-mode) 'only)
5647 (deactivate-mark)))
5648 (cond
5649 ((and (consp arg) (> (prefix-numeric-value arg) 4))
5650 (push-mark-command nil))
5651 ((not (eq this-command 'set-mark-command))
5652 (if arg
5653 (pop-to-mark-command)
5654 (push-mark-command t)))
5655 ((and set-mark-command-repeat-pop
5656 (eq last-command 'pop-global-mark)
5657 (not arg))
5658 (setq this-command 'pop-global-mark)
5659 (pop-global-mark))
5660 ((or (and set-mark-command-repeat-pop
5661 (eq last-command 'pop-to-mark-command))
5662 arg)
5663 (setq this-command 'pop-to-mark-command)
5664 (pop-to-mark-command))
5665 ((eq last-command 'set-mark-command)
5666 (if (region-active-p)
5667 (progn
5668 (deactivate-mark)
5669 (message "Mark deactivated"))
5670 (activate-mark)
5671 (message "Mark activated")))
5673 (push-mark-command nil))))
5675 (defun push-mark (&optional location nomsg activate)
5676 "Set mark at LOCATION (point, by default) and push old mark on mark ring.
5677 If the last global mark pushed was not in the current buffer,
5678 also push LOCATION on the global mark ring.
5679 Display `Mark set' unless the optional second arg NOMSG is non-nil.
5681 Novice Emacs Lisp programmers often try to use the mark for the wrong
5682 purposes. See the documentation of `set-mark' for more information.
5684 In Transient Mark mode, activate mark if optional third arg ACTIVATE non-nil."
5685 (unless (null (mark t))
5686 (setq mark-ring (cons (copy-marker (mark-marker)) mark-ring))
5687 (when (> (length mark-ring) mark-ring-max)
5688 (move-marker (car (nthcdr mark-ring-max mark-ring)) nil)
5689 (setcdr (nthcdr (1- mark-ring-max) mark-ring) nil)))
5690 (set-marker (mark-marker) (or location (point)) (current-buffer))
5691 ;; Now push the mark on the global mark ring.
5692 (if (and global-mark-ring
5693 (eq (marker-buffer (car global-mark-ring)) (current-buffer)))
5694 ;; The last global mark pushed was in this same buffer.
5695 ;; Don't push another one.
5697 (setq global-mark-ring (cons (copy-marker (mark-marker)) global-mark-ring))
5698 (when (> (length global-mark-ring) global-mark-ring-max)
5699 (move-marker (car (nthcdr global-mark-ring-max global-mark-ring)) nil)
5700 (setcdr (nthcdr (1- global-mark-ring-max) global-mark-ring) nil)))
5701 (or nomsg executing-kbd-macro (> (minibuffer-depth) 0)
5702 (message "Mark set"))
5703 (if (or activate (not transient-mark-mode))
5704 (set-mark (mark t)))
5705 nil)
5707 (defun pop-mark ()
5708 "Pop off mark ring into the buffer's actual mark.
5709 Does not set point. Does nothing if mark ring is empty."
5710 (when mark-ring
5711 (setq mark-ring (nconc mark-ring (list (copy-marker (mark-marker)))))
5712 (set-marker (mark-marker) (+ 0 (car mark-ring)) (current-buffer))
5713 (move-marker (car mark-ring) nil)
5714 (if (null (mark t)) (ding))
5715 (setq mark-ring (cdr mark-ring)))
5716 (deactivate-mark))
5718 (define-obsolete-function-alias
5719 'exchange-dot-and-mark 'exchange-point-and-mark "23.3")
5720 (defun exchange-point-and-mark (&optional arg)
5721 "Put the mark where point is now, and point where the mark is now.
5722 This command works even when the mark is not active,
5723 and it reactivates the mark.
5725 If Transient Mark mode is on, a prefix ARG deactivates the mark
5726 if it is active, and otherwise avoids reactivating it. If
5727 Transient Mark mode is off, a prefix ARG enables Transient Mark
5728 mode temporarily."
5729 (interactive "P")
5730 (let ((omark (mark t))
5731 (temp-highlight (eq (car-safe transient-mark-mode) 'only)))
5732 (if (null omark)
5733 (user-error "No mark set in this buffer"))
5734 (set-mark (point))
5735 (goto-char omark)
5736 (cond (temp-highlight
5737 (setq-local transient-mark-mode (cons 'only transient-mark-mode)))
5738 ((or (and arg (region-active-p)) ; (xor arg (not (region-active-p)))
5739 (not (or arg (region-active-p))))
5740 (deactivate-mark))
5741 (t (activate-mark)))
5742 nil))
5744 (defcustom shift-select-mode t
5745 "When non-nil, shifted motion keys activate the mark momentarily.
5747 While the mark is activated in this way, any shift-translated point
5748 motion key extends the region, and if Transient Mark mode was off, it
5749 is temporarily turned on. Furthermore, the mark will be deactivated
5750 by any subsequent point motion key that was not shift-translated, or
5751 by any action that normally deactivates the mark in Transient Mark mode.
5753 See `this-command-keys-shift-translated' for the meaning of
5754 shift-translation."
5755 :type 'boolean
5756 :group 'editing-basics)
5758 (defun handle-shift-selection ()
5759 "Activate/deactivate mark depending on invocation thru shift translation.
5760 This function is called by `call-interactively' when a command
5761 with a `^' character in its `interactive' spec is invoked, before
5762 running the command itself.
5764 If `shift-select-mode' is enabled and the command was invoked
5765 through shift translation, set the mark and activate the region
5766 temporarily, unless it was already set in this way. See
5767 `this-command-keys-shift-translated' for the meaning of shift
5768 translation.
5770 Otherwise, if the region has been activated temporarily,
5771 deactivate it, and restore the variable `transient-mark-mode' to
5772 its earlier value."
5773 (cond ((and shift-select-mode this-command-keys-shift-translated)
5774 (unless (and mark-active
5775 (eq (car-safe transient-mark-mode) 'only))
5776 (setq-local transient-mark-mode
5777 (cons 'only
5778 (unless (eq transient-mark-mode 'lambda)
5779 transient-mark-mode)))
5780 (push-mark nil nil t)))
5781 ((eq (car-safe transient-mark-mode) 'only)
5782 (setq transient-mark-mode (cdr transient-mark-mode))
5783 (if (eq transient-mark-mode (default-value 'transient-mark-mode))
5784 (kill-local-variable 'transient-mark-mode))
5785 (deactivate-mark))))
5787 (define-minor-mode transient-mark-mode
5788 "Toggle Transient Mark mode.
5789 With a prefix argument ARG, enable Transient Mark mode if ARG is
5790 positive, and disable it otherwise. If called from Lisp, enable
5791 Transient Mark mode if ARG is omitted or nil.
5793 Transient Mark mode is a global minor mode. When enabled, the
5794 region is highlighted with the `region' face whenever the mark
5795 is active. The mark is \"deactivated\" by changing the buffer,
5796 and after certain other operations that set the mark but whose
5797 main purpose is something else--for example, incremental search,
5798 \\[beginning-of-buffer], and \\[end-of-buffer].
5800 You can also deactivate the mark by typing \\[keyboard-quit] or
5801 \\[keyboard-escape-quit].
5803 Many commands change their behavior when Transient Mark mode is
5804 in effect and the mark is active, by acting on the region instead
5805 of their usual default part of the buffer's text. Examples of
5806 such commands include \\[comment-dwim], \\[flush-lines], \\[keep-lines],
5807 \\[query-replace], \\[query-replace-regexp], \\[ispell], and \\[undo].
5808 To see the documentation of commands which are sensitive to the
5809 Transient Mark mode, invoke \\[apropos-documentation] and type \"transient\"
5810 or \"mark.*active\" at the prompt."
5811 :global t
5812 ;; It's defined in C/cus-start, this stops the d-m-m macro defining it again.
5813 :variable (default-value 'transient-mark-mode))
5815 (defvar widen-automatically t
5816 "Non-nil means it is ok for commands to call `widen' when they want to.
5817 Some commands will do this in order to go to positions outside
5818 the current accessible part of the buffer.
5820 If `widen-automatically' is nil, these commands will do something else
5821 as a fallback, and won't change the buffer bounds.")
5823 (defvar non-essential nil
5824 "Whether the currently executing code is performing an essential task.
5825 This variable should be non-nil only when running code which should not
5826 disturb the user. E.g. it can be used to prevent Tramp from prompting the
5827 user for a password when we are simply scanning a set of files in the
5828 background or displaying possible completions before the user even asked
5829 for it.")
5831 (defun pop-global-mark ()
5832 "Pop off global mark ring and jump to the top location."
5833 (interactive)
5834 ;; Pop entries which refer to non-existent buffers.
5835 (while (and global-mark-ring (not (marker-buffer (car global-mark-ring))))
5836 (setq global-mark-ring (cdr global-mark-ring)))
5837 (or global-mark-ring
5838 (error "No global mark set"))
5839 (let* ((marker (car global-mark-ring))
5840 (buffer (marker-buffer marker))
5841 (position (marker-position marker)))
5842 (setq global-mark-ring (nconc (cdr global-mark-ring)
5843 (list (car global-mark-ring))))
5844 (set-buffer buffer)
5845 (or (and (>= position (point-min))
5846 (<= position (point-max)))
5847 (if widen-automatically
5848 (widen)
5849 (error "Global mark position is outside accessible part of buffer")))
5850 (goto-char position)
5851 (switch-to-buffer buffer)))
5853 (defcustom next-line-add-newlines nil
5854 "If non-nil, `next-line' inserts newline to avoid `end of buffer' error."
5855 :type 'boolean
5856 :version "21.1"
5857 :group 'editing-basics)
5859 (defun next-line (&optional arg try-vscroll)
5860 "Move cursor vertically down ARG lines.
5861 Interactively, vscroll tall lines if `auto-window-vscroll' is enabled.
5862 Non-interactively, use TRY-VSCROLL to control whether to vscroll tall
5863 lines: if either `auto-window-vscroll' or TRY-VSCROLL is nil, this
5864 function will not vscroll.
5866 ARG defaults to 1.
5868 If there is no character in the target line exactly under the current column,
5869 the cursor is positioned after the character in that line which spans this
5870 column, or at the end of the line if it is not long enough.
5871 If there is no line in the buffer after this one, behavior depends on the
5872 value of `next-line-add-newlines'. If non-nil, it inserts a newline character
5873 to create a line, and moves the cursor to that line. Otherwise it moves the
5874 cursor to the end of the buffer.
5876 If the variable `line-move-visual' is non-nil, this command moves
5877 by display lines. Otherwise, it moves by buffer lines, without
5878 taking variable-width characters or continued lines into account.
5879 See \\[next-logical-line] for a command that always moves by buffer lines.
5881 The command \\[set-goal-column] can be used to create
5882 a semipermanent goal column for this command.
5883 Then instead of trying to move exactly vertically (or as close as possible),
5884 this command moves to the specified goal column (or as close as possible).
5885 The goal column is stored in the variable `goal-column', which is nil
5886 when there is no goal column. Note that setting `goal-column'
5887 overrides `line-move-visual' and causes this command to move by buffer
5888 lines rather than by display lines."
5889 (declare (interactive-only forward-line))
5890 (interactive "^p\np")
5891 (or arg (setq arg 1))
5892 (if (and next-line-add-newlines (= arg 1))
5893 (if (save-excursion (end-of-line) (eobp))
5894 ;; When adding a newline, don't expand an abbrev.
5895 (let ((abbrev-mode nil))
5896 (end-of-line)
5897 (insert (if use-hard-newlines hard-newline "\n")))
5898 (line-move arg nil nil try-vscroll))
5899 (if (called-interactively-p 'interactive)
5900 (condition-case err
5901 (line-move arg nil nil try-vscroll)
5902 ((beginning-of-buffer end-of-buffer)
5903 (signal (car err) (cdr err))))
5904 (line-move arg nil nil try-vscroll)))
5905 nil)
5907 (defun previous-line (&optional arg try-vscroll)
5908 "Move cursor vertically up ARG lines.
5909 Interactively, vscroll tall lines if `auto-window-vscroll' is enabled.
5910 Non-interactively, use TRY-VSCROLL to control whether to vscroll tall
5911 lines: if either `auto-window-vscroll' or TRY-VSCROLL is nil, this
5912 function will not vscroll.
5914 ARG defaults to 1.
5916 If there is no character in the target line exactly over the current column,
5917 the cursor is positioned after the character in that line which spans this
5918 column, or at the end of the line if it is not long enough.
5920 If the variable `line-move-visual' is non-nil, this command moves
5921 by display lines. Otherwise, it moves by buffer lines, without
5922 taking variable-width characters or continued lines into account.
5923 See \\[previous-logical-line] for a command that always moves by buffer lines.
5925 The command \\[set-goal-column] can be used to create
5926 a semipermanent goal column for this command.
5927 Then instead of trying to move exactly vertically (or as close as possible),
5928 this command moves to the specified goal column (or as close as possible).
5929 The goal column is stored in the variable `goal-column', which is nil
5930 when there is no goal column. Note that setting `goal-column'
5931 overrides `line-move-visual' and causes this command to move by buffer
5932 lines rather than by display lines."
5933 (declare (interactive-only
5934 "use `forward-line' with negative argument instead."))
5935 (interactive "^p\np")
5936 (or arg (setq arg 1))
5937 (if (called-interactively-p 'interactive)
5938 (condition-case err
5939 (line-move (- arg) nil nil try-vscroll)
5940 ((beginning-of-buffer end-of-buffer)
5941 (signal (car err) (cdr err))))
5942 (line-move (- arg) nil nil try-vscroll))
5943 nil)
5945 (defcustom track-eol nil
5946 "Non-nil means vertical motion starting at end of line keeps to ends of lines.
5947 This means moving to the end of each line moved onto.
5948 The beginning of a blank line does not count as the end of a line.
5949 This has no effect when the variable `line-move-visual' is non-nil."
5950 :type 'boolean
5951 :group 'editing-basics)
5953 (defcustom goal-column nil
5954 "Semipermanent goal column for vertical motion, as set by \\[set-goal-column], or nil.
5955 A non-nil setting overrides the variable `line-move-visual', which see."
5956 :type '(choice integer
5957 (const :tag "None" nil))
5958 :group 'editing-basics)
5959 (make-variable-buffer-local 'goal-column)
5961 (defvar temporary-goal-column 0
5962 "Current goal column for vertical motion.
5963 It is the column where point was at the start of the current run
5964 of vertical motion commands.
5966 When moving by visual lines via the function `line-move-visual', it is a cons
5967 cell (COL . HSCROLL), where COL is the x-position, in pixels,
5968 divided by the default column width, and HSCROLL is the number of
5969 columns by which window is scrolled from left margin.
5971 When the `track-eol' feature is doing its job, the value is
5972 `most-positive-fixnum'.")
5974 (defvar last--line-number-width 0
5975 "Last value of width used for displaying line numbers.
5976 Used internally by `line-move-visual'.")
5978 (defcustom line-move-ignore-invisible t
5979 "Non-nil means commands that move by lines ignore invisible newlines.
5980 When this option is non-nil, \\[next-line], \\[previous-line], \\[move-end-of-line], and \\[move-beginning-of-line] behave
5981 as if newlines that are invisible didn't exist, and count
5982 only visible newlines. Thus, moving across 2 newlines
5983 one of which is invisible will be counted as a one-line move.
5984 Also, a non-nil value causes invisible text to be ignored when
5985 counting columns for the purposes of keeping point in the same
5986 column by \\[next-line] and \\[previous-line].
5988 Outline mode sets this."
5989 :type 'boolean
5990 :group 'editing-basics)
5992 (defcustom line-move-visual t
5993 "When non-nil, `line-move' moves point by visual lines.
5994 This movement is based on where the cursor is displayed on the
5995 screen, instead of relying on buffer contents alone. It takes
5996 into account variable-width characters and line continuation.
5997 If nil, `line-move' moves point by logical lines.
5998 A non-nil setting of `goal-column' overrides the value of this variable
5999 and forces movement by logical lines.
6000 A window that is horizontally scrolled also forces movement by logical
6001 lines."
6002 :type 'boolean
6003 :group 'editing-basics
6004 :version "23.1")
6006 ;; Only used if display-graphic-p.
6007 (declare-function font-info "font.c" (name &optional frame))
6009 (defun default-font-height ()
6010 "Return the height in pixels of the current buffer's default face font.
6012 If the default font is remapped (see `face-remapping-alist'), the
6013 function returns the height of the remapped face."
6014 (let ((default-font (face-font 'default)))
6015 (cond
6016 ((and (display-multi-font-p)
6017 ;; Avoid calling font-info if the frame's default font was
6018 ;; not changed since the frame was created. That's because
6019 ;; font-info is expensive for some fonts, see bug #14838.
6020 (not (string= (frame-parameter nil 'font) default-font)))
6021 (aref (font-info default-font) 3))
6022 (t (frame-char-height)))))
6024 (defun default-font-width ()
6025 "Return the width in pixels of the current buffer's default face font.
6027 If the default font is remapped (see `face-remapping-alist'), the
6028 function returns the width of the remapped face."
6029 (let ((default-font (face-font 'default)))
6030 (cond
6031 ((and (display-multi-font-p)
6032 ;; Avoid calling font-info if the frame's default font was
6033 ;; not changed since the frame was created. That's because
6034 ;; font-info is expensive for some fonts, see bug #14838.
6035 (not (string= (frame-parameter nil 'font) default-font)))
6036 (let* ((info (font-info (face-font 'default)))
6037 (width (aref info 11)))
6038 (if (> width 0)
6039 width
6040 (aref info 10))))
6041 (t (frame-char-width)))))
6043 (defun default-line-height ()
6044 "Return the pixel height of current buffer's default-face text line.
6046 The value includes `line-spacing', if any, defined for the buffer
6047 or the frame."
6048 (let ((dfh (default-font-height))
6049 (lsp (if (display-graphic-p)
6050 (or line-spacing
6051 (default-value 'line-spacing)
6052 (frame-parameter nil 'line-spacing)
6054 0)))
6055 (if (floatp lsp)
6056 (setq lsp (truncate (* (frame-char-height) lsp))))
6057 (+ dfh lsp)))
6059 (defun window-screen-lines ()
6060 "Return the number of screen lines in the text area of the selected window.
6062 This is different from `window-text-height' in that this function counts
6063 lines in units of the height of the font used by the default face displayed
6064 in the window, not in units of the frame's default font, and also accounts
6065 for `line-spacing', if any, defined for the window's buffer or frame.
6067 The value is a floating-point number."
6068 (let ((edges (window-inside-pixel-edges))
6069 (dlh (default-line-height)))
6070 (/ (float (- (nth 3 edges) (nth 1 edges))) dlh)))
6072 ;; Returns non-nil if partial move was done.
6073 (defun line-move-partial (arg noerror &optional _to-end)
6074 (if (< arg 0)
6075 ;; Move backward (up).
6076 ;; If already vscrolled, reduce vscroll
6077 (let ((vs (window-vscroll nil t))
6078 (dlh (default-line-height)))
6079 (when (> vs dlh)
6080 (set-window-vscroll nil (- vs dlh) t)))
6082 ;; Move forward (down).
6083 (let* ((lh (window-line-height -1))
6084 (rowh (car lh))
6085 (vpos (nth 1 lh))
6086 (ypos (nth 2 lh))
6087 (rbot (nth 3 lh))
6088 (this-lh (window-line-height))
6089 (this-height (car this-lh))
6090 (this-ypos (nth 2 this-lh))
6091 (dlh (default-line-height))
6092 (wslines (window-screen-lines))
6093 (edges (window-inside-pixel-edges))
6094 (winh (- (nth 3 edges) (nth 1 edges) 1))
6095 py vs last-line)
6096 (if (> (mod wslines 1.0) 0.0)
6097 (setq wslines (round (+ wslines 0.5))))
6098 (when (or (null lh)
6099 (>= rbot dlh)
6100 (<= ypos (- dlh))
6101 (null this-lh)
6102 (<= this-ypos (- dlh)))
6103 (unless lh
6104 (let ((wend (pos-visible-in-window-p t nil t)))
6105 (setq rbot (nth 3 wend)
6106 rowh (nth 4 wend)
6107 vpos (nth 5 wend))))
6108 (unless this-lh
6109 (let ((wstart (pos-visible-in-window-p nil nil t)))
6110 (setq this-ypos (nth 2 wstart)
6111 this-height (nth 4 wstart))))
6112 (setq py
6113 (or (nth 1 this-lh)
6114 (let ((ppos (posn-at-point))
6115 col-row)
6116 (setq col-row (posn-actual-col-row ppos))
6117 (if col-row
6118 (- (cdr col-row) (window-vscroll))
6119 (cdr (posn-col-row ppos))))))
6120 ;; VPOS > 0 means the last line is only partially visible.
6121 ;; But if the part that is visible is at least as tall as the
6122 ;; default font, that means the line is actually fully
6123 ;; readable, and something like line-spacing is hidden. So in
6124 ;; that case we accept the last line in the window as still
6125 ;; visible, and consider the margin as starting one line
6126 ;; later.
6127 (if (and vpos (> vpos 0))
6128 (if (and rowh
6129 (>= rowh (default-font-height))
6130 (< rowh dlh))
6131 (setq last-line (min (- wslines scroll-margin) vpos))
6132 (setq last-line (min (- wslines scroll-margin 1) (1- vpos)))))
6133 (cond
6134 ;; If last line of window is fully visible, and vscrolling
6135 ;; more would make this line invisible, move forward.
6136 ((and (or (< (setq vs (window-vscroll nil t)) dlh)
6137 (null this-height)
6138 (<= this-height dlh))
6139 (or (null rbot) (= rbot 0)))
6140 nil)
6141 ;; If cursor is not in the bottom scroll margin, and the
6142 ;; current line is not too tall, move forward.
6143 ((and (or (null this-height) (<= this-height winh))
6144 vpos
6145 (> vpos 0)
6146 (< py last-line))
6147 nil)
6148 ;; When already vscrolled, we vscroll some more if we can,
6149 ;; or clear vscroll and move forward at end of tall image.
6150 ((> vs 0)
6151 (when (or (and rbot (> rbot 0))
6152 (and this-height (> this-height dlh)))
6153 (set-window-vscroll nil (+ vs dlh) t)))
6154 ;; If cursor just entered the bottom scroll margin, move forward,
6155 ;; but also optionally vscroll one line so redisplay won't recenter.
6156 ((and vpos
6157 (> vpos 0)
6158 (= py last-line))
6159 ;; Don't vscroll if the partially-visible line at window
6160 ;; bottom is not too tall (a.k.a. "just one more text
6161 ;; line"): in that case, we do want redisplay to behave
6162 ;; normally, i.e. recenter or whatever.
6164 ;; Note: ROWH + RBOT from the value returned by
6165 ;; pos-visible-in-window-p give the total height of the
6166 ;; partially-visible glyph row at the end of the window. As
6167 ;; we are dealing with floats, we disregard sub-pixel
6168 ;; discrepancies between that and DLH.
6169 (if (and rowh rbot (>= (- (+ rowh rbot) winh) 1))
6170 (set-window-vscroll nil dlh t))
6171 (line-move-1 arg noerror)
6173 ;; If there are lines above the last line, scroll-up one line.
6174 ((and vpos (> vpos 0))
6175 (scroll-up 1)
6177 ;; Finally, start vscroll.
6179 (set-window-vscroll nil dlh t)))))))
6182 ;; This is like line-move-1 except that it also performs
6183 ;; vertical scrolling of tall images if appropriate.
6184 ;; That is not really a clean thing to do, since it mixes
6185 ;; scrolling with cursor motion. But so far we don't have
6186 ;; a cleaner solution to the problem of making C-n do something
6187 ;; useful given a tall image.
6188 (defun line-move (arg &optional noerror _to-end try-vscroll)
6189 "Move forward ARG lines.
6190 If NOERROR, don't signal an error if we can't move ARG lines.
6191 TO-END is unused.
6192 TRY-VSCROLL controls whether to vscroll tall lines: if either
6193 `auto-window-vscroll' or TRY-VSCROLL is nil, this function will
6194 not vscroll."
6195 (if noninteractive
6196 (line-move-1 arg noerror)
6197 (unless (and auto-window-vscroll try-vscroll
6198 ;; Only vscroll for single line moves
6199 (= (abs arg) 1)
6200 ;; Under scroll-conservatively, the display engine
6201 ;; does this better.
6202 (zerop scroll-conservatively)
6203 ;; But don't vscroll in a keyboard macro.
6204 (not defining-kbd-macro)
6205 (not executing-kbd-macro)
6206 (line-move-partial arg noerror))
6207 (set-window-vscroll nil 0 t)
6208 (if (and line-move-visual
6209 ;; Display-based column are incompatible with goal-column.
6210 (not goal-column)
6211 ;; When the text in the window is scrolled to the left,
6212 ;; display-based motion doesn't make sense (because each
6213 ;; logical line occupies exactly one screen line).
6214 (not (> (window-hscroll) 0))
6215 ;; Likewise when the text _was_ scrolled to the left
6216 ;; when the current run of vertical motion commands
6217 ;; started.
6218 (not (and (memq last-command
6219 `(next-line previous-line ,this-command))
6220 auto-hscroll-mode
6221 (numberp temporary-goal-column)
6222 (>= temporary-goal-column
6223 (- (window-width) hscroll-margin)))))
6224 (prog1 (line-move-visual arg noerror)
6225 ;; If we moved into a tall line, set vscroll to make
6226 ;; scrolling through tall images more smooth.
6227 (let ((lh (line-pixel-height))
6228 (edges (window-inside-pixel-edges))
6229 (dlh (default-line-height))
6230 winh)
6231 (setq winh (- (nth 3 edges) (nth 1 edges) 1))
6232 (if (and (< arg 0)
6233 (< (point) (window-start))
6234 (> lh winh))
6235 (set-window-vscroll
6237 (- lh dlh) t))))
6238 (line-move-1 arg noerror)))))
6240 ;; Display-based alternative to line-move-1.
6241 ;; Arg says how many lines to move. The value is t if we can move the
6242 ;; specified number of lines.
6243 (defun line-move-visual (arg &optional noerror)
6244 "Move ARG lines forward.
6245 If NOERROR, don't signal an error if we can't move that many lines."
6246 (let ((opoint (point))
6247 (hscroll (window-hscroll))
6248 (lnum-width (line-number-display-width t))
6249 target-hscroll)
6250 ;; Check if the previous command was a line-motion command, or if
6251 ;; we were called from some other command.
6252 (if (and (consp temporary-goal-column)
6253 (memq last-command `(next-line previous-line ,this-command)))
6254 ;; If so, there's no need to reset `temporary-goal-column',
6255 ;; but we may need to hscroll.
6256 (progn
6257 (if (or (/= (cdr temporary-goal-column) hscroll)
6258 (> (cdr temporary-goal-column) 0))
6259 (setq target-hscroll (cdr temporary-goal-column)))
6260 ;; Update the COLUMN part of temporary-goal-column if the
6261 ;; line-number display changed its width since the last
6262 ;; time.
6263 (setq temporary-goal-column
6264 (cons (+ (car temporary-goal-column)
6265 (/ (float (- lnum-width last--line-number-width))
6266 (frame-char-width)))
6267 (cdr temporary-goal-column)))
6268 (setq last--line-number-width lnum-width))
6269 ;; Otherwise, we should reset `temporary-goal-column'.
6270 (let ((posn (posn-at-point))
6271 x-pos)
6272 (cond
6273 ;; Handle the `overflow-newline-into-fringe' case
6274 ;; (left-fringe is for the R2L case):
6275 ((memq (nth 1 posn) '(right-fringe left-fringe))
6276 (setq temporary-goal-column (cons (window-width) hscroll)))
6277 ((car (posn-x-y posn))
6278 (setq x-pos (car (posn-x-y posn)))
6279 ;; In R2L lines, the X pixel coordinate is measured from the
6280 ;; left edge of the window, but columns are still counted
6281 ;; from the logical-order beginning of the line, i.e. from
6282 ;; the right edge in this case. We need to adjust for that.
6283 (if (eq (current-bidi-paragraph-direction) 'right-to-left)
6284 (setq x-pos (- (window-body-width nil t) 1 x-pos)))
6285 (setq temporary-goal-column
6286 (cons (/ (float x-pos)
6287 (frame-char-width))
6288 hscroll)))
6289 (executing-kbd-macro
6290 ;; When we move beyond the first/last character visible in
6291 ;; the window, posn-at-point will return nil, so we need to
6292 ;; approximate the goal column as below.
6293 (setq temporary-goal-column
6294 (mod (current-column) (window-text-width)))))))
6295 (if target-hscroll
6296 (set-window-hscroll (selected-window) target-hscroll))
6297 ;; vertical-motion can move more than it was asked to if it moves
6298 ;; across display strings with newlines. We don't want to ring
6299 ;; the bell and announce beginning/end of buffer in that case.
6300 (or (and (or (and (>= arg 0)
6301 (>= (vertical-motion
6302 (cons (or goal-column
6303 (if (consp temporary-goal-column)
6304 (car temporary-goal-column)
6305 temporary-goal-column))
6306 arg))
6307 arg))
6308 (and (< arg 0)
6309 (<= (vertical-motion
6310 (cons (or goal-column
6311 (if (consp temporary-goal-column)
6312 (car temporary-goal-column)
6313 temporary-goal-column))
6314 arg))
6315 arg)))
6316 (or (>= arg 0)
6317 (/= (point) opoint)
6318 ;; If the goal column lies on a display string,
6319 ;; `vertical-motion' advances the cursor to the end
6320 ;; of the string. For arg < 0, this can cause the
6321 ;; cursor to get stuck. (Bug#3020).
6322 (= (vertical-motion arg) arg)))
6323 (unless noerror
6324 (signal (if (< arg 0) 'beginning-of-buffer 'end-of-buffer)
6325 nil)))))
6327 ;; This is the guts of next-line and previous-line.
6328 ;; Arg says how many lines to move.
6329 ;; The value is t if we can move the specified number of lines.
6330 (defun line-move-1 (arg &optional noerror _to-end)
6331 ;; Don't run any point-motion hooks, and disregard intangibility,
6332 ;; for intermediate positions.
6333 (let ((inhibit-point-motion-hooks t)
6334 (opoint (point))
6335 (orig-arg arg))
6336 (if (consp temporary-goal-column)
6337 (setq temporary-goal-column (+ (car temporary-goal-column)
6338 (cdr temporary-goal-column))))
6339 (unwind-protect
6340 (progn
6341 (if (not (memq last-command '(next-line previous-line)))
6342 (setq temporary-goal-column
6343 (if (and track-eol (eolp)
6344 ;; Don't count beg of empty line as end of line
6345 ;; unless we just did explicit end-of-line.
6346 (or (not (bolp)) (eq last-command 'move-end-of-line)))
6347 most-positive-fixnum
6348 (current-column))))
6350 (if (not (or (integerp selective-display)
6351 line-move-ignore-invisible))
6352 ;; Use just newline characters.
6353 ;; Set ARG to 0 if we move as many lines as requested.
6354 (or (if (> arg 0)
6355 (progn (if (> arg 1) (forward-line (1- arg)))
6356 ;; This way of moving forward ARG lines
6357 ;; verifies that we have a newline after the last one.
6358 ;; It doesn't get confused by intangible text.
6359 (end-of-line)
6360 (if (zerop (forward-line 1))
6361 (setq arg 0)))
6362 (and (zerop (forward-line arg))
6363 (bolp)
6364 (setq arg 0)))
6365 (unless noerror
6366 (signal (if (< arg 0)
6367 'beginning-of-buffer
6368 'end-of-buffer)
6369 nil)))
6370 ;; Move by arg lines, but ignore invisible ones.
6371 (let (done)
6372 (while (and (> arg 0) (not done))
6373 ;; If the following character is currently invisible,
6374 ;; skip all characters with that same `invisible' property value.
6375 (while (and (not (eobp)) (invisible-p (point)))
6376 (goto-char (next-char-property-change (point))))
6377 ;; Move a line.
6378 ;; We don't use `end-of-line', since we want to escape
6379 ;; from field boundaries occurring exactly at point.
6380 (goto-char (constrain-to-field
6381 (let ((inhibit-field-text-motion t))
6382 (line-end-position))
6383 (point) t t
6384 'inhibit-line-move-field-capture))
6385 ;; If there's no invisibility here, move over the newline.
6386 (cond
6387 ((eobp)
6388 (if (not noerror)
6389 (signal 'end-of-buffer nil)
6390 (setq done t)))
6391 ((and (> arg 1) ;; Use vertical-motion for last move
6392 (not (integerp selective-display))
6393 (not (invisible-p (point))))
6394 ;; We avoid vertical-motion when possible
6395 ;; because that has to fontify.
6396 (forward-line 1))
6397 ;; Otherwise move a more sophisticated way.
6398 ((zerop (vertical-motion 1))
6399 (if (not noerror)
6400 (signal 'end-of-buffer nil)
6401 (setq done t))))
6402 (unless done
6403 (setq arg (1- arg))))
6404 ;; The logic of this is the same as the loop above,
6405 ;; it just goes in the other direction.
6406 (while (and (< arg 0) (not done))
6407 ;; For completely consistency with the forward-motion
6408 ;; case, we should call beginning-of-line here.
6409 ;; However, if point is inside a field and on a
6410 ;; continued line, the call to (vertical-motion -1)
6411 ;; below won't move us back far enough; then we return
6412 ;; to the same column in line-move-finish, and point
6413 ;; gets stuck -- cyd
6414 (forward-line 0)
6415 (cond
6416 ((bobp)
6417 (if (not noerror)
6418 (signal 'beginning-of-buffer nil)
6419 (setq done t)))
6420 ((and (< arg -1) ;; Use vertical-motion for last move
6421 (not (integerp selective-display))
6422 (not (invisible-p (1- (point)))))
6423 (forward-line -1))
6424 ((zerop (vertical-motion -1))
6425 (if (not noerror)
6426 (signal 'beginning-of-buffer nil)
6427 (setq done t))))
6428 (unless done
6429 (setq arg (1+ arg))
6430 (while (and ;; Don't move over previous invis lines
6431 ;; if our target is the middle of this line.
6432 (or (zerop (or goal-column temporary-goal-column))
6433 (< arg 0))
6434 (not (bobp)) (invisible-p (1- (point))))
6435 (goto-char (previous-char-property-change (point))))))))
6436 ;; This is the value the function returns.
6437 (= arg 0))
6439 (cond ((> arg 0)
6440 ;; If we did not move down as far as desired, at least go
6441 ;; to end of line. Be sure to call point-entered and
6442 ;; point-left-hooks.
6443 (let* ((npoint (prog1 (line-end-position)
6444 (goto-char opoint)))
6445 (inhibit-point-motion-hooks nil))
6446 (goto-char npoint)))
6447 ((< arg 0)
6448 ;; If we did not move up as far as desired,
6449 ;; at least go to beginning of line.
6450 (let* ((npoint (prog1 (line-beginning-position)
6451 (goto-char opoint)))
6452 (inhibit-point-motion-hooks nil))
6453 (goto-char npoint)))
6455 (line-move-finish (or goal-column temporary-goal-column)
6456 opoint (> orig-arg 0)))))))
6458 (defun line-move-finish (column opoint forward)
6459 (let ((repeat t))
6460 (while repeat
6461 ;; Set REPEAT to t to repeat the whole thing.
6462 (setq repeat nil)
6464 (let (new
6465 (old (point))
6466 (line-beg (line-beginning-position))
6467 (line-end
6468 ;; Compute the end of the line
6469 ;; ignoring effectively invisible newlines.
6470 (save-excursion
6471 ;; Like end-of-line but ignores fields.
6472 (skip-chars-forward "^\n")
6473 (while (and (not (eobp)) (invisible-p (point)))
6474 (goto-char (next-char-property-change (point)))
6475 (skip-chars-forward "^\n"))
6476 (point))))
6478 ;; Move to the desired column.
6479 (if (and line-move-visual
6480 (not (or truncate-lines truncate-partial-width-windows)))
6481 ;; Under line-move-visual, goal-column should be
6482 ;; interpreted in units of the frame's canonical character
6483 ;; width, which is exactly what vertical-motion does.
6484 (vertical-motion (cons column 0))
6485 (line-move-to-column (truncate column)))
6487 ;; Corner case: suppose we start out in a field boundary in
6488 ;; the middle of a continued line. When we get to
6489 ;; line-move-finish, point is at the start of a new *screen*
6490 ;; line but the same text line; then line-move-to-column would
6491 ;; move us backwards. Test using C-n with point on the "x" in
6492 ;; (insert "a" (propertize "x" 'field t) (make-string 89 ?y))
6493 (and forward
6494 (< (point) old)
6495 (goto-char old))
6497 (setq new (point))
6499 ;; Process intangibility within a line.
6500 ;; With inhibit-point-motion-hooks bound to nil, a call to
6501 ;; goto-char moves point past intangible text.
6503 ;; However, inhibit-point-motion-hooks controls both the
6504 ;; intangibility and the point-entered/point-left hooks. The
6505 ;; following hack avoids calling the point-* hooks
6506 ;; unnecessarily. Note that we move *forward* past intangible
6507 ;; text when the initial and final points are the same.
6508 (goto-char new)
6509 (let ((inhibit-point-motion-hooks nil))
6510 (goto-char new)
6512 ;; If intangibility moves us to a different (later) place
6513 ;; in the same line, use that as the destination.
6514 (if (<= (point) line-end)
6515 (setq new (point))
6516 ;; If that position is "too late",
6517 ;; try the previous allowable position.
6518 ;; See if it is ok.
6519 (backward-char)
6520 (if (if forward
6521 ;; If going forward, don't accept the previous
6522 ;; allowable position if it is before the target line.
6523 (< line-beg (point))
6524 ;; If going backward, don't accept the previous
6525 ;; allowable position if it is still after the target line.
6526 (<= (point) line-end))
6527 (setq new (point))
6528 ;; As a last resort, use the end of the line.
6529 (setq new line-end))))
6531 ;; Now move to the updated destination, processing fields
6532 ;; as well as intangibility.
6533 (goto-char opoint)
6534 (let ((inhibit-point-motion-hooks nil))
6535 (goto-char
6536 ;; Ignore field boundaries if the initial and final
6537 ;; positions have the same `field' property, even if the
6538 ;; fields are non-contiguous. This seems to be "nicer"
6539 ;; behavior in many situations.
6540 (if (eq (get-char-property new 'field)
6541 (get-char-property opoint 'field))
6543 (constrain-to-field new opoint t t
6544 'inhibit-line-move-field-capture))))
6546 ;; If all this moved us to a different line,
6547 ;; retry everything within that new line.
6548 (when (or (< (point) line-beg) (> (point) line-end))
6549 ;; Repeat the intangibility and field processing.
6550 (setq repeat t))))))
6552 (defun line-move-to-column (col)
6553 "Try to find column COL, considering invisibility.
6554 This function works only in certain cases,
6555 because what we really need is for `move-to-column'
6556 and `current-column' to be able to ignore invisible text."
6557 (if (zerop col)
6558 (beginning-of-line)
6559 (move-to-column col))
6561 (when (and line-move-ignore-invisible
6562 (not (bolp)) (invisible-p (1- (point))))
6563 (let ((normal-location (point))
6564 (normal-column (current-column)))
6565 ;; If the following character is currently invisible,
6566 ;; skip all characters with that same `invisible' property value.
6567 (while (and (not (eobp))
6568 (invisible-p (point)))
6569 (goto-char (next-char-property-change (point))))
6570 ;; Have we advanced to a larger column position?
6571 (if (> (current-column) normal-column)
6572 ;; We have made some progress towards the desired column.
6573 ;; See if we can make any further progress.
6574 (line-move-to-column (+ (current-column) (- col normal-column)))
6575 ;; Otherwise, go to the place we originally found
6576 ;; and move back over invisible text.
6577 ;; that will get us to the same place on the screen
6578 ;; but with a more reasonable buffer position.
6579 (goto-char normal-location)
6580 (let ((line-beg
6581 ;; We want the real line beginning, so it's consistent
6582 ;; with bolp below, otherwise we might infloop.
6583 (let ((inhibit-field-text-motion t))
6584 (line-beginning-position))))
6585 (while (and (not (bolp)) (invisible-p (1- (point))))
6586 (goto-char (previous-char-property-change (point) line-beg))))))))
6588 (defun move-end-of-line (arg)
6589 "Move point to end of current line as displayed.
6590 With argument ARG not nil or 1, move forward ARG - 1 lines first.
6591 If point reaches the beginning or end of buffer, it stops there.
6593 To ignore the effects of the `intangible' text or overlay
6594 property, bind `inhibit-point-motion-hooks' to t.
6595 If there is an image in the current line, this function
6596 disregards newlines that are part of the text on which the image
6597 rests."
6598 (interactive "^p")
6599 (or arg (setq arg 1))
6600 (let (done)
6601 (while (not done)
6602 (let ((newpos
6603 (save-excursion
6604 (let ((goal-column 0)
6605 (line-move-visual nil))
6606 (and (line-move arg t)
6607 ;; With bidi reordering, we may not be at bol,
6608 ;; so make sure we are.
6609 (skip-chars-backward "^\n")
6610 (not (bobp))
6611 (progn
6612 (while (and (not (bobp)) (invisible-p (1- (point))))
6613 (goto-char (previous-single-char-property-change
6614 (point) 'invisible)))
6615 (backward-char 1)))
6616 (point)))))
6617 (goto-char newpos)
6618 (if (and (> (point) newpos)
6619 (eq (preceding-char) ?\n))
6620 (backward-char 1)
6621 (if (and (> (point) newpos) (not (eobp))
6622 (not (eq (following-char) ?\n)))
6623 ;; If we skipped something intangible and now we're not
6624 ;; really at eol, keep going.
6625 (setq arg 1)
6626 (setq done t)))))))
6628 (defun move-beginning-of-line (arg)
6629 "Move point to beginning of current line as displayed.
6630 \(If there's an image in the line, this disregards newlines
6631 which are part of the text that the image rests on.)
6633 With argument ARG not nil or 1, move forward ARG - 1 lines first.
6634 If point reaches the beginning or end of buffer, it stops there.
6635 \(But if the buffer doesn't end in a newline, it stops at the
6636 beginning of the last line.)
6637 To ignore intangibility, bind `inhibit-point-motion-hooks' to t."
6638 (interactive "^p")
6639 (or arg (setq arg 1))
6641 (let ((orig (point))
6642 first-vis first-vis-field-value)
6644 ;; Move by lines, if ARG is not 1 (the default).
6645 (if (/= arg 1)
6646 (let ((line-move-visual nil))
6647 (line-move (1- arg) t)))
6649 ;; Move to beginning-of-line, ignoring fields and invisible text.
6650 (skip-chars-backward "^\n")
6651 (while (and (not (bobp)) (invisible-p (1- (point))))
6652 (goto-char (previous-char-property-change (point)))
6653 (skip-chars-backward "^\n"))
6655 ;; Now find first visible char in the line.
6656 (while (and (< (point) orig) (invisible-p (point)))
6657 (goto-char (next-char-property-change (point) orig)))
6658 (setq first-vis (point))
6660 ;; See if fields would stop us from reaching FIRST-VIS.
6661 (setq first-vis-field-value
6662 (constrain-to-field first-vis orig (/= arg 1) t nil))
6664 (goto-char (if (/= first-vis-field-value first-vis)
6665 ;; If yes, obey them.
6666 first-vis-field-value
6667 ;; Otherwise, move to START with attention to fields.
6668 ;; (It is possible that fields never matter in this case.)
6669 (constrain-to-field (point) orig
6670 (/= arg 1) t nil)))))
6673 ;; Many people have said they rarely use this feature, and often type
6674 ;; it by accident. Maybe it shouldn't even be on a key.
6675 (put 'set-goal-column 'disabled t)
6677 (defun set-goal-column (arg)
6678 "Set the current horizontal position as a goal for \\[next-line] and \\[previous-line].
6679 Those commands will move to this position in the line moved to
6680 rather than trying to keep the same horizontal position.
6681 With a non-nil argument ARG, clears out the goal column
6682 so that \\[next-line] and \\[previous-line] resume vertical motion.
6683 The goal column is stored in the variable `goal-column'.
6684 This is a buffer-local setting."
6685 (interactive "P")
6686 (if arg
6687 (progn
6688 (setq goal-column nil)
6689 (message "No goal column"))
6690 (setq goal-column (current-column))
6691 ;; The older method below can be erroneous if `set-goal-column' is bound
6692 ;; to a sequence containing %
6693 ;;(message (substitute-command-keys
6694 ;;"Goal column %d (use \\[set-goal-column] with an arg to unset it)")
6695 ;;goal-column)
6696 (message "%s"
6697 (concat
6698 (format "Goal column %d " goal-column)
6699 (substitute-command-keys
6700 "(use \\[set-goal-column] with an arg to unset it)")))
6703 nil)
6705 ;;; Editing based on visual lines, as opposed to logical lines.
6707 (defun end-of-visual-line (&optional n)
6708 "Move point to end of current visual line.
6709 With argument N not nil or 1, move forward N - 1 visual lines first.
6710 If point reaches the beginning or end of buffer, it stops there.
6711 To ignore intangibility, bind `inhibit-point-motion-hooks' to t."
6712 (interactive "^p")
6713 (or n (setq n 1))
6714 (if (/= n 1)
6715 (let ((line-move-visual t))
6716 (line-move (1- n) t)))
6717 ;; Unlike `move-beginning-of-line', `move-end-of-line' doesn't
6718 ;; constrain to field boundaries, so we don't either.
6719 (vertical-motion (cons (window-width) 0)))
6721 (defun beginning-of-visual-line (&optional n)
6722 "Move point to beginning of current visual line.
6723 With argument N not nil or 1, move forward N - 1 visual lines first.
6724 If point reaches the beginning or end of buffer, it stops there.
6725 \(But if the buffer doesn't end in a newline, it stops at the
6726 beginning of the last visual line.)
6727 To ignore intangibility, bind `inhibit-point-motion-hooks' to t."
6728 (interactive "^p")
6729 (or n (setq n 1))
6730 (let ((opoint (point)))
6731 (if (/= n 1)
6732 (let ((line-move-visual t))
6733 (line-move (1- n) t)))
6734 (vertical-motion 0)
6735 ;; Constrain to field boundaries, like `move-beginning-of-line'.
6736 (goto-char (constrain-to-field (point) opoint (/= n 1)))))
6738 (defun kill-visual-line (&optional arg)
6739 "Kill the rest of the visual line.
6740 With prefix argument ARG, kill that many visual lines from point.
6741 If ARG is negative, kill visual lines backward.
6742 If ARG is zero, kill the text before point on the current visual
6743 line.
6745 If you want to append the killed line to the last killed text,
6746 use \\[append-next-kill] before \\[kill-line].
6748 If the buffer is read-only, Emacs will beep and refrain from deleting
6749 the line, but put the line in the kill ring anyway. This means that
6750 you can use this command to copy text from a read-only buffer.
6751 \(If the variable `kill-read-only-ok' is non-nil, then this won't
6752 even beep.)"
6753 (interactive "P")
6754 ;; Like in `kill-line', it's better to move point to the other end
6755 ;; of the kill before killing.
6756 (let ((opoint (point))
6757 (kill-whole-line (and kill-whole-line (bolp))))
6758 (if arg
6759 (vertical-motion (prefix-numeric-value arg))
6760 (end-of-visual-line 1)
6761 (if (= (point) opoint)
6762 (vertical-motion 1)
6763 ;; Skip any trailing whitespace at the end of the visual line.
6764 ;; We used to do this only if `show-trailing-whitespace' is
6765 ;; nil, but that's wrong; the correct thing would be to check
6766 ;; whether the trailing whitespace is highlighted. But, it's
6767 ;; OK to just do this unconditionally.
6768 (skip-chars-forward " \t")))
6769 (kill-region opoint (if (and kill-whole-line (= (following-char) ?\n))
6770 (1+ (point))
6771 (point)))))
6773 (defun next-logical-line (&optional arg try-vscroll)
6774 "Move cursor vertically down ARG lines.
6775 This is identical to `next-line', except that it always moves
6776 by logical lines instead of visual lines, ignoring the value of
6777 the variable `line-move-visual'."
6778 (interactive "^p\np")
6779 (let ((line-move-visual nil))
6780 (with-no-warnings
6781 (next-line arg try-vscroll))))
6783 (defun previous-logical-line (&optional arg try-vscroll)
6784 "Move cursor vertically up ARG lines.
6785 This is identical to `previous-line', except that it always moves
6786 by logical lines instead of visual lines, ignoring the value of
6787 the variable `line-move-visual'."
6788 (interactive "^p\np")
6789 (let ((line-move-visual nil))
6790 (with-no-warnings
6791 (previous-line arg try-vscroll))))
6793 (defgroup visual-line nil
6794 "Editing based on visual lines."
6795 :group 'convenience
6796 :version "23.1")
6798 (defvar visual-line-mode-map
6799 (let ((map (make-sparse-keymap)))
6800 (define-key map [remap kill-line] 'kill-visual-line)
6801 (define-key map [remap move-beginning-of-line] 'beginning-of-visual-line)
6802 (define-key map [remap move-end-of-line] 'end-of-visual-line)
6803 ;; These keybindings interfere with xterm function keys. Are
6804 ;; there any other suitable bindings?
6805 ;; (define-key map "\M-[" 'previous-logical-line)
6806 ;; (define-key map "\M-]" 'next-logical-line)
6807 map))
6809 (defcustom visual-line-fringe-indicators '(nil nil)
6810 "How fringe indicators are shown for wrapped lines in `visual-line-mode'.
6811 The value should be a list of the form (LEFT RIGHT), where LEFT
6812 and RIGHT are symbols representing the bitmaps to display, to
6813 indicate wrapped lines, in the left and right fringes respectively.
6814 See also `fringe-indicator-alist'.
6815 The default is not to display fringe indicators for wrapped lines.
6816 This variable does not affect fringe indicators displayed for
6817 other purposes."
6818 :type '(list (choice (const :tag "Hide left indicator" nil)
6819 (const :tag "Left curly arrow" left-curly-arrow)
6820 (symbol :tag "Other bitmap"))
6821 (choice (const :tag "Hide right indicator" nil)
6822 (const :tag "Right curly arrow" right-curly-arrow)
6823 (symbol :tag "Other bitmap")))
6824 :set (lambda (symbol value)
6825 (dolist (buf (buffer-list))
6826 (with-current-buffer buf
6827 (when (and (boundp 'visual-line-mode)
6828 (symbol-value 'visual-line-mode))
6829 (setq fringe-indicator-alist
6830 (cons (cons 'continuation value)
6831 (assq-delete-all
6832 'continuation
6833 (copy-tree fringe-indicator-alist)))))))
6834 (set-default symbol value)))
6836 (defvar visual-line--saved-state nil)
6838 (define-minor-mode visual-line-mode
6839 "Toggle visual line based editing (Visual Line mode) in the current buffer.
6840 Interactively, with a prefix argument, enable
6841 Visual Line mode if the prefix argument is positive,
6842 and disable it otherwise. If called from Lisp, toggle
6843 the mode if ARG is `toggle', disable the mode if ARG is
6844 a non-positive integer, and enable the mode otherwise
6845 \(including if ARG is omitted or nil or a positive integer).
6847 When Visual Line mode is enabled, `word-wrap' is turned on in
6848 this buffer, and simple editing commands are redefined to act on
6849 visual lines, not logical lines. See Info node `Visual Line
6850 Mode' for details."
6851 :keymap visual-line-mode-map
6852 :group 'visual-line
6853 :lighter " Wrap"
6854 (if visual-line-mode
6855 (progn
6856 (set (make-local-variable 'visual-line--saved-state) nil)
6857 ;; Save the local values of some variables, to be restored if
6858 ;; visual-line-mode is turned off.
6859 (dolist (var '(line-move-visual truncate-lines
6860 truncate-partial-width-windows
6861 word-wrap fringe-indicator-alist))
6862 (if (local-variable-p var)
6863 (push (cons var (symbol-value var))
6864 visual-line--saved-state)))
6865 (set (make-local-variable 'line-move-visual) t)
6866 (set (make-local-variable 'truncate-partial-width-windows) nil)
6867 (setq truncate-lines nil
6868 word-wrap t
6869 fringe-indicator-alist
6870 (cons (cons 'continuation visual-line-fringe-indicators)
6871 fringe-indicator-alist)))
6872 (kill-local-variable 'line-move-visual)
6873 (kill-local-variable 'word-wrap)
6874 (kill-local-variable 'truncate-lines)
6875 (kill-local-variable 'truncate-partial-width-windows)
6876 (kill-local-variable 'fringe-indicator-alist)
6877 (dolist (saved visual-line--saved-state)
6878 (set (make-local-variable (car saved)) (cdr saved)))
6879 (kill-local-variable 'visual-line--saved-state)))
6881 (defun turn-on-visual-line-mode ()
6882 (visual-line-mode 1))
6884 (define-globalized-minor-mode global-visual-line-mode
6885 visual-line-mode turn-on-visual-line-mode)
6888 (defun transpose-chars (arg)
6889 "Interchange characters around point, moving forward one character.
6890 With prefix arg ARG, effect is to take character before point
6891 and drag it forward past ARG other characters (backward if ARG negative).
6892 If no argument and at end of line, the previous two chars are exchanged."
6893 (interactive "*P")
6894 (when (and (null arg) (eolp) (not (bobp))
6895 (not (get-text-property (1- (point)) 'read-only)))
6896 (forward-char -1))
6897 (transpose-subr 'forward-char (prefix-numeric-value arg)))
6899 (defun transpose-words (arg)
6900 "Interchange words around point, leaving point at end of them.
6901 With prefix arg ARG, effect is to take word before or around point
6902 and drag it forward past ARG other words (backward if ARG negative).
6903 If ARG is zero, the words around or after point and around or after mark
6904 are interchanged."
6905 ;; FIXME: `foo a!nd bar' should transpose into `bar and foo'.
6906 (interactive "*p")
6907 (transpose-subr 'forward-word arg))
6909 (defun transpose-sexps (arg)
6910 "Like \\[transpose-chars] (`transpose-chars'), but applies to sexps.
6911 Unlike `transpose-words', point must be between the two sexps and not
6912 in the middle of a sexp to be transposed.
6913 With non-zero prefix arg ARG, effect is to take the sexp before point
6914 and drag it forward past ARG other sexps (backward if ARG is negative).
6915 If ARG is zero, the sexps ending at or after point and at or after mark
6916 are interchanged."
6917 (interactive "*p")
6918 (transpose-subr
6919 (lambda (arg)
6920 ;; Here we should try to simulate the behavior of
6921 ;; (cons (progn (forward-sexp x) (point))
6922 ;; (progn (forward-sexp (- x)) (point)))
6923 ;; Except that we don't want to rely on the second forward-sexp
6924 ;; putting us back to where we want to be, since forward-sexp-function
6925 ;; might do funny things like infix-precedence.
6926 (if (if (> arg 0)
6927 (looking-at "\\sw\\|\\s_")
6928 (and (not (bobp))
6929 (save-excursion (forward-char -1) (looking-at "\\sw\\|\\s_"))))
6930 ;; Jumping over a symbol. We might be inside it, mind you.
6931 (progn (funcall (if (> arg 0)
6932 'skip-syntax-backward 'skip-syntax-forward)
6933 "w_")
6934 (cons (save-excursion (forward-sexp arg) (point)) (point)))
6935 ;; Otherwise, we're between sexps. Take a step back before jumping
6936 ;; to make sure we'll obey the same precedence no matter which direction
6937 ;; we're going.
6938 (funcall (if (> arg 0) 'skip-syntax-backward 'skip-syntax-forward) " .")
6939 (cons (save-excursion (forward-sexp arg) (point))
6940 (progn (while (or (forward-comment (if (> arg 0) 1 -1))
6941 (not (zerop (funcall (if (> arg 0)
6942 'skip-syntax-forward
6943 'skip-syntax-backward)
6944 ".")))))
6945 (point)))))
6946 arg 'special))
6948 (defun transpose-lines (arg)
6949 "Exchange current line and previous line, leaving point after both.
6950 With argument ARG, takes previous line and moves it past ARG lines.
6951 With argument 0, interchanges line point is in with line mark is in."
6952 (interactive "*p")
6953 (transpose-subr (function
6954 (lambda (arg)
6955 (if (> arg 0)
6956 (progn
6957 ;; Move forward over ARG lines,
6958 ;; but create newlines if necessary.
6959 (setq arg (forward-line arg))
6960 (if (/= (preceding-char) ?\n)
6961 (setq arg (1+ arg)))
6962 (if (> arg 0)
6963 (newline arg)))
6964 (forward-line arg))))
6965 arg))
6967 ;; FIXME seems to leave point BEFORE the current object when ARG = 0,
6968 ;; which seems inconsistent with the ARG /= 0 case.
6969 ;; FIXME document SPECIAL.
6970 (defun transpose-subr (mover arg &optional special)
6971 "Subroutine to do the work of transposing objects.
6972 Works for lines, sentences, paragraphs, etc. MOVER is a function that
6973 moves forward by units of the given object (e.g. forward-sentence,
6974 forward-paragraph). If ARG is zero, exchanges the current object
6975 with the one containing mark. If ARG is an integer, moves the
6976 current object past ARG following (if ARG is positive) or
6977 preceding (if ARG is negative) objects, leaving point after the
6978 current object."
6979 (let ((aux (if special mover
6980 (lambda (x)
6981 (cons (progn (funcall mover x) (point))
6982 (progn (funcall mover (- x)) (point))))))
6983 pos1 pos2)
6984 (cond
6985 ((= arg 0)
6986 (save-excursion
6987 (setq pos1 (funcall aux 1))
6988 (goto-char (or (mark) (error "No mark set in this buffer")))
6989 (setq pos2 (funcall aux 1))
6990 (transpose-subr-1 pos1 pos2))
6991 (exchange-point-and-mark))
6992 ((> arg 0)
6993 (setq pos1 (funcall aux -1))
6994 (setq pos2 (funcall aux arg))
6995 (transpose-subr-1 pos1 pos2)
6996 (goto-char (car pos2)))
6998 (setq pos1 (funcall aux -1))
6999 (goto-char (car pos1))
7000 (setq pos2 (funcall aux arg))
7001 (transpose-subr-1 pos1 pos2)
7002 (goto-char (+ (car pos2) (- (cdr pos1) (car pos1))))))))
7004 (defun transpose-subr-1 (pos1 pos2)
7005 (when (> (car pos1) (cdr pos1)) (setq pos1 (cons (cdr pos1) (car pos1))))
7006 (when (> (car pos2) (cdr pos2)) (setq pos2 (cons (cdr pos2) (car pos2))))
7007 (when (> (car pos1) (car pos2))
7008 (let ((swap pos1))
7009 (setq pos1 pos2 pos2 swap)))
7010 (if (> (cdr pos1) (car pos2)) (error "Don't have two things to transpose"))
7011 (atomic-change-group
7012 ;; This sequence of insertions attempts to preserve marker
7013 ;; positions at the start and end of the transposed objects.
7014 (let* ((word (buffer-substring (car pos2) (cdr pos2)))
7015 (len1 (- (cdr pos1) (car pos1)))
7016 (len2 (length word))
7017 (boundary (make-marker)))
7018 (set-marker boundary (car pos2))
7019 (goto-char (cdr pos1))
7020 (insert-before-markers word)
7021 (setq word (delete-and-extract-region (car pos1) (+ (car pos1) len1)))
7022 (goto-char boundary)
7023 (insert word)
7024 (goto-char (+ boundary len1))
7025 (delete-region (point) (+ (point) len2))
7026 (set-marker boundary nil))))
7028 (defun backward-word (&optional arg)
7029 "Move backward until encountering the beginning of a word.
7030 With argument ARG, do this that many times.
7031 If ARG is omitted or nil, move point backward one word.
7033 The word boundaries are normally determined by the buffer's
7034 syntax table and character script (according to
7035 `char-script-table'), but `find-word-boundary-function-table',
7036 such as set up by `subword-mode', can change that. If a Lisp
7037 program needs to move by words determined strictly by the syntax
7038 table, it should use `backward-word-strictly' instead. See Info
7039 node `(elisp) Word Motion' for details."
7040 (interactive "^p")
7041 (forward-word (- (or arg 1))))
7043 (defun mark-word (&optional arg allow-extend)
7044 "Set mark ARG words away from point.
7045 The place mark goes is the same place \\[forward-word] would
7046 move to with the same argument.
7047 Interactively, if this command is repeated
7048 or (in Transient Mark mode) if the mark is active,
7049 it marks the next ARG words after the ones already marked."
7050 (interactive "P\np")
7051 (cond ((and allow-extend
7052 (or (and (eq last-command this-command) (mark t))
7053 (region-active-p)))
7054 (setq arg (if arg (prefix-numeric-value arg)
7055 (if (< (mark) (point)) -1 1)))
7056 (set-mark
7057 (save-excursion
7058 (goto-char (mark))
7059 (forward-word arg)
7060 (point))))
7062 (push-mark
7063 (save-excursion
7064 (forward-word (prefix-numeric-value arg))
7065 (point))
7066 nil t))))
7068 (defun kill-word (arg)
7069 "Kill characters forward until encountering the end of a word.
7070 With argument ARG, do this that many times."
7071 (interactive "p")
7072 (kill-region (point) (progn (forward-word arg) (point))))
7074 (defun backward-kill-word (arg)
7075 "Kill characters backward until encountering the beginning of a word.
7076 With argument ARG, do this that many times."
7077 (interactive "p")
7078 (kill-word (- arg)))
7080 (defun current-word (&optional strict really-word)
7081 "Return the word at or near point, as a string.
7082 The return value includes no text properties.
7084 If optional arg STRICT is non-nil, return nil unless point is
7085 within or adjacent to a word, otherwise look for a word within
7086 point's line. If there is no word anywhere on point's line, the
7087 value is nil regardless of STRICT.
7089 By default, this function treats as a single word any sequence of
7090 characters that have either word or symbol syntax. If optional
7091 arg REALLY-WORD is non-nil, only characters of word syntax can
7092 constitute a word."
7093 (save-excursion
7094 (let* ((oldpoint (point)) (start (point)) (end (point))
7095 (syntaxes (if really-word "w" "w_"))
7096 (not-syntaxes (concat "^" syntaxes)))
7097 (skip-syntax-backward syntaxes) (setq start (point))
7098 (goto-char oldpoint)
7099 (skip-syntax-forward syntaxes) (setq end (point))
7100 (when (and (eq start oldpoint) (eq end oldpoint)
7101 ;; Point is neither within nor adjacent to a word.
7102 (not strict))
7103 ;; Look for preceding word in same line.
7104 (skip-syntax-backward not-syntaxes (line-beginning-position))
7105 (if (bolp)
7106 ;; No preceding word in same line.
7107 ;; Look for following word in same line.
7108 (progn
7109 (skip-syntax-forward not-syntaxes (line-end-position))
7110 (setq start (point))
7111 (skip-syntax-forward syntaxes)
7112 (setq end (point)))
7113 (setq end (point))
7114 (skip-syntax-backward syntaxes)
7115 (setq start (point))))
7116 ;; If we found something nonempty, return it as a string.
7117 (unless (= start end)
7118 (buffer-substring-no-properties start end)))))
7120 (defcustom fill-prefix nil
7121 "String for filling to insert at front of new line, or nil for none."
7122 :type '(choice (const :tag "None" nil)
7123 string)
7124 :group 'fill)
7125 (make-variable-buffer-local 'fill-prefix)
7126 (put 'fill-prefix 'safe-local-variable 'string-or-null-p)
7128 (defcustom auto-fill-inhibit-regexp nil
7129 "Regexp to match lines which should not be auto-filled."
7130 :type '(choice (const :tag "None" nil)
7131 regexp)
7132 :group 'fill)
7134 (defun do-auto-fill ()
7135 "The default value for `normal-auto-fill-function'.
7136 This is the default auto-fill function, some major modes use a different one.
7137 Returns t if it really did any work."
7138 (let (fc justify give-up
7139 (fill-prefix fill-prefix))
7140 (if (or (not (setq justify (current-justification)))
7141 (null (setq fc (current-fill-column)))
7142 (and (eq justify 'left)
7143 (<= (current-column) fc))
7144 (and auto-fill-inhibit-regexp
7145 (save-excursion (beginning-of-line)
7146 (looking-at auto-fill-inhibit-regexp))))
7147 nil ;; Auto-filling not required
7148 (if (memq justify '(full center right))
7149 (save-excursion (unjustify-current-line)))
7151 ;; Choose a fill-prefix automatically.
7152 (when (and adaptive-fill-mode
7153 (or (null fill-prefix) (string= fill-prefix "")))
7154 (let ((prefix
7155 (fill-context-prefix
7156 (save-excursion (fill-forward-paragraph -1) (point))
7157 (save-excursion (fill-forward-paragraph 1) (point)))))
7158 (and prefix (not (equal prefix ""))
7159 ;; Use auto-indentation rather than a guessed empty prefix.
7160 (not (and fill-indent-according-to-mode
7161 (string-match "\\`[ \t]*\\'" prefix)))
7162 (setq fill-prefix prefix))))
7164 (while (and (not give-up) (> (current-column) fc))
7165 ;; Determine where to split the line.
7166 (let ((fill-point
7167 (save-excursion
7168 (beginning-of-line)
7169 ;; Don't split earlier in the line than the length of the
7170 ;; fill prefix, since the resulting line would be longer.
7171 (when fill-prefix
7172 (move-to-column (string-width fill-prefix)))
7173 (let ((after-prefix (point)))
7174 (move-to-column (1+ fc))
7175 (fill-move-to-break-point after-prefix)
7176 (point)))))
7178 ;; See whether the place we found is any good.
7179 (if (save-excursion
7180 (goto-char fill-point)
7181 (or (bolp)
7182 ;; There is no use breaking at end of line.
7183 (save-excursion (skip-chars-forward " ") (eolp))
7184 ;; Don't split right after a comment starter
7185 ;; since we would just make another comment starter.
7186 (and comment-start-skip
7187 (let ((limit (point)))
7188 (beginning-of-line)
7189 (and (re-search-forward comment-start-skip
7190 limit t)
7191 (eq (point) limit))))))
7192 ;; No good place to break => stop trying.
7193 (setq give-up t)
7194 ;; Ok, we have a useful place to break the line. Do it.
7195 (let ((prev-column (current-column)))
7196 ;; If point is at the fill-point, do not `save-excursion'.
7197 ;; Otherwise, if a comment prefix or fill-prefix is inserted,
7198 ;; point will end up before it rather than after it.
7199 (if (save-excursion
7200 (skip-chars-backward " \t")
7201 (= (point) fill-point))
7202 (default-indent-new-line t)
7203 (save-excursion
7204 (goto-char fill-point)
7205 (default-indent-new-line t)))
7206 ;; Now do justification, if required
7207 (if (not (eq justify 'left))
7208 (save-excursion
7209 (end-of-line 0)
7210 (justify-current-line justify nil t)))
7211 ;; If making the new line didn't reduce the hpos of
7212 ;; the end of the line, then give up now;
7213 ;; trying again will not help.
7214 (if (>= (current-column) prev-column)
7215 (setq give-up t))))))
7216 ;; Justify last line.
7217 (justify-current-line justify t t)
7218 t)))
7220 (defvar comment-line-break-function 'comment-indent-new-line
7221 "Mode-specific function which line breaks and continues a comment.
7222 This function is called during auto-filling when a comment syntax
7223 is defined.
7224 The function should take a single optional argument, which is a flag
7225 indicating whether it should use soft newlines.")
7227 (defun default-indent-new-line (&optional soft)
7228 "Break line at point and indent.
7229 If a comment syntax is defined, call `comment-indent-new-line'.
7231 The inserted newline is marked hard if variable `use-hard-newlines' is true,
7232 unless optional argument SOFT is non-nil."
7233 (interactive)
7234 (if comment-start
7235 (funcall comment-line-break-function soft)
7236 ;; Insert the newline before removing empty space so that markers
7237 ;; get preserved better.
7238 (if soft (insert-and-inherit ?\n) (newline 1))
7239 (save-excursion (forward-char -1) (delete-horizontal-space))
7240 (delete-horizontal-space)
7242 (if (and fill-prefix (not adaptive-fill-mode))
7243 ;; Blindly trust a non-adaptive fill-prefix.
7244 (progn
7245 (indent-to-left-margin)
7246 (insert-before-markers-and-inherit fill-prefix))
7248 (cond
7249 ;; If there's an adaptive prefix, use it unless we're inside
7250 ;; a comment and the prefix is not a comment starter.
7251 (fill-prefix
7252 (indent-to-left-margin)
7253 (insert-and-inherit fill-prefix))
7254 ;; If we're not inside a comment, just try to indent.
7255 (t (indent-according-to-mode))))))
7257 (defun internal-auto-fill ()
7258 "The function called by `self-insert-command' to perform auto-filling."
7259 (when (or (not comment-start)
7260 (not comment-auto-fill-only-comments)
7261 (nth 4 (syntax-ppss)))
7262 (funcall auto-fill-function)))
7264 (defvar normal-auto-fill-function 'do-auto-fill
7265 "The function to use for `auto-fill-function' if Auto Fill mode is turned on.
7266 Some major modes set this.")
7268 (put 'auto-fill-function :minor-mode-function 'auto-fill-mode)
7269 ;; `functions' and `hooks' are usually unsafe to set, but setting
7270 ;; auto-fill-function to nil in a file-local setting is safe and
7271 ;; can be useful to prevent auto-filling.
7272 (put 'auto-fill-function 'safe-local-variable 'null)
7274 (define-minor-mode auto-fill-mode
7275 "Toggle automatic line breaking (Auto Fill mode).
7276 Interactively, with a prefix argument, enable
7277 Auto Fill mode if the prefix argument is positive,
7278 and disable it otherwise. If called from Lisp, toggle
7279 the mode if ARG is `toggle', disable the mode if ARG is
7280 a non-positive integer, and enable the mode otherwise
7281 \(including if ARG is omitted or nil or a positive integer).
7283 When Auto Fill mode is enabled, inserting a space at a column
7284 beyond `current-fill-column' automatically breaks the line at a
7285 previous space.
7287 When `auto-fill-mode' is on, the `auto-fill-function' variable is
7288 non-nil.
7290 The value of `normal-auto-fill-function' specifies the function to use
7291 for `auto-fill-function' when turning Auto Fill mode on."
7292 :variable (auto-fill-function
7293 . (lambda (v) (setq auto-fill-function
7294 (if v normal-auto-fill-function)))))
7296 ;; This holds a document string used to document auto-fill-mode.
7297 (defun auto-fill-function ()
7298 "Automatically break line at a previous space, in insertion of text."
7299 nil)
7301 (defun turn-on-auto-fill ()
7302 "Unconditionally turn on Auto Fill mode."
7303 (auto-fill-mode 1))
7305 (defun turn-off-auto-fill ()
7306 "Unconditionally turn off Auto Fill mode."
7307 (auto-fill-mode -1))
7309 (custom-add-option 'text-mode-hook 'turn-on-auto-fill)
7311 (defun set-fill-column (arg)
7312 "Set `fill-column' to specified argument.
7313 Use \\[universal-argument] followed by a number to specify a column.
7314 Just \\[universal-argument] as argument means to use the current column."
7315 (interactive
7316 (list (or current-prefix-arg
7317 ;; We used to use current-column silently, but C-x f is too easily
7318 ;; typed as a typo for C-x C-f, so we turned it into an error and
7319 ;; now an interactive prompt.
7320 (read-number "Set fill-column to: " (current-column)))))
7321 (if (consp arg)
7322 (setq arg (current-column)))
7323 (if (not (integerp arg))
7324 ;; Disallow missing argument; it's probably a typo for C-x C-f.
7325 (error "set-fill-column requires an explicit argument")
7326 (message "Fill column set to %d (was %d)" arg fill-column)
7327 (setq fill-column arg)))
7329 (defun set-selective-display (arg)
7330 "Set `selective-display' to ARG; clear it if no arg.
7331 When the value of `selective-display' is a number > 0,
7332 lines whose indentation is >= that value are not displayed.
7333 The variable `selective-display' has a separate value for each buffer."
7334 (interactive "P")
7335 (if (eq selective-display t)
7336 (error "selective-display already in use for marked lines"))
7337 (let ((current-vpos
7338 (save-restriction
7339 (narrow-to-region (point-min) (point))
7340 (goto-char (window-start))
7341 (vertical-motion (window-height)))))
7342 (setq selective-display
7343 (and arg (prefix-numeric-value arg)))
7344 (recenter current-vpos))
7345 (set-window-start (selected-window) (window-start))
7346 (princ "selective-display set to " t)
7347 (prin1 selective-display t)
7348 (princ "." t))
7350 (defvaralias 'indicate-unused-lines 'indicate-empty-lines)
7352 (defun toggle-truncate-lines (&optional arg)
7353 "Toggle truncating of long lines for the current buffer.
7354 When truncating is off, long lines are folded.
7355 With prefix argument ARG, truncate long lines if ARG is positive,
7356 otherwise fold them. Note that in side-by-side windows, this
7357 command has no effect if `truncate-partial-width-windows' is
7358 non-nil."
7359 (interactive "P")
7360 (setq truncate-lines
7361 (if (null arg)
7362 (not truncate-lines)
7363 (> (prefix-numeric-value arg) 0)))
7364 (force-mode-line-update)
7365 (unless truncate-lines
7366 (let ((buffer (current-buffer)))
7367 (walk-windows (lambda (window)
7368 (if (eq buffer (window-buffer window))
7369 (set-window-hscroll window 0)))
7370 nil t)))
7371 (message "Truncate long lines %s"
7372 (if truncate-lines "enabled" "disabled")))
7374 (defun toggle-word-wrap (&optional arg)
7375 "Toggle whether to use word-wrapping for continuation lines.
7376 With prefix argument ARG, wrap continuation lines at word boundaries
7377 if ARG is positive, otherwise wrap them at the right screen edge.
7378 This command toggles the value of `word-wrap'. It has no effect
7379 if long lines are truncated."
7380 (interactive "P")
7381 (setq word-wrap
7382 (if (null arg)
7383 (not word-wrap)
7384 (> (prefix-numeric-value arg) 0)))
7385 (force-mode-line-update)
7386 (message "Word wrapping %s"
7387 (if word-wrap "enabled" "disabled")))
7389 (defvar overwrite-mode-textual (purecopy " Ovwrt")
7390 "The string displayed in the mode line when in overwrite mode.")
7391 (defvar overwrite-mode-binary (purecopy " Bin Ovwrt")
7392 "The string displayed in the mode line when in binary overwrite mode.")
7394 (define-minor-mode overwrite-mode
7395 "Toggle Overwrite mode.
7396 With a prefix argument ARG, enable Overwrite mode if ARG is
7397 positive, and disable it otherwise. If called from Lisp, enable
7398 the mode if ARG is omitted or nil.
7400 When Overwrite mode is enabled, printing characters typed in
7401 replace existing text on a one-for-one basis, rather than pushing
7402 it to the right. At the end of a line, such characters extend
7403 the line. Before a tab, such characters insert until the tab is
7404 filled in. \\[quoted-insert] still inserts characters in
7405 overwrite mode; this is supposed to make it easier to insert
7406 characters when necessary."
7407 :variable (overwrite-mode
7408 . (lambda (v) (setq overwrite-mode (if v 'overwrite-mode-textual)))))
7410 (define-minor-mode binary-overwrite-mode
7411 "Toggle Binary Overwrite mode.
7412 With a prefix argument ARG, enable Binary Overwrite mode if ARG
7413 is positive, and disable it otherwise. If called from Lisp,
7414 enable the mode if ARG is omitted or nil.
7416 When Binary Overwrite mode is enabled, printing characters typed
7417 in replace existing text. Newlines are not treated specially, so
7418 typing at the end of a line joins the line to the next, with the
7419 typed character between them. Typing before a tab character
7420 simply replaces the tab with the character typed.
7421 \\[quoted-insert] replaces the text at the cursor, just as
7422 ordinary typing characters do.
7424 Note that Binary Overwrite mode is not its own minor mode; it is
7425 a specialization of overwrite mode, entered by setting the
7426 `overwrite-mode' variable to `overwrite-mode-binary'."
7427 :variable (overwrite-mode
7428 . (lambda (v) (setq overwrite-mode (if v 'overwrite-mode-binary)))))
7430 (define-minor-mode line-number-mode
7431 "Toggle line number display in the mode line (Line Number mode).
7432 With a prefix argument ARG, enable Line Number mode if ARG is
7433 positive, and disable it otherwise. If called from Lisp, enable
7434 the mode if ARG is omitted or nil.
7436 Line numbers do not appear for very large buffers and buffers
7437 with very long lines; see variables `line-number-display-limit'
7438 and `line-number-display-limit-width'."
7439 :init-value t :global t :group 'mode-line)
7441 (define-minor-mode column-number-mode
7442 "Toggle column number display in the mode line (Column Number mode).
7443 With a prefix argument ARG, enable Column Number mode if ARG is
7444 positive, and disable it otherwise.
7446 If called from Lisp, enable the mode if ARG is omitted or nil."
7447 :global t :group 'mode-line)
7449 (define-minor-mode size-indication-mode
7450 "Toggle buffer size display in the mode line (Size Indication mode).
7451 With a prefix argument ARG, enable Size Indication mode if ARG is
7452 positive, and disable it otherwise.
7454 If called from Lisp, enable the mode if ARG is omitted or nil."
7455 :global t :group 'mode-line)
7457 (define-minor-mode auto-save-mode
7458 "Toggle auto-saving in the current buffer (Auto Save mode).
7459 With a prefix argument ARG, enable Auto Save mode if ARG is
7460 positive, and disable it otherwise.
7462 If called from Lisp, enable the mode if ARG is omitted or nil."
7463 :variable ((and buffer-auto-save-file-name
7464 ;; If auto-save is off because buffer has shrunk,
7465 ;; then toggling should turn it on.
7466 (>= buffer-saved-size 0))
7467 . (lambda (val)
7468 (setq buffer-auto-save-file-name
7469 (cond
7470 ((null val) nil)
7471 ((and buffer-file-name auto-save-visited-file-name
7472 (not buffer-read-only))
7473 buffer-file-name)
7474 (t (make-auto-save-file-name))))))
7475 ;; If -1 was stored here, to temporarily turn off saving,
7476 ;; turn it back on.
7477 (and (< buffer-saved-size 0)
7478 (setq buffer-saved-size 0)))
7480 (defgroup paren-blinking nil
7481 "Blinking matching of parens and expressions."
7482 :prefix "blink-matching-"
7483 :group 'paren-matching)
7485 (defcustom blink-matching-paren t
7486 "Non-nil means show matching open-paren when close-paren is inserted.
7487 If t, highlight the paren. If `jump', briefly move cursor to its
7488 position. If `jump-offscreen', move cursor there even if the
7489 position is off screen. With any other non-nil value, the
7490 off-screen position of the opening paren will be shown in the
7491 echo area."
7492 :type '(choice
7493 (const :tag "Disable" nil)
7494 (const :tag "Highlight" t)
7495 (const :tag "Move cursor" jump)
7496 (const :tag "Move cursor, even if off screen" jump-offscreen))
7497 :group 'paren-blinking)
7499 (defcustom blink-matching-paren-on-screen t
7500 "Non-nil means show matching open-paren when it is on screen.
7501 If nil, don't show it (but the open-paren can still be shown
7502 in the echo area when it is off screen).
7504 This variable has no effect if `blink-matching-paren' is nil.
7505 \(In that case, the open-paren is never shown.)
7506 It is also ignored if `show-paren-mode' is enabled."
7507 :type 'boolean
7508 :group 'paren-blinking)
7510 (defcustom blink-matching-paren-distance (* 100 1024)
7511 "If non-nil, maximum distance to search backwards for matching open-paren.
7512 If nil, search stops at the beginning of the accessible portion of the buffer."
7513 :version "23.2" ; 25->100k
7514 :type '(choice (const nil) integer)
7515 :group 'paren-blinking)
7517 (defcustom blink-matching-delay 1
7518 "Time in seconds to delay after showing a matching paren."
7519 :type 'number
7520 :group 'paren-blinking)
7522 (defcustom blink-matching-paren-dont-ignore-comments nil
7523 "If nil, `blink-matching-paren' ignores comments.
7524 More precisely, when looking for the matching parenthesis,
7525 it skips the contents of comments that end before point."
7526 :type 'boolean
7527 :group 'paren-blinking)
7529 (defun blink-matching-check-mismatch (start end)
7530 "Return whether or not START...END are matching parens.
7531 END is the current point and START is the blink position.
7532 START might be nil if no matching starter was found.
7533 Returns non-nil if we find there is a mismatch."
7534 (let* ((end-syntax (syntax-after (1- end)))
7535 (matching-paren (and (consp end-syntax)
7536 (eq (syntax-class end-syntax) 5)
7537 (cdr end-syntax))))
7538 ;; For self-matched chars like " and $, we can't know when they're
7539 ;; mismatched or unmatched, so we can only do it for parens.
7540 (when matching-paren
7541 (not (and start
7543 (eq (char-after start) matching-paren)
7544 ;; The cdr might hold a new paren-class info rather than
7545 ;; a matching-char info, in which case the two CDRs
7546 ;; should match.
7547 (eq matching-paren (cdr-safe (syntax-after start)))))))))
7549 (defvar blink-matching-check-function #'blink-matching-check-mismatch
7550 "Function to check parentheses mismatches.
7551 The function takes two arguments (START and END) where START is the
7552 position just before the opening token and END is the position right after.
7553 START can be nil, if it was not found.
7554 The function should return non-nil if the two tokens do not match.")
7556 (defvar blink-matching--overlay
7557 (let ((ol (make-overlay (point) (point) nil t)))
7558 (overlay-put ol 'face 'show-paren-match)
7559 (delete-overlay ol)
7561 "Overlay used to highlight the matching paren.")
7563 (defun blink-matching-open ()
7564 "Momentarily highlight the beginning of the sexp before point."
7565 (interactive)
7566 (when (and (not (bobp))
7567 blink-matching-paren)
7568 (let* ((oldpos (point))
7569 (message-log-max nil) ; Don't log messages about paren matching.
7570 (blinkpos
7571 (save-excursion
7572 (save-restriction
7573 (if blink-matching-paren-distance
7574 (narrow-to-region
7575 (max (minibuffer-prompt-end) ;(point-min) unless minibuf.
7576 (- (point) blink-matching-paren-distance))
7577 oldpos))
7578 (let ((parse-sexp-ignore-comments
7579 (and parse-sexp-ignore-comments
7580 (not blink-matching-paren-dont-ignore-comments))))
7581 (condition-case ()
7582 (progn
7583 (syntax-propertize (point))
7584 (forward-sexp -1)
7585 ;; backward-sexp skips backward over prefix chars,
7586 ;; so move back to the matching paren.
7587 (while (and (< (point) (1- oldpos))
7588 (let ((code (syntax-after (point))))
7589 (or (eq (syntax-class code) 6)
7590 (eq (logand 1048576 (car code))
7591 1048576))))
7592 (forward-char 1))
7593 (point))
7594 (error nil))))))
7595 (mismatch (funcall blink-matching-check-function blinkpos oldpos)))
7596 (cond
7597 (mismatch
7598 (if blinkpos
7599 (if (minibufferp)
7600 (minibuffer-message "Mismatched parentheses")
7601 (message "Mismatched parentheses"))
7602 (if (minibufferp)
7603 (minibuffer-message "No matching parenthesis found")
7604 (message "No matching parenthesis found"))))
7605 ((not blinkpos) nil)
7606 ((or
7607 (eq blink-matching-paren 'jump-offscreen)
7608 (pos-visible-in-window-p blinkpos))
7609 ;; Matching open within window, temporarily move to or highlight
7610 ;; char after blinkpos but only if `blink-matching-paren-on-screen'
7611 ;; is non-nil.
7612 (and blink-matching-paren-on-screen
7613 (not show-paren-mode)
7614 (if (memq blink-matching-paren '(jump jump-offscreen))
7615 (save-excursion
7616 (goto-char blinkpos)
7617 (sit-for blink-matching-delay))
7618 (unwind-protect
7619 (progn
7620 (move-overlay blink-matching--overlay blinkpos (1+ blinkpos)
7621 (current-buffer))
7622 (sit-for blink-matching-delay))
7623 (delete-overlay blink-matching--overlay)))))
7625 (let ((open-paren-line-string
7626 (save-excursion
7627 (goto-char blinkpos)
7628 ;; Show what precedes the open in its line, if anything.
7629 (cond
7630 ((save-excursion (skip-chars-backward " \t") (not (bolp)))
7631 (buffer-substring (line-beginning-position)
7632 (1+ blinkpos)))
7633 ;; Show what follows the open in its line, if anything.
7634 ((save-excursion
7635 (forward-char 1)
7636 (skip-chars-forward " \t")
7637 (not (eolp)))
7638 (buffer-substring blinkpos
7639 (line-end-position)))
7640 ;; Otherwise show the previous nonblank line,
7641 ;; if there is one.
7642 ((save-excursion (skip-chars-backward "\n \t") (not (bobp)))
7643 (concat
7644 (buffer-substring (progn
7645 (skip-chars-backward "\n \t")
7646 (line-beginning-position))
7647 (progn (end-of-line)
7648 (skip-chars-backward " \t")
7649 (point)))
7650 ;; Replace the newline and other whitespace with `...'.
7651 "..."
7652 (buffer-substring blinkpos (1+ blinkpos))))
7653 ;; There is nothing to show except the char itself.
7654 (t (buffer-substring blinkpos (1+ blinkpos)))))))
7655 (minibuffer-message
7656 "Matches %s"
7657 (substring-no-properties open-paren-line-string))))))))
7659 (defvar blink-paren-function 'blink-matching-open
7660 "Function called, if non-nil, whenever a close parenthesis is inserted.
7661 More precisely, a char with closeparen syntax is self-inserted.")
7663 (defun blink-paren-post-self-insert-function ()
7664 (when (and (eq (char-before) last-command-event) ; Sanity check.
7665 (memq (char-syntax last-command-event) '(?\) ?\$))
7666 blink-paren-function
7667 (not executing-kbd-macro)
7668 (not noninteractive)
7669 ;; Verify an even number of quoting characters precede the close.
7670 ;; FIXME: Also check if this parenthesis closes a comment as
7671 ;; can happen in Pascal and SML.
7672 (= 1 (logand 1 (- (point)
7673 (save-excursion
7674 (forward-char -1)
7675 (skip-syntax-backward "/\\")
7676 (point))))))
7677 (funcall blink-paren-function)))
7679 (put 'blink-paren-post-self-insert-function 'priority 100)
7681 (add-hook 'post-self-insert-hook #'blink-paren-post-self-insert-function
7682 ;; Most likely, this hook is nil, so this arg doesn't matter,
7683 ;; but I use it as a reminder that this function usually
7684 ;; likes to be run after others since it does
7685 ;; `sit-for'. That's also the reason it get a `priority' prop
7686 ;; of 100.
7687 'append)
7689 ;; This executes C-g typed while Emacs is waiting for a command.
7690 ;; Quitting out of a program does not go through here;
7691 ;; that happens in the maybe_quit function at the C code level.
7692 (defun keyboard-quit ()
7693 "Signal a `quit' condition.
7694 During execution of Lisp code, this character causes a quit directly.
7695 At top-level, as an editor command, this simply beeps."
7696 (interactive)
7697 ;; Avoid adding the region to the window selection.
7698 (setq saved-region-selection nil)
7699 (let (select-active-regions)
7700 (deactivate-mark))
7701 (if (fboundp 'kmacro-keyboard-quit)
7702 (kmacro-keyboard-quit))
7703 (when completion-in-region-mode
7704 (completion-in-region-mode -1))
7705 ;; Force the next redisplay cycle to remove the "Def" indicator from
7706 ;; all the mode lines.
7707 (if defining-kbd-macro
7708 (force-mode-line-update t))
7709 (setq defining-kbd-macro nil)
7710 (let ((debug-on-quit nil))
7711 (signal 'quit nil)))
7713 (defvar buffer-quit-function nil
7714 "Function to call to \"quit\" the current buffer, or nil if none.
7715 \\[keyboard-escape-quit] calls this function when its more local actions
7716 \(such as canceling a prefix argument, minibuffer or region) do not apply.")
7718 (defun keyboard-escape-quit ()
7719 "Exit the current \"mode\" (in a generalized sense of the word).
7720 This command can exit an interactive command such as `query-replace',
7721 can clear out a prefix argument or a region,
7722 can get out of the minibuffer or other recursive edit,
7723 cancel the use of the current buffer (for special-purpose buffers),
7724 or go back to just one window (by deleting all but the selected window)."
7725 (interactive)
7726 (cond ((eq last-command 'mode-exited) nil)
7727 ((region-active-p)
7728 (deactivate-mark))
7729 ((> (minibuffer-depth) 0)
7730 (abort-recursive-edit))
7731 (current-prefix-arg
7732 nil)
7733 ((> (recursion-depth) 0)
7734 (exit-recursive-edit))
7735 (buffer-quit-function
7736 (funcall buffer-quit-function))
7737 ((not (one-window-p t))
7738 (delete-other-windows))
7739 ((string-match "^ \\*" (buffer-name (current-buffer)))
7740 (bury-buffer))))
7742 (defun play-sound-file (file &optional volume device)
7743 "Play sound stored in FILE.
7744 VOLUME and DEVICE correspond to the keywords of the sound
7745 specification for `play-sound'."
7746 (interactive "fPlay sound file: ")
7747 (let ((sound (list :file file)))
7748 (if volume
7749 (plist-put sound :volume volume))
7750 (if device
7751 (plist-put sound :device device))
7752 (push 'sound sound)
7753 (play-sound sound)))
7756 (defcustom read-mail-command 'rmail
7757 "Your preference for a mail reading package.
7758 This is used by some keybindings which support reading mail.
7759 See also `mail-user-agent' concerning sending mail."
7760 :type '(radio (function-item :tag "Rmail" :format "%t\n" rmail)
7761 (function-item :tag "Gnus" :format "%t\n" gnus)
7762 (function-item :tag "Emacs interface to MH"
7763 :format "%t\n" mh-rmail)
7764 (function :tag "Other"))
7765 :version "21.1"
7766 :group 'mail)
7768 (defcustom mail-user-agent 'message-user-agent
7769 "Your preference for a mail composition package.
7770 Various Emacs Lisp packages (e.g. Reporter) require you to compose an
7771 outgoing email message. This variable lets you specify which
7772 mail-sending package you prefer.
7774 Valid values include:
7776 `message-user-agent' -- use the Message package.
7777 See Info node `(message)'.
7778 `sendmail-user-agent' -- use the Mail package.
7779 See Info node `(emacs)Sending Mail'.
7780 `mh-e-user-agent' -- use the Emacs interface to the MH mail system.
7781 See Info node `(mh-e)'.
7782 `gnus-user-agent' -- like `message-user-agent', but with Gnus
7783 paraphernalia if Gnus is running, particularly
7784 the Gcc: header for archiving.
7786 Additional valid symbols may be available; check with the author of
7787 your package for details. The function should return non-nil if it
7788 succeeds.
7790 See also `read-mail-command' concerning reading mail."
7791 :type '(radio (function-item :tag "Message package"
7792 :format "%t\n"
7793 message-user-agent)
7794 (function-item :tag "Mail package"
7795 :format "%t\n"
7796 sendmail-user-agent)
7797 (function-item :tag "Emacs interface to MH"
7798 :format "%t\n"
7799 mh-e-user-agent)
7800 (function-item :tag "Message with full Gnus features"
7801 :format "%t\n"
7802 gnus-user-agent)
7803 (function :tag "Other"))
7804 :version "23.2" ; sendmail->message
7805 :group 'mail)
7807 (defcustom compose-mail-user-agent-warnings t
7808 "If non-nil, `compose-mail' warns about changes in `mail-user-agent'.
7809 If the value of `mail-user-agent' is the default, and the user
7810 appears to have customizations applying to the old default,
7811 `compose-mail' issues a warning."
7812 :type 'boolean
7813 :version "23.2"
7814 :group 'mail)
7816 (defun rfc822-goto-eoh ()
7817 "If the buffer starts with a mail header, move point to the header's end.
7818 Otherwise, moves to `point-min'.
7819 The end of the header is the start of the next line, if there is one,
7820 else the end of the last line. This function obeys RFC822."
7821 (goto-char (point-min))
7822 (when (re-search-forward
7823 "^\\([:\n]\\|[^: \t\n]+[ \t\n]\\)" nil 'move)
7824 (goto-char (match-beginning 0))))
7826 ;; Used by Rmail (e.g., rmail-forward).
7827 (defvar mail-encode-mml nil
7828 "If non-nil, mail-user-agent's `sendfunc' command should mml-encode
7829 the outgoing message before sending it.")
7831 (defun compose-mail (&optional to subject other-headers continue
7832 switch-function yank-action send-actions
7833 return-action)
7834 "Start composing a mail message to send.
7835 This uses the user's chosen mail composition package
7836 as selected with the variable `mail-user-agent'.
7837 The optional arguments TO and SUBJECT specify recipients
7838 and the initial Subject field, respectively.
7840 OTHER-HEADERS is an alist specifying additional
7841 header fields. Elements look like (HEADER . VALUE) where both
7842 HEADER and VALUE are strings.
7844 CONTINUE, if non-nil, says to continue editing a message already
7845 being composed. Interactively, CONTINUE is the prefix argument.
7847 SWITCH-FUNCTION, if non-nil, is a function to use to
7848 switch to and display the buffer used for mail composition.
7850 YANK-ACTION, if non-nil, is an action to perform, if and when necessary,
7851 to insert the raw text of the message being replied to.
7852 It has the form (FUNCTION . ARGS). The user agent will apply
7853 FUNCTION to ARGS, to insert the raw text of the original message.
7854 \(The user agent will also run `mail-citation-hook', *after* the
7855 original text has been inserted in this way.)
7857 SEND-ACTIONS is a list of actions to call when the message is sent.
7858 Each action has the form (FUNCTION . ARGS).
7860 RETURN-ACTION, if non-nil, is an action for returning to the
7861 caller. It has the form (FUNCTION . ARGS). The function is
7862 called after the mail has been sent or put aside, and the mail
7863 buffer buried."
7864 (interactive
7865 (list nil nil nil current-prefix-arg))
7867 ;; In Emacs 23.2, the default value of `mail-user-agent' changed
7868 ;; from sendmail-user-agent to message-user-agent. Some users may
7869 ;; encounter incompatibilities. This hack tries to detect problems
7870 ;; and warn about them.
7871 (and compose-mail-user-agent-warnings
7872 (eq mail-user-agent 'message-user-agent)
7873 (let (warn-vars)
7874 (dolist (var '(mail-mode-hook mail-send-hook mail-setup-hook
7875 mail-yank-hooks mail-archive-file-name
7876 mail-default-reply-to mail-mailing-lists
7877 mail-self-blind))
7878 (and (boundp var)
7879 (symbol-value var)
7880 (push var warn-vars)))
7881 (when warn-vars
7882 (display-warning 'mail
7883 (format-message "\
7884 The default mail mode is now Message mode.
7885 You have the following Mail mode variable%s customized:
7886 \n %s\n\nTo use Mail mode, set `mail-user-agent' to sendmail-user-agent.
7887 To disable this warning, set `compose-mail-user-agent-warnings' to nil."
7888 (if (> (length warn-vars) 1) "s" "")
7889 (mapconcat 'symbol-name
7890 warn-vars " "))))))
7892 (let ((function (get mail-user-agent 'composefunc)))
7893 (funcall function to subject other-headers continue switch-function
7894 yank-action send-actions return-action)))
7896 (defun compose-mail-other-window (&optional to subject other-headers continue
7897 yank-action send-actions
7898 return-action)
7899 "Like \\[compose-mail], but edit the outgoing message in another window."
7900 (interactive (list nil nil nil current-prefix-arg))
7901 (compose-mail to subject other-headers continue
7902 'switch-to-buffer-other-window yank-action send-actions
7903 return-action))
7905 (defun compose-mail-other-frame (&optional to subject other-headers continue
7906 yank-action send-actions
7907 return-action)
7908 "Like \\[compose-mail], but edit the outgoing message in another frame."
7909 (interactive (list nil nil nil current-prefix-arg))
7910 (compose-mail to subject other-headers continue
7911 'switch-to-buffer-other-frame yank-action send-actions
7912 return-action))
7915 (defvar set-variable-value-history nil
7916 "History of values entered with `set-variable'.
7918 Maximum length of the history list is determined by the value
7919 of `history-length', which see.")
7921 (defun set-variable (variable value &optional make-local)
7922 "Set VARIABLE to VALUE. VALUE is a Lisp object.
7923 VARIABLE should be a user option variable name, a Lisp variable
7924 meant to be customized by users. You should enter VALUE in Lisp syntax,
7925 so if you want VALUE to be a string, you must surround it with doublequotes.
7926 VALUE is used literally, not evaluated.
7928 If VARIABLE has a `variable-interactive' property, that is used as if
7929 it were the arg to `interactive' (which see) to interactively read VALUE.
7931 If VARIABLE has been defined with `defcustom', then the type information
7932 in the definition is used to check that VALUE is valid.
7934 Note that this function is at heart equivalent to the basic `set' function.
7935 For a variable defined with `defcustom', it does not pay attention to
7936 any :set property that the variable might have (if you want that, use
7937 \\[customize-set-variable] instead).
7939 With a prefix argument, set VARIABLE to VALUE buffer-locally."
7940 (interactive
7941 (let* ((default-var (variable-at-point))
7942 (var (if (custom-variable-p default-var)
7943 (read-variable (format "Set variable (default %s): " default-var)
7944 default-var)
7945 (read-variable "Set variable: ")))
7946 (minibuffer-help-form '(describe-variable var))
7947 (prop (get var 'variable-interactive))
7948 (obsolete (car (get var 'byte-obsolete-variable)))
7949 (prompt (format "Set %s %s to value: " var
7950 (cond ((local-variable-p var)
7951 "(buffer-local)")
7952 ((or current-prefix-arg
7953 (local-variable-if-set-p var))
7954 "buffer-locally")
7955 (t "globally"))))
7956 (val (progn
7957 (when obsolete
7958 (message (concat "`%S' is obsolete; "
7959 (if (symbolp obsolete) "use `%S' instead" "%s"))
7960 var obsolete)
7961 (sit-for 3))
7962 (if prop
7963 ;; Use VAR's `variable-interactive' property
7964 ;; as an interactive spec for prompting.
7965 (call-interactively `(lambda (arg)
7966 (interactive ,prop)
7967 arg))
7968 (read-from-minibuffer prompt nil
7969 read-expression-map t
7970 'set-variable-value-history
7971 (format "%S" (symbol-value var)))))))
7972 (list var val current-prefix-arg)))
7974 (and (custom-variable-p variable)
7975 (not (get variable 'custom-type))
7976 (custom-load-symbol variable))
7977 (let ((type (get variable 'custom-type)))
7978 (when type
7979 ;; Match with custom type.
7980 (require 'cus-edit)
7981 (setq type (widget-convert type))
7982 (unless (widget-apply type :match value)
7983 (user-error "Value `%S' does not match type %S of %S"
7984 value (car type) variable))))
7986 (if make-local
7987 (make-local-variable variable))
7989 (set variable value)
7991 ;; Force a thorough redisplay for the case that the variable
7992 ;; has an effect on the display, like `tab-width' has.
7993 (force-mode-line-update))
7995 ;; Define the major mode for lists of completions.
7997 (defvar completion-list-mode-map
7998 (let ((map (make-sparse-keymap)))
7999 (define-key map [mouse-2] 'choose-completion)
8000 (define-key map [follow-link] 'mouse-face)
8001 (define-key map [down-mouse-2] nil)
8002 (define-key map "\C-m" 'choose-completion)
8003 (define-key map "\e\e\e" 'delete-completion-window)
8004 (define-key map [left] 'previous-completion)
8005 (define-key map [right] 'next-completion)
8006 (define-key map [?\t] 'next-completion)
8007 (define-key map [backtab] 'previous-completion)
8008 (define-key map "q" 'quit-window)
8009 (define-key map "z" 'kill-current-buffer)
8010 map)
8011 "Local map for completion list buffers.")
8013 ;; Completion mode is suitable only for specially formatted data.
8014 (put 'completion-list-mode 'mode-class 'special)
8016 (defvar completion-reference-buffer nil
8017 "Record the buffer that was current when the completion list was requested.
8018 This is a local variable in the completion list buffer.
8019 Initial value is nil to avoid some compiler warnings.")
8021 (defvar completion-no-auto-exit nil
8022 "Non-nil means `choose-completion-string' should never exit the minibuffer.
8023 This also applies to other functions such as `choose-completion'.")
8025 (defvar completion-base-position nil
8026 "Position of the base of the text corresponding to the shown completions.
8027 This variable is used in the *Completions* buffers.
8028 Its value is a list of the form (START END) where START is the place
8029 where the completion should be inserted and END (if non-nil) is the end
8030 of the text to replace. If END is nil, point is used instead.")
8032 (defvar completion-list-insert-choice-function #'completion--replace
8033 "Function to use to insert the text chosen in *Completions*.
8034 Called with three arguments (BEG END TEXT), it should replace the text
8035 between BEG and END with TEXT. Expected to be set buffer-locally
8036 in the *Completions* buffer.")
8038 (defvar completion-base-size nil
8039 "Number of chars before point not involved in completion.
8040 This is a local variable in the completion list buffer.
8041 It refers to the chars in the minibuffer if completing in the
8042 minibuffer, or in `completion-reference-buffer' otherwise.
8043 Only characters in the field at point are included.
8045 If nil, Emacs determines which part of the tail end of the
8046 buffer's text is involved in completion by comparing the text
8047 directly.")
8048 (make-obsolete-variable 'completion-base-size 'completion-base-position "23.2")
8050 (defun delete-completion-window ()
8051 "Delete the completion list window.
8052 Go to the window from which completion was requested."
8053 (interactive)
8054 (let ((buf completion-reference-buffer))
8055 (if (one-window-p t)
8056 (if (window-dedicated-p) (delete-frame))
8057 (delete-window (selected-window))
8058 (if (get-buffer-window buf)
8059 (select-window (get-buffer-window buf))))))
8061 (defun previous-completion (n)
8062 "Move to the previous item in the completion list."
8063 (interactive "p")
8064 (next-completion (- n)))
8066 (defun next-completion (n)
8067 "Move to the next item in the completion list.
8068 With prefix argument N, move N items (negative N means move backward)."
8069 (interactive "p")
8070 (let ((beg (point-min)) (end (point-max)))
8071 (while (and (> n 0) (not (eobp)))
8072 ;; If in a completion, move to the end of it.
8073 (when (get-text-property (point) 'mouse-face)
8074 (goto-char (next-single-property-change (point) 'mouse-face nil end)))
8075 ;; Move to start of next one.
8076 (unless (get-text-property (point) 'mouse-face)
8077 (goto-char (next-single-property-change (point) 'mouse-face nil end)))
8078 (setq n (1- n)))
8079 (while (and (< n 0) (not (bobp)))
8080 (let ((prop (get-text-property (1- (point)) 'mouse-face)))
8081 ;; If in a completion, move to the start of it.
8082 (when (and prop (eq prop (get-text-property (point) 'mouse-face)))
8083 (goto-char (previous-single-property-change
8084 (point) 'mouse-face nil beg)))
8085 ;; Move to end of the previous completion.
8086 (unless (or (bobp) (get-text-property (1- (point)) 'mouse-face))
8087 (goto-char (previous-single-property-change
8088 (point) 'mouse-face nil beg)))
8089 ;; Move to the start of that one.
8090 (goto-char (previous-single-property-change
8091 (point) 'mouse-face nil beg))
8092 (setq n (1+ n))))))
8094 (defun choose-completion (&optional event)
8095 "Choose the completion at point.
8096 If EVENT, use EVENT's position to determine the starting position."
8097 (interactive (list last-nonmenu-event))
8098 ;; In case this is run via the mouse, give temporary modes such as
8099 ;; isearch a chance to turn off.
8100 (run-hooks 'mouse-leave-buffer-hook)
8101 (with-current-buffer (window-buffer (posn-window (event-start event)))
8102 (let ((buffer completion-reference-buffer)
8103 (base-size completion-base-size)
8104 (base-position completion-base-position)
8105 (insert-function completion-list-insert-choice-function)
8106 (choice
8107 (save-excursion
8108 (goto-char (posn-point (event-start event)))
8109 (let (beg end)
8110 (cond
8111 ((and (not (eobp)) (get-text-property (point) 'mouse-face))
8112 (setq end (point) beg (1+ (point))))
8113 ((and (not (bobp))
8114 (get-text-property (1- (point)) 'mouse-face))
8115 (setq end (1- (point)) beg (point)))
8116 (t (error "No completion here")))
8117 (setq beg (previous-single-property-change beg 'mouse-face))
8118 (setq end (or (next-single-property-change end 'mouse-face)
8119 (point-max)))
8120 (buffer-substring-no-properties beg end)))))
8122 (unless (buffer-live-p buffer)
8123 (error "Destination buffer is dead"))
8124 (quit-window nil (posn-window (event-start event)))
8126 (with-current-buffer buffer
8127 (choose-completion-string
8128 choice buffer
8129 (or base-position
8130 (when base-size
8131 ;; Someone's using old completion code that doesn't know
8132 ;; about base-position yet.
8133 (list (+ base-size (field-beginning))))
8134 ;; If all else fails, just guess.
8135 (list (choose-completion-guess-base-position choice)))
8136 insert-function)))))
8138 ;; Delete the longest partial match for STRING
8139 ;; that can be found before POINT.
8140 (defun choose-completion-guess-base-position (string)
8141 (save-excursion
8142 (let ((opoint (point))
8143 len)
8144 ;; Try moving back by the length of the string.
8145 (goto-char (max (- (point) (length string))
8146 (minibuffer-prompt-end)))
8147 ;; See how far back we were actually able to move. That is the
8148 ;; upper bound on how much we can match and delete.
8149 (setq len (- opoint (point)))
8150 (if completion-ignore-case
8151 (setq string (downcase string)))
8152 (while (and (> len 0)
8153 (let ((tail (buffer-substring (point) opoint)))
8154 (if completion-ignore-case
8155 (setq tail (downcase tail)))
8156 (not (string= tail (substring string 0 len)))))
8157 (setq len (1- len))
8158 (forward-char 1))
8159 (point))))
8161 (defun choose-completion-delete-max-match (string)
8162 (declare (obsolete choose-completion-guess-base-position "23.2"))
8163 (delete-region (choose-completion-guess-base-position string) (point)))
8165 (defvar choose-completion-string-functions nil
8166 "Functions that may override the normal insertion of a completion choice.
8167 These functions are called in order with three arguments:
8168 CHOICE - the string to insert in the buffer,
8169 BUFFER - the buffer in which the choice should be inserted,
8170 BASE-POSITION - where to insert the completion.
8172 If a function in the list returns non-nil, that function is supposed
8173 to have inserted the CHOICE in the BUFFER, and possibly exited
8174 the minibuffer; no further functions will be called.
8176 If all functions in the list return nil, that means to use
8177 the default method of inserting the completion in BUFFER.")
8179 (defun choose-completion-string (choice &optional
8180 buffer base-position insert-function)
8181 "Switch to BUFFER and insert the completion choice CHOICE.
8182 BASE-POSITION says where to insert the completion.
8183 INSERT-FUNCTION says how to insert the completion and falls
8184 back on `completion-list-insert-choice-function' when nil."
8186 ;; If BUFFER is the minibuffer, exit the minibuffer
8187 ;; unless it is reading a file name and CHOICE is a directory,
8188 ;; or completion-no-auto-exit is non-nil.
8190 ;; Some older code may call us passing `base-size' instead of
8191 ;; `base-position'. It's difficult to make any use of `base-size',
8192 ;; so we just ignore it.
8193 (unless (consp base-position)
8194 (message "Obsolete `base-size' passed to choose-completion-string")
8195 (setq base-position nil))
8197 (let* ((buffer (or buffer completion-reference-buffer))
8198 (mini-p (minibufferp buffer)))
8199 ;; If BUFFER is a minibuffer, barf unless it's the currently
8200 ;; active minibuffer.
8201 (if (and mini-p
8202 (not (and (active-minibuffer-window)
8203 (equal buffer
8204 (window-buffer (active-minibuffer-window))))))
8205 (error "Minibuffer is not active for completion")
8206 ;; Set buffer so buffer-local choose-completion-string-functions works.
8207 (set-buffer buffer)
8208 (unless (run-hook-with-args-until-success
8209 'choose-completion-string-functions
8210 ;; The fourth arg used to be `mini-p' but was useless
8211 ;; (since minibufferp can be used on the `buffer' arg)
8212 ;; and indeed unused. The last used to be `base-size', so we
8213 ;; keep it to try and avoid breaking old code.
8214 choice buffer base-position nil)
8215 ;; This remove-text-properties should be unnecessary since `choice'
8216 ;; comes from buffer-substring-no-properties.
8217 ;;(remove-text-properties 0 (length choice) '(mouse-face nil) choice)
8218 ;; Insert the completion into the buffer where it was requested.
8219 (funcall (or insert-function completion-list-insert-choice-function)
8220 (or (car base-position) (point))
8221 (or (cadr base-position) (point))
8222 choice)
8223 ;; Update point in the window that BUFFER is showing in.
8224 (let ((window (get-buffer-window buffer t)))
8225 (set-window-point window (point)))
8226 ;; If completing for the minibuffer, exit it with this choice.
8227 (and (not completion-no-auto-exit)
8228 (minibufferp buffer)
8229 minibuffer-completion-table
8230 ;; If this is reading a file name, and the file name chosen
8231 ;; is a directory, don't exit the minibuffer.
8232 (let* ((result (buffer-substring (field-beginning) (point)))
8233 (bounds
8234 (completion-boundaries result minibuffer-completion-table
8235 minibuffer-completion-predicate
8236 "")))
8237 (if (eq (car bounds) (length result))
8238 ;; The completion chosen leads to a new set of completions
8239 ;; (e.g. it's a directory): don't exit the minibuffer yet.
8240 (let ((mini (active-minibuffer-window)))
8241 (select-window mini)
8242 (when minibuffer-auto-raise
8243 (raise-frame (window-frame mini))))
8244 (exit-minibuffer))))))))
8246 (define-derived-mode completion-list-mode nil "Completion List"
8247 "Major mode for buffers showing lists of possible completions.
8248 Type \\<completion-list-mode-map>\\[choose-completion] in the completion list\
8249 to select the completion near point.
8250 Or click to select one with the mouse.
8252 \\{completion-list-mode-map}"
8253 (set (make-local-variable 'completion-base-size) nil))
8255 (defun completion-list-mode-finish ()
8256 "Finish setup of the completions buffer.
8257 Called from `temp-buffer-show-hook'."
8258 (when (eq major-mode 'completion-list-mode)
8259 (setq buffer-read-only t)))
8261 (add-hook 'temp-buffer-show-hook 'completion-list-mode-finish)
8264 ;; Variables and faces used in `completion-setup-function'.
8266 (defcustom completion-show-help t
8267 "Non-nil means show help message in *Completions* buffer."
8268 :type 'boolean
8269 :version "22.1"
8270 :group 'completion)
8272 ;; This function goes in completion-setup-hook, so that it is called
8273 ;; after the text of the completion list buffer is written.
8274 (defun completion-setup-function ()
8275 (let* ((mainbuf (current-buffer))
8276 (base-dir
8277 ;; FIXME: This is a bad hack. We try to set the default-directory
8278 ;; in the *Completions* buffer so that the relative file names
8279 ;; displayed there can be treated as valid file names, independently
8280 ;; from the completion context. But this suffers from many problems:
8281 ;; - It's not clear when the completions are file names. With some
8282 ;; completion tables (e.g. bzr revision specs), the listed
8283 ;; completions can mix file names and other things.
8284 ;; - It doesn't pay attention to possible quoting.
8285 ;; - With fancy completion styles, the code below will not always
8286 ;; find the right base directory.
8287 (if minibuffer-completing-file-name
8288 (file-name-as-directory
8289 (expand-file-name
8290 (buffer-substring (minibuffer-prompt-end)
8291 (- (point) (or completion-base-size 0))))))))
8292 (with-current-buffer standard-output
8293 (let ((base-size completion-base-size) ;Read before killing localvars.
8294 (base-position completion-base-position)
8295 (insert-fun completion-list-insert-choice-function))
8296 (completion-list-mode)
8297 (set (make-local-variable 'completion-base-size) base-size)
8298 (set (make-local-variable 'completion-base-position) base-position)
8299 (set (make-local-variable 'completion-list-insert-choice-function)
8300 insert-fun))
8301 (set (make-local-variable 'completion-reference-buffer) mainbuf)
8302 (if base-dir (setq default-directory base-dir))
8303 ;; Maybe insert help string.
8304 (when completion-show-help
8305 (goto-char (point-min))
8306 (if (display-mouse-p)
8307 (insert "Click on a completion to select it.\n"))
8308 (insert (substitute-command-keys
8309 "In this buffer, type \\[choose-completion] to \
8310 select the completion near point.\n\n"))))))
8312 (add-hook 'completion-setup-hook 'completion-setup-function)
8314 (define-key minibuffer-local-completion-map [prior] 'switch-to-completions)
8315 (define-key minibuffer-local-completion-map "\M-v" 'switch-to-completions)
8317 (defun switch-to-completions ()
8318 "Select the completion list window."
8319 (interactive)
8320 (let ((window (or (get-buffer-window "*Completions*" 0)
8321 ;; Make sure we have a completions window.
8322 (progn (minibuffer-completion-help)
8323 (get-buffer-window "*Completions*" 0)))))
8324 (when window
8325 (select-window window)
8326 ;; In the new buffer, go to the first completion.
8327 ;; FIXME: Perhaps this should be done in `minibuffer-completion-help'.
8328 (when (bobp)
8329 (next-completion 1)))))
8331 ;;; Support keyboard commands to turn on various modifiers.
8333 ;; These functions -- which are not commands -- each add one modifier
8334 ;; to the following event.
8336 (defun event-apply-alt-modifier (_ignore-prompt)
8337 "\\<function-key-map>Add the Alt modifier to the following event.
8338 For example, type \\[event-apply-alt-modifier] & to enter Alt-&."
8339 (vector (event-apply-modifier (read-event) 'alt 22 "A-")))
8340 (defun event-apply-super-modifier (_ignore-prompt)
8341 "\\<function-key-map>Add the Super modifier to the following event.
8342 For example, type \\[event-apply-super-modifier] & to enter Super-&."
8343 (vector (event-apply-modifier (read-event) 'super 23 "s-")))
8344 (defun event-apply-hyper-modifier (_ignore-prompt)
8345 "\\<function-key-map>Add the Hyper modifier to the following event.
8346 For example, type \\[event-apply-hyper-modifier] & to enter Hyper-&."
8347 (vector (event-apply-modifier (read-event) 'hyper 24 "H-")))
8348 (defun event-apply-shift-modifier (_ignore-prompt)
8349 "\\<function-key-map>Add the Shift modifier to the following event.
8350 For example, type \\[event-apply-shift-modifier] & to enter Shift-&."
8351 (vector (event-apply-modifier (read-event) 'shift 25 "S-")))
8352 (defun event-apply-control-modifier (_ignore-prompt)
8353 "\\<function-key-map>Add the Ctrl modifier to the following event.
8354 For example, type \\[event-apply-control-modifier] & to enter Ctrl-&."
8355 (vector (event-apply-modifier (read-event) 'control 26 "C-")))
8356 (defun event-apply-meta-modifier (_ignore-prompt)
8357 "\\<function-key-map>Add the Meta modifier to the following event.
8358 For example, type \\[event-apply-meta-modifier] & to enter Meta-&."
8359 (vector (event-apply-modifier (read-event) 'meta 27 "M-")))
8361 (defun event-apply-modifier (event symbol lshiftby prefix)
8362 "Apply a modifier flag to event EVENT.
8363 SYMBOL is the name of this modifier, as a symbol.
8364 LSHIFTBY is the numeric value of this modifier, in keyboard events.
8365 PREFIX is the string that represents this modifier in an event type symbol."
8366 (if (numberp event)
8367 (cond ((eq symbol 'control)
8368 (if (and (<= (downcase event) ?z)
8369 (>= (downcase event) ?a))
8370 (- (downcase event) ?a -1)
8371 (if (and (<= (downcase event) ?Z)
8372 (>= (downcase event) ?A))
8373 (- (downcase event) ?A -1)
8374 (logior (lsh 1 lshiftby) event))))
8375 ((eq symbol 'shift)
8376 (if (and (<= (downcase event) ?z)
8377 (>= (downcase event) ?a))
8378 (upcase event)
8379 (logior (lsh 1 lshiftby) event)))
8381 (logior (lsh 1 lshiftby) event)))
8382 (if (memq symbol (event-modifiers event))
8383 event
8384 (let ((event-type (if (symbolp event) event (car event))))
8385 (setq event-type (intern (concat prefix (symbol-name event-type))))
8386 (if (symbolp event)
8387 event-type
8388 (cons event-type (cdr event)))))))
8390 (define-key function-key-map [?\C-x ?@ ?h] 'event-apply-hyper-modifier)
8391 (define-key function-key-map [?\C-x ?@ ?s] 'event-apply-super-modifier)
8392 (define-key function-key-map [?\C-x ?@ ?m] 'event-apply-meta-modifier)
8393 (define-key function-key-map [?\C-x ?@ ?a] 'event-apply-alt-modifier)
8394 (define-key function-key-map [?\C-x ?@ ?S] 'event-apply-shift-modifier)
8395 (define-key function-key-map [?\C-x ?@ ?c] 'event-apply-control-modifier)
8397 ;;;; Keypad support.
8399 ;; Make the keypad keys act like ordinary typing keys. If people add
8400 ;; bindings for the function key symbols, then those bindings will
8401 ;; override these, so this shouldn't interfere with any existing
8402 ;; bindings.
8404 ;; Also tell read-char how to handle these keys.
8405 (mapc
8406 (lambda (keypad-normal)
8407 (let ((keypad (nth 0 keypad-normal))
8408 (normal (nth 1 keypad-normal)))
8409 (put keypad 'ascii-character normal)
8410 (define-key function-key-map (vector keypad) (vector normal))))
8411 ;; See also kp-keys bound in bindings.el.
8412 '((kp-space ?\s)
8413 (kp-tab ?\t)
8414 (kp-enter ?\r)
8415 (kp-separator ?,)
8416 (kp-equal ?=)
8417 ;; Do the same for various keys that are represented as symbols under
8418 ;; GUIs but naturally correspond to characters.
8419 (backspace 127)
8420 (delete 127)
8421 (tab ?\t)
8422 (linefeed ?\n)
8423 (clear ?\C-l)
8424 (return ?\C-m)
8425 (escape ?\e)
8428 ;;;;
8429 ;;;; forking a twin copy of a buffer.
8430 ;;;;
8432 (defvar clone-buffer-hook nil
8433 "Normal hook to run in the new buffer at the end of `clone-buffer'.")
8435 (defvar clone-indirect-buffer-hook nil
8436 "Normal hook to run in the new buffer at the end of `clone-indirect-buffer'.")
8438 (defun clone-process (process &optional newname)
8439 "Create a twin copy of PROCESS.
8440 If NEWNAME is nil, it defaults to PROCESS' name;
8441 NEWNAME is modified by adding or incrementing <N> at the end as necessary.
8442 If PROCESS is associated with a buffer, the new process will be associated
8443 with the current buffer instead.
8444 Returns nil if PROCESS has already terminated."
8445 (setq newname (or newname (process-name process)))
8446 (if (string-match "<[0-9]+>\\'" newname)
8447 (setq newname (substring newname 0 (match-beginning 0))))
8448 (when (memq (process-status process) '(run stop open))
8449 (let* ((process-connection-type (process-tty-name process))
8450 (new-process
8451 (if (memq (process-status process) '(open))
8452 (let ((args (process-contact process t)))
8453 (setq args (plist-put args :name newname))
8454 (setq args (plist-put args :buffer
8455 (if (process-buffer process)
8456 (current-buffer))))
8457 (apply 'make-network-process args))
8458 (apply 'start-process newname
8459 (if (process-buffer process) (current-buffer))
8460 (process-command process)))))
8461 (set-process-query-on-exit-flag
8462 new-process (process-query-on-exit-flag process))
8463 (set-process-inherit-coding-system-flag
8464 new-process (process-inherit-coding-system-flag process))
8465 (set-process-filter new-process (process-filter process))
8466 (set-process-sentinel new-process (process-sentinel process))
8467 (set-process-plist new-process (copy-sequence (process-plist process)))
8468 new-process)))
8470 ;; things to maybe add (currently partly covered by `funcall mode'):
8471 ;; - syntax-table
8472 ;; - overlays
8473 (defun clone-buffer (&optional newname display-flag)
8474 "Create and return a twin copy of the current buffer.
8475 Unlike an indirect buffer, the new buffer can be edited
8476 independently of the old one (if it is not read-only).
8477 NEWNAME is the name of the new buffer. It may be modified by
8478 adding or incrementing <N> at the end as necessary to create a
8479 unique buffer name. If nil, it defaults to the name of the
8480 current buffer, with the proper suffix. If DISPLAY-FLAG is
8481 non-nil, the new buffer is shown with `pop-to-buffer'. Trying to
8482 clone a file-visiting buffer, or a buffer whose major mode symbol
8483 has a non-nil `no-clone' property, results in an error.
8485 Interactively, DISPLAY-FLAG is t and NEWNAME is the name of the
8486 current buffer with appropriate suffix. However, if a prefix
8487 argument is given, then the command prompts for NEWNAME in the
8488 minibuffer.
8490 This runs the normal hook `clone-buffer-hook' in the new buffer
8491 after it has been set up properly in other respects."
8492 (interactive
8493 (progn
8494 (if buffer-file-name
8495 (error "Cannot clone a file-visiting buffer"))
8496 (if (get major-mode 'no-clone)
8497 (error "Cannot clone a buffer in %s mode" mode-name))
8498 (list (if current-prefix-arg
8499 (read-buffer "Name of new cloned buffer: " (current-buffer)))
8500 t)))
8501 (if buffer-file-name
8502 (error "Cannot clone a file-visiting buffer"))
8503 (if (get major-mode 'no-clone)
8504 (error "Cannot clone a buffer in %s mode" mode-name))
8505 (setq newname (or newname (buffer-name)))
8506 (if (string-match "<[0-9]+>\\'" newname)
8507 (setq newname (substring newname 0 (match-beginning 0))))
8508 (let ((buf (current-buffer))
8509 (ptmin (point-min))
8510 (ptmax (point-max))
8511 (pt (point))
8512 (mk (if mark-active (mark t)))
8513 (modified (buffer-modified-p))
8514 (mode major-mode)
8515 (lvars (buffer-local-variables))
8516 (process (get-buffer-process (current-buffer)))
8517 (new (generate-new-buffer (or newname (buffer-name)))))
8518 (save-restriction
8519 (widen)
8520 (with-current-buffer new
8521 (insert-buffer-substring buf)))
8522 (with-current-buffer new
8523 (narrow-to-region ptmin ptmax)
8524 (goto-char pt)
8525 (if mk (set-mark mk))
8526 (set-buffer-modified-p modified)
8528 ;; Clone the old buffer's process, if any.
8529 (when process (clone-process process))
8531 ;; Now set up the major mode.
8532 (funcall mode)
8534 ;; Set up other local variables.
8535 (mapc (lambda (v)
8536 (condition-case () ;in case var is read-only
8537 (if (symbolp v)
8538 (makunbound v)
8539 (set (make-local-variable (car v)) (cdr v)))
8540 (error nil)))
8541 lvars)
8543 ;; Run any hooks (typically set up by the major mode
8544 ;; for cloning to work properly).
8545 (run-hooks 'clone-buffer-hook))
8546 (if display-flag
8547 ;; Presumably the current buffer is shown in the selected frame, so
8548 ;; we want to display the clone elsewhere.
8549 (let ((same-window-regexps nil)
8550 (same-window-buffer-names))
8551 (pop-to-buffer new)))
8552 new))
8555 (defun clone-indirect-buffer (newname display-flag &optional norecord)
8556 "Create an indirect buffer that is a twin copy of the current buffer.
8558 Give the indirect buffer name NEWNAME. Interactively, read NEWNAME
8559 from the minibuffer when invoked with a prefix arg. If NEWNAME is nil
8560 or if not called with a prefix arg, NEWNAME defaults to the current
8561 buffer's name. The name is modified by adding a `<N>' suffix to it
8562 or by incrementing the N in an existing suffix. Trying to clone a
8563 buffer whose major mode symbol has a non-nil `no-clone-indirect'
8564 property results in an error.
8566 DISPLAY-FLAG non-nil means show the new buffer with `pop-to-buffer'.
8567 This is always done when called interactively.
8569 Optional third arg NORECORD non-nil means do not put this buffer at the
8570 front of the list of recently selected ones.
8572 Returns the newly created indirect buffer."
8573 (interactive
8574 (progn
8575 (if (get major-mode 'no-clone-indirect)
8576 (error "Cannot indirectly clone a buffer in %s mode" mode-name))
8577 (list (if current-prefix-arg
8578 (read-buffer "Name of indirect buffer: " (current-buffer)))
8579 t)))
8580 (if (get major-mode 'no-clone-indirect)
8581 (error "Cannot indirectly clone a buffer in %s mode" mode-name))
8582 (setq newname (or newname (buffer-name)))
8583 (if (string-match "<[0-9]+>\\'" newname)
8584 (setq newname (substring newname 0 (match-beginning 0))))
8585 (let* ((name (generate-new-buffer-name newname))
8586 (buffer (make-indirect-buffer (current-buffer) name t)))
8587 (with-current-buffer buffer
8588 (run-hooks 'clone-indirect-buffer-hook))
8589 (when display-flag
8590 (pop-to-buffer buffer nil norecord))
8591 buffer))
8594 (defun clone-indirect-buffer-other-window (newname display-flag &optional norecord)
8595 "Like `clone-indirect-buffer' but display in another window."
8596 (interactive
8597 (progn
8598 (if (get major-mode 'no-clone-indirect)
8599 (error "Cannot indirectly clone a buffer in %s mode" mode-name))
8600 (list (if current-prefix-arg
8601 (read-buffer "Name of indirect buffer: " (current-buffer)))
8602 t)))
8603 (let ((pop-up-windows t))
8604 (clone-indirect-buffer newname display-flag norecord)))
8607 ;;; Handling of Backspace and Delete keys.
8609 (defcustom normal-erase-is-backspace 'maybe
8610 "Set the default behavior of the Delete and Backspace keys.
8612 If set to t, Delete key deletes forward and Backspace key deletes
8613 backward.
8615 If set to nil, both Delete and Backspace keys delete backward.
8617 If set to `maybe' (which is the default), Emacs automatically
8618 selects a behavior. On window systems, the behavior depends on
8619 the keyboard used. If the keyboard has both a Backspace key and
8620 a Delete key, and both are mapped to their usual meanings, the
8621 option's default value is set to t, so that Backspace can be used
8622 to delete backward, and Delete can be used to delete forward.
8624 If not running under a window system, customizing this option
8625 accomplishes a similar effect by mapping C-h, which is usually
8626 generated by the Backspace key, to DEL, and by mapping DEL to C-d
8627 via `keyboard-translate'. The former functionality of C-h is
8628 available on the F1 key. You should probably not use this
8629 setting if you don't have both Backspace, Delete and F1 keys.
8631 Setting this variable with setq doesn't take effect. Programmatically,
8632 call `normal-erase-is-backspace-mode' (which see) instead."
8633 :type '(choice (const :tag "Off" nil)
8634 (const :tag "Maybe" maybe)
8635 (other :tag "On" t))
8636 :group 'editing-basics
8637 :version "21.1"
8638 :set (lambda (symbol value)
8639 ;; The fboundp is because of a problem with :set when
8640 ;; dumping Emacs. It doesn't really matter.
8641 (if (fboundp 'normal-erase-is-backspace-mode)
8642 (normal-erase-is-backspace-mode (or value 0))
8643 (set-default symbol value))))
8645 (defun normal-erase-is-backspace-setup-frame (&optional frame)
8646 "Set up `normal-erase-is-backspace-mode' on FRAME, if necessary."
8647 (unless frame (setq frame (selected-frame)))
8648 (with-selected-frame frame
8649 (unless (terminal-parameter nil 'normal-erase-is-backspace)
8650 (normal-erase-is-backspace-mode
8651 (if (if (eq normal-erase-is-backspace 'maybe)
8652 (and (not noninteractive)
8653 (or (memq system-type '(ms-dos windows-nt))
8654 (memq window-system '(w32 ns))
8655 (and (memq window-system '(x))
8656 (fboundp 'x-backspace-delete-keys-p)
8657 (x-backspace-delete-keys-p))
8658 ;; If the terminal Emacs is running on has erase char
8659 ;; set to ^H, use the Backspace key for deleting
8660 ;; backward, and the Delete key for deleting forward.
8661 (and (null window-system)
8662 (eq tty-erase-char ?\^H))))
8663 normal-erase-is-backspace)
8664 1 0)))))
8666 (define-minor-mode normal-erase-is-backspace-mode
8667 "Toggle the Erase and Delete mode of the Backspace and Delete keys.
8668 With a prefix argument ARG, enable this feature if ARG is
8669 positive, and disable it otherwise. If called from Lisp, enable
8670 the mode if ARG is omitted or nil.
8672 On window systems, when this mode is on, Delete is mapped to C-d
8673 and Backspace is mapped to DEL; when this mode is off, both
8674 Delete and Backspace are mapped to DEL. (The remapping goes via
8675 `local-function-key-map', so binding Delete or Backspace in the
8676 global or local keymap will override that.)
8678 In addition, on window systems, the bindings of C-Delete, M-Delete,
8679 C-M-Delete, C-Backspace, M-Backspace, and C-M-Backspace are changed in
8680 the global keymap in accordance with the functionality of Delete and
8681 Backspace. For example, if Delete is remapped to C-d, which deletes
8682 forward, C-Delete is bound to `kill-word', but if Delete is remapped
8683 to DEL, which deletes backward, C-Delete is bound to
8684 `backward-kill-word'.
8686 If not running on a window system, a similar effect is accomplished by
8687 remapping C-h (normally produced by the Backspace key) and DEL via
8688 `keyboard-translate': if this mode is on, C-h is mapped to DEL and DEL
8689 to C-d; if it's off, the keys are not remapped.
8691 When not running on a window system, and this mode is turned on, the
8692 former functionality of C-h is available on the F1 key. You should
8693 probably not turn on this mode on a text-only terminal if you don't
8694 have both Backspace, Delete and F1 keys.
8696 See also `normal-erase-is-backspace'."
8697 :variable ((eq (terminal-parameter nil 'normal-erase-is-backspace) 1)
8698 . (lambda (v)
8699 (setf (terminal-parameter nil 'normal-erase-is-backspace)
8700 (if v 1 0))))
8701 (let ((enabled (eq 1 (terminal-parameter
8702 nil 'normal-erase-is-backspace))))
8704 (cond ((or (memq window-system '(x w32 ns pc))
8705 (memq system-type '(ms-dos windows-nt)))
8706 (let ((bindings
8707 `(([M-delete] [M-backspace])
8708 ([C-M-delete] [C-M-backspace])
8709 ([?\e C-delete] [?\e C-backspace]))))
8711 (if enabled
8712 (progn
8713 (define-key local-function-key-map [delete] [deletechar])
8714 (define-key local-function-key-map [kp-delete] [deletechar])
8715 (define-key local-function-key-map [backspace] [?\C-?])
8716 (dolist (b bindings)
8717 ;; Not sure if input-decode-map is really right, but
8718 ;; keyboard-translate-table (used below) only works
8719 ;; for integer events, and key-translation-table is
8720 ;; global (like the global-map, used earlier).
8721 (define-key input-decode-map (car b) nil)
8722 (define-key input-decode-map (cadr b) nil)))
8723 (define-key local-function-key-map [delete] [?\C-?])
8724 (define-key local-function-key-map [kp-delete] [?\C-?])
8725 (define-key local-function-key-map [backspace] [?\C-?])
8726 (dolist (b bindings)
8727 (define-key input-decode-map (car b) (cadr b))
8728 (define-key input-decode-map (cadr b) (car b))))))
8730 (if enabled
8731 (progn
8732 (keyboard-translate ?\C-h ?\C-?)
8733 (keyboard-translate ?\C-? ?\C-d))
8734 (keyboard-translate ?\C-h ?\C-h)
8735 (keyboard-translate ?\C-? ?\C-?))))
8737 (if (called-interactively-p 'interactive)
8738 (message "Delete key deletes %s"
8739 (if (eq 1 (terminal-parameter nil 'normal-erase-is-backspace))
8740 "forward" "backward")))))
8742 (defvar vis-mode-saved-buffer-invisibility-spec nil
8743 "Saved value of `buffer-invisibility-spec' when Visible mode is on.")
8745 (define-minor-mode read-only-mode
8746 "Change whether the current buffer is read-only.
8747 With prefix argument ARG, make the buffer read-only if ARG is
8748 positive, otherwise make it writable. If buffer is read-only
8749 and `view-read-only' is non-nil, enter view mode.
8751 Do not call this from a Lisp program unless you really intend to
8752 do the same thing as the \\[read-only-mode] command, including
8753 possibly enabling or disabling View mode. Also, note that this
8754 command works by setting the variable `buffer-read-only', which
8755 does not affect read-only regions caused by text properties. To
8756 ignore read-only status in a Lisp program (whether due to text
8757 properties or buffer state), bind `inhibit-read-only' temporarily
8758 to a non-nil value."
8759 :variable buffer-read-only
8760 (cond
8761 ((and (not buffer-read-only) view-mode)
8762 (View-exit-and-edit)
8763 (make-local-variable 'view-read-only)
8764 (setq view-read-only t)) ; Must leave view mode.
8765 ((and buffer-read-only view-read-only
8766 ;; If view-mode is already active, `view-mode-enter' is a nop.
8767 (not view-mode)
8768 (not (eq (get major-mode 'mode-class) 'special)))
8769 (view-mode-enter))))
8771 (define-minor-mode visible-mode
8772 "Toggle making all invisible text temporarily visible (Visible mode).
8773 With a prefix argument ARG, enable Visible mode if ARG is
8774 positive, and disable it otherwise. If called from Lisp, enable
8775 the mode if ARG is omitted or nil.
8777 This mode works by saving the value of `buffer-invisibility-spec'
8778 and setting it to nil."
8779 :lighter " Vis"
8780 :group 'editing-basics
8781 (when (local-variable-p 'vis-mode-saved-buffer-invisibility-spec)
8782 (setq buffer-invisibility-spec vis-mode-saved-buffer-invisibility-spec)
8783 (kill-local-variable 'vis-mode-saved-buffer-invisibility-spec))
8784 (when visible-mode
8785 (set (make-local-variable 'vis-mode-saved-buffer-invisibility-spec)
8786 buffer-invisibility-spec)
8787 (setq buffer-invisibility-spec nil)))
8789 (defvar messages-buffer-mode-map
8790 (let ((map (make-sparse-keymap)))
8791 (set-keymap-parent map special-mode-map)
8792 (define-key map "g" nil) ; nothing to revert
8793 map))
8795 (define-derived-mode messages-buffer-mode special-mode "Messages"
8796 "Major mode used in the \"*Messages*\" buffer.")
8798 (defun messages-buffer ()
8799 "Return the \"*Messages*\" buffer.
8800 If it does not exist, create and it switch it to `messages-buffer-mode'."
8801 (or (get-buffer "*Messages*")
8802 (with-current-buffer (get-buffer-create "*Messages*")
8803 (messages-buffer-mode)
8804 (current-buffer))))
8807 ;; Minibuffer prompt stuff.
8809 ;;(defun minibuffer-prompt-modification (start end)
8810 ;; (error "You cannot modify the prompt"))
8813 ;;(defun minibuffer-prompt-insertion (start end)
8814 ;; (let ((inhibit-modification-hooks t))
8815 ;; (delete-region start end)
8816 ;; ;; Discard undo information for the text insertion itself
8817 ;; ;; and for the text deletion.above.
8818 ;; (when (consp buffer-undo-list)
8819 ;; (setq buffer-undo-list (cddr buffer-undo-list)))
8820 ;; (message "You cannot modify the prompt")))
8823 ;;(setq minibuffer-prompt-properties
8824 ;; (list 'modification-hooks '(minibuffer-prompt-modification)
8825 ;; 'insert-in-front-hooks '(minibuffer-prompt-insertion)))
8828 ;;;; Problematic external packages.
8830 ;; rms says this should be done by specifying symbols that define
8831 ;; versions together with bad values. This is therefore not as
8832 ;; flexible as it could be. See the thread:
8833 ;; https://lists.gnu.org/r/emacs-devel/2007-08/msg00300.html
8834 (defconst bad-packages-alist
8835 ;; Not sure exactly which semantic versions have problems.
8836 ;; Definitely 2.0pre3, probably all 2.0pre's before this.
8837 '((semantic semantic-version "\\`2\\.0pre[1-3]\\'"
8838 "The version of `semantic' loaded does not work in Emacs 22.
8839 It can cause constant high CPU load.
8840 Upgrade to at least Semantic 2.0pre4 (distributed with CEDET 1.0pre4).")
8841 ;; CUA-mode does not work with GNU Emacs version 22.1 and newer.
8842 ;; Except for version 1.2, all of the 1.x and 2.x version of cua-mode
8843 ;; provided the `CUA-mode' feature. Since this is no longer true,
8844 ;; we can warn the user if the `CUA-mode' feature is ever provided.
8845 (CUA-mode t nil
8846 "CUA-mode is now part of the standard GNU Emacs distribution,
8847 so you can now enable CUA via the Options menu or by customizing `cua-mode'.
8849 You have loaded an older version of CUA-mode which does not work
8850 correctly with this version of Emacs. You should remove the old
8851 version and use the one distributed with Emacs."))
8852 "Alist of packages known to cause problems in this version of Emacs.
8853 Each element has the form (PACKAGE SYMBOL REGEXP STRING).
8854 PACKAGE is either a regular expression to match file names, or a
8855 symbol (a feature name), like for `with-eval-after-load'.
8856 SYMBOL is either the name of a string variable, or t. Upon
8857 loading PACKAGE, if SYMBOL is t or matches REGEXP, display a
8858 warning using STRING as the message.")
8860 (defun bad-package-check (package)
8861 "Run a check using the element from `bad-packages-alist' matching PACKAGE."
8862 (condition-case nil
8863 (let* ((list (assoc package bad-packages-alist))
8864 (symbol (nth 1 list)))
8865 (and list
8866 (boundp symbol)
8867 (or (eq symbol t)
8868 (and (stringp (setq symbol (eval symbol)))
8869 (string-match-p (nth 2 list) symbol)))
8870 (display-warning package (nth 3 list) :warning)))
8871 (error nil)))
8873 (dolist (elem bad-packages-alist)
8874 (let ((pkg (car elem)))
8875 (with-eval-after-load pkg
8876 (bad-package-check pkg))))
8879 ;;; Generic dispatcher commands
8881 ;; Macro `define-alternatives' is used to create generic commands.
8882 ;; Generic commands are these (like web, mail, news, encrypt, irc, etc.)
8883 ;; that can have different alternative implementations where choosing
8884 ;; among them is exclusively a matter of user preference.
8886 ;; (define-alternatives COMMAND) creates a new interactive command
8887 ;; M-x COMMAND and a customizable variable COMMAND-alternatives.
8888 ;; Typically, the user will not need to customize this variable; packages
8889 ;; wanting to add alternative implementations should use
8891 ;; ;;;###autoload (push '("My impl name" . my-impl-symbol) COMMAND-alternatives
8893 (defmacro define-alternatives (command &rest customizations)
8894 "Define the new command `COMMAND'.
8896 The argument `COMMAND' should be a symbol.
8898 Running `M-x COMMAND RET' for the first time prompts for which
8899 alternative to use and records the selected command as a custom
8900 variable.
8902 Running `C-u M-x COMMAND RET' prompts again for an alternative
8903 and overwrites the previous choice.
8905 The variable `COMMAND-alternatives' contains an alist with
8906 alternative implementations of COMMAND. `define-alternatives'
8907 does not have any effect until this variable is set.
8909 CUSTOMIZATIONS, if non-nil, should be composed of alternating
8910 `defcustom' keywords and values to add to the declaration of
8911 `COMMAND-alternatives' (typically :group and :version)."
8912 (let* ((command-name (symbol-name command))
8913 (varalt-name (concat command-name "-alternatives"))
8914 (varalt-sym (intern varalt-name))
8915 (varimp-sym (intern (concat command-name "--implementation"))))
8916 `(progn
8918 (defcustom ,varalt-sym nil
8919 ,(format "Alist of alternative implementations for the `%s' command.
8921 Each entry must be a pair (ALTNAME . ALTFUN), where:
8922 ALTNAME - The name shown at user to describe the alternative implementation.
8923 ALTFUN - The function called to implement this alternative."
8924 command-name)
8925 :type '(alist :key-type string :value-type function)
8926 ,@customizations)
8928 (put ',varalt-sym 'definition-name ',command)
8929 (defvar ,varimp-sym nil "Internal use only.")
8931 (defun ,command (&optional arg)
8932 ,(format "Run generic command `%s'.
8933 If used for the first time, or with interactive ARG, ask the user which
8934 implementation to use for `%s'. The variable `%s'
8935 contains the list of implementations currently supported for this command."
8936 command-name command-name varalt-name)
8937 (interactive "P")
8938 (when (or arg (null ,varimp-sym))
8939 (let ((val (completing-read
8940 ,(format-message
8941 "Select implementation for command `%s': "
8942 command-name)
8943 ,varalt-sym nil t)))
8944 (unless (string-equal val "")
8945 (when (null ,varimp-sym)
8946 (message
8947 "Use C-u M-x %s RET`to select another implementation"
8948 ,command-name)
8949 (sit-for 3))
8950 (customize-save-variable ',varimp-sym
8951 (cdr (assoc-string val ,varalt-sym))))))
8952 (if ,varimp-sym
8953 (call-interactively ,varimp-sym)
8954 (message "%s" ,(format-message
8955 "No implementation selected for command `%s'"
8956 command-name)))))))
8959 ;;; Functions for changing capitalization that Do What I Mean
8960 (defun upcase-dwim (arg)
8961 "Upcase words in the region, if active; if not, upcase word at point.
8962 If the region is active, this function calls `upcase-region'.
8963 Otherwise, it calls `upcase-word', with prefix argument passed to it
8964 to upcase ARG words."
8965 (interactive "*p")
8966 (if (use-region-p)
8967 (upcase-region (region-beginning) (region-end))
8968 (upcase-word arg)))
8970 (defun downcase-dwim (arg)
8971 "Downcase words in the region, if active; if not, downcase word at point.
8972 If the region is active, this function calls `downcase-region'.
8973 Otherwise, it calls `downcase-word', with prefix argument passed to it
8974 to downcase ARG words."
8975 (interactive "*p")
8976 (if (use-region-p)
8977 (downcase-region (region-beginning) (region-end))
8978 (downcase-word arg)))
8980 (defun capitalize-dwim (arg)
8981 "Capitalize words in the region, if active; if not, capitalize word at point.
8982 If the region is active, this function calls `capitalize-region'.
8983 Otherwise, it calls `capitalize-word', with prefix argument passed to it
8984 to capitalize ARG words."
8985 (interactive "*p")
8986 (if (use-region-p)
8987 (capitalize-region (region-beginning) (region-end))
8988 (capitalize-word arg)))
8992 (provide 'simple)
8994 ;;; simple.el ends here