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