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