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