Merge from emacs-24; up to 2013-01-03T02:31:36Z!rgm@gnu.org
[emacs.git] / lisp / simple.el
blob593f36d1ee1fe204e4f46534be3e46401e1fc633
1 ;;; simple.el --- basic editing commands for Emacs -*- lexical-binding: t -*-
3 ;; Copyright (C) 1985-1987, 1993-2013 Free Software Foundation, Inc.
5 ;; Maintainer: FSF
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 (declare-function widget-convert "wid-edit" (type &rest args))
32 (declare-function shell-mode "shell" ())
34 ;;; From compile.el
35 (defvar compilation-current-error)
36 (defvar compilation-context-lines)
38 (defcustom idle-update-delay 0.5
39 "Idle time delay before updating various things on the screen.
40 Various Emacs features that update auxiliary information when point moves
41 wait this many seconds after Emacs becomes idle before doing an update."
42 :type 'number
43 :group 'display
44 :version "22.1")
46 (defgroup killing nil
47 "Killing and yanking commands."
48 :group 'editing)
50 (defgroup paren-matching nil
51 "Highlight (un)matching of parens and expressions."
52 :group 'matching)
54 ;;; next-error support framework
56 (defgroup next-error nil
57 "`next-error' support framework."
58 :group 'compilation
59 :version "22.1")
61 (defface next-error
62 '((t (:inherit region)))
63 "Face used to highlight next error locus."
64 :group 'next-error
65 :version "22.1")
67 (defcustom next-error-highlight 0.5
68 "Highlighting of locations in selected source buffers.
69 If a number, highlight the locus in `next-error' face for the given time
70 in seconds, or until the next command is executed.
71 If t, highlight the locus until the next command is executed, or until
72 some other locus replaces it.
73 If nil, don't highlight the locus in the source buffer.
74 If `fringe-arrow', indicate the locus by the fringe arrow
75 indefinitely until some other locus replaces it."
76 :type '(choice (number :tag "Highlight for specified time")
77 (const :tag "Semipermanent highlighting" t)
78 (const :tag "No highlighting" nil)
79 (const :tag "Fringe arrow" fringe-arrow))
80 :group 'next-error
81 :version "22.1")
83 (defcustom next-error-highlight-no-select 0.5
84 "Highlighting of locations in `next-error-no-select'.
85 If number, highlight the locus in `next-error' face for given time in seconds.
86 If t, highlight the locus indefinitely until some other locus replaces it.
87 If nil, don't highlight the locus in the source buffer.
88 If `fringe-arrow', indicate the locus by the fringe arrow
89 indefinitely until some other locus replaces it."
90 :type '(choice (number :tag "Highlight for specified time")
91 (const :tag "Semipermanent highlighting" t)
92 (const :tag "No highlighting" nil)
93 (const :tag "Fringe arrow" fringe-arrow))
94 :group 'next-error
95 :version "22.1")
97 (defcustom next-error-recenter nil
98 "Display the line in the visited source file recentered as specified.
99 If non-nil, the value is passed directly to `recenter'."
100 :type '(choice (integer :tag "Line to recenter to")
101 (const :tag "Center of window" (4))
102 (const :tag "No recentering" nil))
103 :group 'next-error
104 :version "23.1")
106 (defcustom next-error-hook nil
107 "List of hook functions run by `next-error' after visiting source file."
108 :type 'hook
109 :group 'next-error)
111 (defvar next-error-highlight-timer nil)
113 (defvar next-error-overlay-arrow-position nil)
114 (put 'next-error-overlay-arrow-position 'overlay-arrow-string (purecopy "=>"))
115 (add-to-list 'overlay-arrow-variable-list 'next-error-overlay-arrow-position)
117 (defvar next-error-last-buffer nil
118 "The most recent `next-error' buffer.
119 A buffer becomes most recent when its compilation, grep, or
120 similar mode is started, or when it is used with \\[next-error]
121 or \\[compile-goto-error].")
123 (defvar next-error-function nil
124 "Function to use to find the next error in the current buffer.
125 The function is called with 2 parameters:
126 ARG is an integer specifying by how many errors to move.
127 RESET is a boolean which, if non-nil, says to go back to the beginning
128 of the errors before moving.
129 Major modes providing compile-like functionality should set this variable
130 to indicate to `next-error' that this is a candidate buffer and how
131 to navigate in it.")
132 (make-variable-buffer-local 'next-error-function)
134 (defvar next-error-move-function nil
135 "Function to use to move to an error locus.
136 It takes two arguments, a buffer position in the error buffer
137 and a buffer position in the error locus buffer.
138 The buffer for the error locus should already be current.
139 nil means use goto-char using the second argument position.")
140 (make-variable-buffer-local 'next-error-move-function)
142 (defsubst next-error-buffer-p (buffer
143 &optional avoid-current
144 extra-test-inclusive
145 extra-test-exclusive)
146 "Test if BUFFER is a `next-error' capable buffer.
148 If AVOID-CURRENT is non-nil, treat the current buffer
149 as an absolute last resort only.
151 The function EXTRA-TEST-INCLUSIVE, if non-nil, is called in each buffer
152 that normally would not qualify. If it returns t, the buffer
153 in question is treated as usable.
155 The function EXTRA-TEST-EXCLUSIVE, if non-nil, is called in each buffer
156 that would normally be considered usable. If it returns nil,
157 that buffer is rejected."
158 (and (buffer-name buffer) ;First make sure it's live.
159 (not (and avoid-current (eq buffer (current-buffer))))
160 (with-current-buffer buffer
161 (if next-error-function ; This is the normal test.
162 ;; Optionally reject some buffers.
163 (if extra-test-exclusive
164 (funcall extra-test-exclusive)
166 ;; Optionally accept some other buffers.
167 (and extra-test-inclusive
168 (funcall extra-test-inclusive))))))
170 (defun next-error-find-buffer (&optional avoid-current
171 extra-test-inclusive
172 extra-test-exclusive)
173 "Return a `next-error' capable buffer.
175 If AVOID-CURRENT is non-nil, treat the current buffer
176 as an absolute last resort only.
178 The function EXTRA-TEST-INCLUSIVE, if non-nil, is called in each buffer
179 that normally would not qualify. If it returns t, the buffer
180 in question is treated as usable.
182 The function EXTRA-TEST-EXCLUSIVE, if non-nil, is called in each buffer
183 that would normally be considered usable. If it returns nil,
184 that buffer is rejected."
186 ;; 1. If one window on the selected frame displays such buffer, return it.
187 (let ((window-buffers
188 (delete-dups
189 (delq nil (mapcar (lambda (w)
190 (if (next-error-buffer-p
191 (window-buffer w)
192 avoid-current
193 extra-test-inclusive extra-test-exclusive)
194 (window-buffer w)))
195 (window-list))))))
196 (if (eq (length window-buffers) 1)
197 (car window-buffers)))
198 ;; 2. If next-error-last-buffer is an acceptable buffer, use that.
199 (if (and next-error-last-buffer
200 (next-error-buffer-p next-error-last-buffer avoid-current
201 extra-test-inclusive extra-test-exclusive))
202 next-error-last-buffer)
203 ;; 3. If the current buffer is acceptable, choose it.
204 (if (next-error-buffer-p (current-buffer) avoid-current
205 extra-test-inclusive extra-test-exclusive)
206 (current-buffer))
207 ;; 4. Look for any acceptable buffer.
208 (let ((buffers (buffer-list)))
209 (while (and buffers
210 (not (next-error-buffer-p
211 (car buffers) avoid-current
212 extra-test-inclusive extra-test-exclusive)))
213 (setq buffers (cdr buffers)))
214 (car buffers))
215 ;; 5. Use the current buffer as a last resort if it qualifies,
216 ;; even despite AVOID-CURRENT.
217 (and avoid-current
218 (next-error-buffer-p (current-buffer) nil
219 extra-test-inclusive extra-test-exclusive)
220 (progn
221 (message "This is the only buffer with error message locations")
222 (current-buffer)))
223 ;; 6. Give up.
224 (error "No buffers contain error message locations")))
226 (defun next-error (&optional arg reset)
227 "Visit next `next-error' message and corresponding source code.
229 If all the error messages parsed so far have been processed already,
230 the message buffer is checked for new ones.
232 A prefix ARG specifies how many error messages to move;
233 negative means move back to previous error messages.
234 Just \\[universal-argument] as a prefix means reparse the error message buffer
235 and start at the first error.
237 The RESET argument specifies that we should restart from the beginning.
239 \\[next-error] normally uses the most recently started
240 compilation, grep, or occur buffer. It can also operate on any
241 buffer with output from the \\[compile], \\[grep] commands, or,
242 more generally, on any buffer in Compilation mode or with
243 Compilation Minor mode enabled, or any buffer in which
244 `next-error-function' is bound to an appropriate function.
245 To specify use of a particular buffer for error messages, type
246 \\[next-error] in that buffer when it is the only one displayed
247 in the current frame.
249 Once \\[next-error] has chosen the buffer for error messages, it
250 runs `next-error-hook' with `run-hooks', and stays with that buffer
251 until you use it in some other buffer which uses Compilation mode
252 or Compilation Minor mode.
254 To control which errors are matched, customize the variable
255 `compilation-error-regexp-alist'."
256 (interactive "P")
257 (if (consp arg) (setq reset t arg nil))
258 (when (setq next-error-last-buffer (next-error-find-buffer))
259 ;; we know here that next-error-function is a valid symbol we can funcall
260 (with-current-buffer next-error-last-buffer
261 (funcall next-error-function (prefix-numeric-value arg) reset)
262 (when next-error-recenter
263 (recenter next-error-recenter))
264 (run-hooks 'next-error-hook))))
266 (defun next-error-internal ()
267 "Visit the source code corresponding to the `next-error' message at point."
268 (setq next-error-last-buffer (current-buffer))
269 ;; we know here that next-error-function is a valid symbol we can funcall
270 (with-current-buffer next-error-last-buffer
271 (funcall next-error-function 0 nil)
272 (when next-error-recenter
273 (recenter next-error-recenter))
274 (run-hooks 'next-error-hook)))
276 (defalias 'goto-next-locus 'next-error)
277 (defalias 'next-match 'next-error)
279 (defun previous-error (&optional n)
280 "Visit previous `next-error' message and corresponding source code.
282 Prefix arg N says how many error messages to move backwards (or
283 forwards, if negative).
285 This operates on the output from the \\[compile] and \\[grep] commands."
286 (interactive "p")
287 (next-error (- (or n 1))))
289 (defun first-error (&optional n)
290 "Restart at the first error.
291 Visit corresponding source code.
292 With prefix arg N, visit the source code of the Nth error.
293 This operates on the output from the \\[compile] command, for instance."
294 (interactive "p")
295 (next-error n t))
297 (defun next-error-no-select (&optional n)
298 "Move point to the next error in the `next-error' buffer and highlight match.
299 Prefix arg N says how many error messages to move forwards (or
300 backwards, if negative).
301 Finds and highlights the source line like \\[next-error], but does not
302 select the source buffer."
303 (interactive "p")
304 (let ((next-error-highlight next-error-highlight-no-select))
305 (next-error n))
306 (pop-to-buffer next-error-last-buffer))
308 (defun previous-error-no-select (&optional n)
309 "Move point to the previous error in the `next-error' buffer and highlight match.
310 Prefix arg N says how many error messages to move backwards (or
311 forwards, if negative).
312 Finds and highlights the source line like \\[previous-error], but does not
313 select the source buffer."
314 (interactive "p")
315 (next-error-no-select (- (or n 1))))
317 ;; Internal variable for `next-error-follow-mode-post-command-hook'.
318 (defvar next-error-follow-last-line nil)
320 (define-minor-mode next-error-follow-minor-mode
321 "Minor mode for compilation, occur and diff modes.
322 With a prefix argument ARG, enable mode if ARG is positive, and
323 disable it otherwise. If called from Lisp, enable mode if ARG is
324 omitted or nil.
325 When turned on, cursor motion in the compilation, grep, occur or diff
326 buffer causes automatic display of the corresponding source code location."
327 :group 'next-error :init-value nil :lighter " Fol"
328 (if (not next-error-follow-minor-mode)
329 (remove-hook 'post-command-hook 'next-error-follow-mode-post-command-hook t)
330 (add-hook 'post-command-hook 'next-error-follow-mode-post-command-hook nil t)
331 (make-local-variable 'next-error-follow-last-line)))
333 ;; Used as a `post-command-hook' by `next-error-follow-mode'
334 ;; for the *Compilation* *grep* and *Occur* buffers.
335 (defun next-error-follow-mode-post-command-hook ()
336 (unless (equal next-error-follow-last-line (line-number-at-pos))
337 (setq next-error-follow-last-line (line-number-at-pos))
338 (condition-case nil
339 (let ((compilation-context-lines nil))
340 (setq compilation-current-error (point))
341 (next-error-no-select 0))
342 (error t))))
347 (defun fundamental-mode ()
348 "Major mode not specialized for anything in particular.
349 Other major modes are defined by comparison with this one."
350 (interactive)
351 (kill-all-local-variables)
352 (run-mode-hooks))
354 ;; Special major modes to view specially formatted data rather than files.
356 (defvar special-mode-map
357 (let ((map (make-sparse-keymap)))
358 (suppress-keymap map)
359 (define-key map "q" 'quit-window)
360 (define-key map " " 'scroll-up-command)
361 (define-key map [?\S-\ ] 'scroll-down-command)
362 (define-key map "\C-?" 'scroll-down-command)
363 (define-key map "?" 'describe-mode)
364 (define-key map "h" 'describe-mode)
365 (define-key map ">" 'end-of-buffer)
366 (define-key map "<" 'beginning-of-buffer)
367 (define-key map "g" 'revert-buffer)
368 map))
370 (put 'special-mode 'mode-class 'special)
371 (define-derived-mode special-mode nil "Special"
372 "Parent major mode from which special major modes should inherit."
373 (setq buffer-read-only t))
375 ;; Making and deleting lines.
377 (defvar hard-newline (propertize "\n" 'hard t 'rear-nonsticky '(hard))
378 "Propertized string representing a hard newline character.")
380 (defun newline (&optional arg)
381 "Insert a newline, and move to left margin of the new line if it's blank.
382 If option `use-hard-newlines' is non-nil, the newline is marked with the
383 text-property `hard'.
384 With ARG, insert that many newlines.
385 Call `auto-fill-function' if the current column number is greater
386 than the value of `fill-column' and ARG is nil."
387 (interactive "*P")
388 (barf-if-buffer-read-only)
389 ;; Call self-insert so that auto-fill, abbrev expansion etc. happens.
390 ;; Set last-command-event to tell self-insert what to insert.
391 (let* ((was-page-start (and (bolp) (looking-at page-delimiter)))
392 (beforepos (point))
393 (last-command-event ?\n)
394 ;; Don't auto-fill if we have a numeric argument.
395 (auto-fill-function (if arg nil auto-fill-function))
396 (postproc
397 ;; Do the rest in post-self-insert-hook, because we want to do it
398 ;; *before* other functions on that hook.
399 (lambda ()
400 ;; Mark the newline(s) `hard'.
401 (if use-hard-newlines
402 (set-hard-newline-properties
403 (- (point) (prefix-numeric-value arg)) (point)))
404 ;; If the newline leaves the previous line blank, and we
405 ;; have a left margin, delete that from the blank line.
406 (save-excursion
407 (goto-char beforepos)
408 (beginning-of-line)
409 (and (looking-at "[ \t]$")
410 (> (current-left-margin) 0)
411 (delete-region (point)
412 (line-end-position))))
413 ;; Indent the line after the newline, except in one case:
414 ;; when we added the newline at the beginning of a line which
415 ;; starts a page.
416 (or was-page-start
417 (move-to-left-margin nil t)))))
418 (unwind-protect
419 (progn
420 (add-hook 'post-self-insert-hook postproc)
421 (self-insert-command (prefix-numeric-value arg)))
422 ;; We first used let-binding to protect the hook, but that was naive
423 ;; since add-hook affects the symbol-default value of the variable,
424 ;; whereas the let-binding might only protect the buffer-local value.
425 (remove-hook 'post-self-insert-hook postproc)))
426 nil)
428 (defun set-hard-newline-properties (from to)
429 (let ((sticky (get-text-property from 'rear-nonsticky)))
430 (put-text-property from to 'hard 't)
431 ;; If rear-nonsticky is not "t", add 'hard to rear-nonsticky list
432 (if (and (listp sticky) (not (memq 'hard sticky)))
433 (put-text-property from (point) 'rear-nonsticky
434 (cons 'hard sticky)))))
436 (defun open-line (n)
437 "Insert a newline and leave point before it.
438 If there is a fill prefix and/or a `left-margin', insert them
439 on the new line if the line would have been blank.
440 With arg N, insert N newlines."
441 (interactive "*p")
442 (let* ((do-fill-prefix (and fill-prefix (bolp)))
443 (do-left-margin (and (bolp) (> (current-left-margin) 0)))
444 (loc (point-marker))
445 ;; Don't expand an abbrev before point.
446 (abbrev-mode nil))
447 (newline n)
448 (goto-char loc)
449 (while (> n 0)
450 (cond ((bolp)
451 (if do-left-margin (indent-to (current-left-margin)))
452 (if do-fill-prefix (insert-and-inherit fill-prefix))))
453 (forward-line 1)
454 (setq n (1- n)))
455 (goto-char loc)
456 (end-of-line)))
458 (defun split-line (&optional arg)
459 "Split current line, moving portion beyond point vertically down.
460 If the current line starts with `fill-prefix', insert it on the new
461 line as well. With prefix ARG, don't insert `fill-prefix' on new line.
463 When called from Lisp code, ARG may be a prefix string to copy."
464 (interactive "*P")
465 (skip-chars-forward " \t")
466 (let* ((col (current-column))
467 (pos (point))
468 ;; What prefix should we check for (nil means don't).
469 (prefix (cond ((stringp arg) arg)
470 (arg nil)
471 (t fill-prefix)))
472 ;; Does this line start with it?
473 (have-prfx (and prefix
474 (save-excursion
475 (beginning-of-line)
476 (looking-at (regexp-quote prefix))))))
477 (newline 1)
478 (if have-prfx (insert-and-inherit prefix))
479 (indent-to col 0)
480 (goto-char pos)))
482 (defun delete-indentation (&optional arg)
483 "Join this line to previous and fix up whitespace at join.
484 If there is a fill prefix, delete it from the beginning of this line.
485 With argument, join this line to following line."
486 (interactive "*P")
487 (beginning-of-line)
488 (if arg (forward-line 1))
489 (if (eq (preceding-char) ?\n)
490 (progn
491 (delete-region (point) (1- (point)))
492 ;; If the second line started with the fill prefix,
493 ;; delete the prefix.
494 (if (and fill-prefix
495 (<= (+ (point) (length fill-prefix)) (point-max))
496 (string= fill-prefix
497 (buffer-substring (point)
498 (+ (point) (length fill-prefix)))))
499 (delete-region (point) (+ (point) (length fill-prefix))))
500 (fixup-whitespace))))
502 (defalias 'join-line #'delete-indentation) ; easier to find
504 (defun delete-blank-lines ()
505 "On blank line, delete all surrounding blank lines, leaving just one.
506 On isolated blank line, delete that one.
507 On nonblank line, delete any immediately following blank lines."
508 (interactive "*")
509 (let (thisblank singleblank)
510 (save-excursion
511 (beginning-of-line)
512 (setq thisblank (looking-at "[ \t]*$"))
513 ;; Set singleblank if there is just one blank line here.
514 (setq singleblank
515 (and thisblank
516 (not (looking-at "[ \t]*\n[ \t]*$"))
517 (or (bobp)
518 (progn (forward-line -1)
519 (not (looking-at "[ \t]*$")))))))
520 ;; Delete preceding blank lines, and this one too if it's the only one.
521 (if thisblank
522 (progn
523 (beginning-of-line)
524 (if singleblank (forward-line 1))
525 (delete-region (point)
526 (if (re-search-backward "[^ \t\n]" nil t)
527 (progn (forward-line 1) (point))
528 (point-min)))))
529 ;; Delete following blank lines, unless the current line is blank
530 ;; and there are no following blank lines.
531 (if (not (and thisblank singleblank))
532 (save-excursion
533 (end-of-line)
534 (forward-line 1)
535 (delete-region (point)
536 (if (re-search-forward "[^ \t\n]" nil t)
537 (progn (beginning-of-line) (point))
538 (point-max)))))
539 ;; Handle the special case where point is followed by newline and eob.
540 ;; Delete the line, leaving point at eob.
541 (if (looking-at "^[ \t]*\n\\'")
542 (delete-region (point) (point-max)))))
544 (defcustom delete-trailing-lines t
545 "If non-nil, \\[delete-trailing-whitespace] deletes trailing lines.
546 Trailing lines are deleted only if `delete-trailing-whitespace'
547 is called on the entire buffer (rather than an active region)."
548 :type 'boolean
549 :group 'editing
550 :version "24.3")
552 (defun delete-trailing-whitespace (&optional start end)
553 "Delete trailing whitespace between START and END.
554 If called interactively, START and END are the start/end of the
555 region if the mark is active, or of the buffer's accessible
556 portion if the mark is inactive.
558 This command deletes whitespace characters after the last
559 non-whitespace character in each line between START and END. It
560 does not consider formfeed characters to be whitespace.
562 If this command acts on the entire buffer (i.e. if called
563 interactively with the mark inactive, or called from Lisp with
564 END nil), it also deletes all trailing lines at the end of the
565 buffer if the variable `delete-trailing-lines' is non-nil."
566 (interactive (progn
567 (barf-if-buffer-read-only)
568 (if (use-region-p)
569 (list (region-beginning) (region-end))
570 (list nil nil))))
571 (save-match-data
572 (save-excursion
573 (let ((end-marker (copy-marker (or end (point-max))))
574 (start (or start (point-min))))
575 (goto-char start)
576 (while (re-search-forward "\\s-$" end-marker t)
577 (skip-syntax-backward "-" (line-beginning-position))
578 ;; Don't delete formfeeds, even if they are considered whitespace.
579 (if (looking-at-p ".*\f")
580 (goto-char (match-end 0)))
581 (delete-region (point) (match-end 0)))
582 ;; Delete trailing empty lines.
583 (goto-char end-marker)
584 (when (and (not end)
585 delete-trailing-lines
586 ;; Really the end of buffer.
587 (= (point-max) (1+ (buffer-size)))
588 (<= (skip-chars-backward "\n") -2))
589 (delete-region (1+ (point)) end-marker))
590 (set-marker end-marker nil))))
591 ;; Return nil for the benefit of `write-file-functions'.
592 nil)
594 (defun newline-and-indent ()
595 "Insert a newline, then indent according to major mode.
596 Indentation is done using the value of `indent-line-function'.
597 In programming language modes, this is the same as TAB.
598 In some text modes, where TAB inserts a tab, this command indents to the
599 column specified by the function `current-left-margin'."
600 (interactive "*")
601 (delete-horizontal-space t)
602 (newline)
603 (indent-according-to-mode))
605 (defun reindent-then-newline-and-indent ()
606 "Reindent current line, insert newline, then indent the new line.
607 Indentation of both lines is done according to the current major mode,
608 which means calling the current value of `indent-line-function'.
609 In programming language modes, this is the same as TAB.
610 In some text modes, where TAB inserts a tab, this indents to the
611 column specified by the function `current-left-margin'."
612 (interactive "*")
613 (let ((pos (point)))
614 ;; Be careful to insert the newline before indenting the line.
615 ;; Otherwise, the indentation might be wrong.
616 (newline)
617 (save-excursion
618 (goto-char pos)
619 ;; We are at EOL before the call to indent-according-to-mode, and
620 ;; after it we usually are as well, but not always. We tried to
621 ;; address it with `save-excursion' but that uses a normal marker
622 ;; whereas we need `move after insertion', so we do the save/restore
623 ;; by hand.
624 (setq pos (copy-marker pos t))
625 (indent-according-to-mode)
626 (goto-char pos)
627 ;; Remove the trailing white-space after indentation because
628 ;; indentation may introduce the whitespace.
629 (delete-horizontal-space t))
630 (indent-according-to-mode)))
632 (defun quoted-insert (arg)
633 "Read next input character and insert it.
634 This is useful for inserting control characters.
635 With argument, insert ARG copies of the character.
637 If the first character you type after this command is an octal digit,
638 you should type a sequence of octal digits which specify a character code.
639 Any nondigit terminates the sequence. If the terminator is a RET,
640 it is discarded; any other terminator is used itself as input.
641 The variable `read-quoted-char-radix' specifies the radix for this feature;
642 set it to 10 or 16 to use decimal or hex instead of octal.
644 In overwrite mode, this function inserts the character anyway, and
645 does not handle octal digits specially. This means that if you use
646 overwrite as your normal editing mode, you can use this function to
647 insert characters when necessary.
649 In binary overwrite mode, this function does overwrite, and octal
650 digits are interpreted as a character code. This is intended to be
651 useful for editing binary files."
652 (interactive "*p")
653 (let* ((char
654 ;; Avoid "obsolete" warnings for translation-table-for-input.
655 (with-no-warnings
656 (let (translation-table-for-input input-method-function)
657 (if (or (not overwrite-mode)
658 (eq overwrite-mode 'overwrite-mode-binary))
659 (read-quoted-char)
660 (read-char))))))
661 ;; This used to assume character codes 0240 - 0377 stand for
662 ;; characters in some single-byte character set, and converted them
663 ;; to Emacs characters. But in 23.1 this feature is deprecated
664 ;; in favor of inserting the corresponding Unicode characters.
665 ;; (if (and enable-multibyte-characters
666 ;; (>= char ?\240)
667 ;; (<= char ?\377))
668 ;; (setq char (unibyte-char-to-multibyte char)))
669 (if (> arg 0)
670 (if (eq overwrite-mode 'overwrite-mode-binary)
671 (delete-char arg)))
672 (while (> arg 0)
673 (insert-and-inherit char)
674 (setq arg (1- arg)))))
676 (defun forward-to-indentation (&optional arg)
677 "Move forward ARG lines and position at first nonblank character."
678 (interactive "^p")
679 (forward-line (or arg 1))
680 (skip-chars-forward " \t"))
682 (defun backward-to-indentation (&optional arg)
683 "Move backward ARG lines and position at first nonblank character."
684 (interactive "^p")
685 (forward-line (- (or arg 1)))
686 (skip-chars-forward " \t"))
688 (defun back-to-indentation ()
689 "Move point to the first non-whitespace character on this line."
690 (interactive "^")
691 (beginning-of-line 1)
692 (skip-syntax-forward " " (line-end-position))
693 ;; Move back over chars that have whitespace syntax but have the p flag.
694 (backward-prefix-chars))
696 (defun fixup-whitespace ()
697 "Fixup white space between objects around point.
698 Leave one space or none, according to the context."
699 (interactive "*")
700 (save-excursion
701 (delete-horizontal-space)
702 (if (or (looking-at "^\\|\\s)")
703 (save-excursion (forward-char -1)
704 (looking-at "$\\|\\s(\\|\\s'")))
706 (insert ?\s))))
708 (defun delete-horizontal-space (&optional backward-only)
709 "Delete all spaces and tabs around point.
710 If BACKWARD-ONLY is non-nil, only delete them before point."
711 (interactive "*P")
712 (let ((orig-pos (point)))
713 (delete-region
714 (if backward-only
715 orig-pos
716 (progn
717 (skip-chars-forward " \t")
718 (constrain-to-field nil orig-pos t)))
719 (progn
720 (skip-chars-backward " \t")
721 (constrain-to-field nil orig-pos)))))
723 (defun just-one-space (&optional n)
724 "Delete all spaces and tabs around point, leaving one space (or N spaces).
725 If N is negative, delete newlines as well, leaving -N spaces."
726 (interactive "*p")
727 (cycle-spacing n nil t))
729 (defvar cycle-spacing--context nil
730 "Store context used in consecutive calls to `cycle-spacing' command.
731 The first time this function is run, it saves the original point
732 position and original spacing around the point in this
733 variable.")
735 (defun cycle-spacing (&optional n preserve-nl-back single-shot)
736 "Manipulate spaces around the point in a smart way.
738 When run as an interactive command, the first time it's called
739 in a sequence, deletes all spaces and tabs around point leaving
740 one (or N spaces). If this does not change content of the
741 buffer, skips to the second step:
743 When run for the second time in a sequence, deletes all the
744 spaces it has previously inserted.
746 When run for the third time, returns the whitespace and point in
747 a state encountered when it had been run for the first time.
749 For example, if buffer contains \"foo ^ bar\" with \"^\" denoting the
750 point, calling `cycle-spacing' command will replace two spaces with
751 a single space, calling it again immediately after, will remove all
752 spaces, and calling it for the third time will bring two spaces back
753 together.
755 If N is negative, delete newlines as well. However, if
756 PRESERVE-NL-BACK is t new line characters prior to the point
757 won't be removed.
759 If SINGLE-SHOT is non-nil, will only perform the first step. In
760 other words, it will work just like `just-one-space' command."
761 (interactive "*p")
762 (let ((orig-pos (point))
763 (skip-characters (if (and n (< n 0)) " \t\n\r" " \t"))
764 (n (abs (or n 1))))
765 (skip-chars-backward (if preserve-nl-back " \t" skip-characters))
766 (constrain-to-field nil orig-pos)
767 (cond
768 ;; Command run for the first time or single-shot is non-nil.
769 ((or single-shot
770 (not (equal last-command this-command))
771 (not cycle-spacing--context))
772 (let* ((start (point))
773 (n (- n (skip-chars-forward " " (+ n (point)))))
774 (mid (point))
775 (end (progn
776 (skip-chars-forward skip-characters)
777 (constrain-to-field nil orig-pos t))))
778 (setq cycle-spacing--context ;; Save for later.
779 ;; Special handling for case where there was no space at all.
780 (unless (= start end)
781 (cons orig-pos (buffer-substring start (point)))))
782 ;; If this run causes no change in buffer content, delete all spaces,
783 ;; otherwise delete all excess spaces.
784 (delete-region (if (and (not single-shot) (zerop n) (= mid end))
785 start mid) end)
786 (insert (make-string n ?\s))))
788 ;; Command run for the second time.
789 ((not (equal orig-pos (point)))
790 (delete-region (point) orig-pos))
792 ;; Command run for the third time.
794 (insert (cdr cycle-spacing--context))
795 (goto-char (car cycle-spacing--context))
796 (setq cycle-spacing--context nil)))))
798 (defun beginning-of-buffer (&optional arg)
799 "Move point to the beginning of the buffer.
800 With numeric arg N, put point N/10 of the way from the beginning.
801 If the buffer is narrowed, this command uses the beginning of the
802 accessible part of the buffer.
804 If Transient Mark mode is disabled, leave mark at previous
805 position, unless a \\[universal-argument] prefix is supplied.
807 Don't use this command in Lisp programs!
808 \(goto-char (point-min)) is faster."
809 (interactive "^P")
810 (or (consp arg)
811 (region-active-p)
812 (push-mark))
813 (let ((size (- (point-max) (point-min))))
814 (goto-char (if (and arg (not (consp arg)))
815 (+ (point-min)
816 (if (> size 10000)
817 ;; Avoid overflow for large buffer sizes!
818 (* (prefix-numeric-value arg)
819 (/ size 10))
820 (/ (+ 10 (* size (prefix-numeric-value arg))) 10)))
821 (point-min))))
822 (if (and arg (not (consp arg))) (forward-line 1)))
824 (defun end-of-buffer (&optional arg)
825 "Move point to the end of the buffer.
826 With numeric arg N, put point N/10 of the way from the end.
827 If the buffer is narrowed, this command uses the end of the
828 accessible part of the buffer.
830 If Transient Mark mode is disabled, leave mark at previous
831 position, unless a \\[universal-argument] prefix is supplied.
833 Don't use this command in Lisp programs!
834 \(goto-char (point-max)) is faster."
835 (interactive "^P")
836 (or (consp arg) (region-active-p) (push-mark))
837 (let ((size (- (point-max) (point-min))))
838 (goto-char (if (and arg (not (consp arg)))
839 (- (point-max)
840 (if (> size 10000)
841 ;; Avoid overflow for large buffer sizes!
842 (* (prefix-numeric-value arg)
843 (/ size 10))
844 (/ (* size (prefix-numeric-value arg)) 10)))
845 (point-max))))
846 ;; If we went to a place in the middle of the buffer,
847 ;; adjust it to the beginning of a line.
848 (cond ((and arg (not (consp arg))) (forward-line 1))
849 ((and (eq (current-buffer) (window-buffer))
850 (> (point) (window-end nil t)))
851 ;; If the end of the buffer is not already on the screen,
852 ;; then scroll specially to put it near, but not at, the bottom.
853 (overlay-recenter (point))
854 (recenter -3))))
856 (defcustom delete-active-region t
857 "Whether single-char deletion commands delete an active region.
858 This has an effect only if Transient Mark mode is enabled, and
859 affects `delete-forward-char' and `delete-backward-char', though
860 not `delete-char'.
862 If the value is the symbol `kill', the active region is killed
863 instead of deleted."
864 :type '(choice (const :tag "Delete active region" t)
865 (const :tag "Kill active region" kill)
866 (const :tag "Do ordinary deletion" nil))
867 :group 'killing
868 :version "24.1")
870 (defun delete-backward-char (n &optional killflag)
871 "Delete the previous N characters (following if N is negative).
872 If Transient Mark mode is enabled, the mark is active, and N is 1,
873 delete the text in the region and deactivate the mark instead.
874 To disable this, set option `delete-active-region' to nil.
876 Optional second arg KILLFLAG, if non-nil, means to kill (save in
877 kill ring) instead of delete. Interactively, N is the prefix
878 arg, and KILLFLAG is set if N is explicitly specified.
880 In Overwrite mode, single character backward deletion may replace
881 tabs with spaces so as to back over columns, unless point is at
882 the end of the line."
883 (interactive "p\nP")
884 (unless (integerp n)
885 (signal 'wrong-type-argument (list 'integerp n)))
886 (cond ((and (use-region-p)
887 delete-active-region
888 (= n 1))
889 ;; If a region is active, kill or delete it.
890 (if (eq delete-active-region 'kill)
891 (kill-region (region-beginning) (region-end))
892 (delete-region (region-beginning) (region-end))))
893 ;; In Overwrite mode, maybe untabify while deleting
894 ((null (or (null overwrite-mode)
895 (<= n 0)
896 (memq (char-before) '(?\t ?\n))
897 (eobp)
898 (eq (char-after) ?\n)))
899 (let ((ocol (current-column)))
900 (delete-char (- n) killflag)
901 (save-excursion
902 (insert-char ?\s (- ocol (current-column)) nil))))
903 ;; Otherwise, do simple deletion.
904 (t (delete-char (- n) killflag))))
906 (defun delete-forward-char (n &optional killflag)
907 "Delete the following N characters (previous if N is negative).
908 If Transient Mark mode is enabled, the mark is active, and N is 1,
909 delete the text in the region and deactivate the mark instead.
910 To disable this, set variable `delete-active-region' to nil.
912 Optional second arg KILLFLAG non-nil means to kill (save in kill
913 ring) instead of delete. Interactively, N is the prefix arg, and
914 KILLFLAG is set if N was explicitly specified."
915 (interactive "p\nP")
916 (unless (integerp n)
917 (signal 'wrong-type-argument (list 'integerp n)))
918 (cond ((and (use-region-p)
919 delete-active-region
920 (= n 1))
921 ;; If a region is active, kill or delete it.
922 (if (eq delete-active-region 'kill)
923 (kill-region (region-beginning) (region-end))
924 (delete-region (region-beginning) (region-end))))
925 ;; Otherwise, do simple deletion.
926 (t (delete-char n killflag))))
928 (defun mark-whole-buffer ()
929 "Put point at beginning and mark at end of buffer.
930 If narrowing is in effect, only uses the accessible part of the buffer.
931 You probably should not use this function in Lisp programs;
932 it is usually a mistake for a Lisp function to use any subroutine
933 that uses or sets the mark."
934 (interactive)
935 (push-mark (point))
936 (push-mark (point-max) nil t)
937 (goto-char (point-min)))
940 ;; Counting lines, one way or another.
942 (defun goto-line (line &optional buffer)
943 "Go to LINE, counting from line 1 at beginning of buffer.
944 If called interactively, a numeric prefix argument specifies
945 LINE; without a numeric prefix argument, read LINE from the
946 minibuffer.
948 If optional argument BUFFER is non-nil, switch to that buffer and
949 move to line LINE there. If called interactively with \\[universal-argument]
950 as argument, BUFFER is the most recently selected other buffer.
952 Prior to moving point, this function sets the mark (without
953 activating it), unless Transient Mark mode is enabled and the
954 mark is already active.
956 This function is usually the wrong thing to use in a Lisp program.
957 What you probably want instead is something like:
958 (goto-char (point-min))
959 (forward-line (1- N))
960 If at all possible, an even better solution is to use char counts
961 rather than line counts."
962 (interactive
963 (if (and current-prefix-arg (not (consp current-prefix-arg)))
964 (list (prefix-numeric-value current-prefix-arg))
965 ;; Look for a default, a number in the buffer at point.
966 (let* ((default
967 (save-excursion
968 (skip-chars-backward "0-9")
969 (if (looking-at "[0-9]")
970 (string-to-number
971 (buffer-substring-no-properties
972 (point)
973 (progn (skip-chars-forward "0-9")
974 (point)))))))
975 ;; Decide if we're switching buffers.
976 (buffer
977 (if (consp current-prefix-arg)
978 (other-buffer (current-buffer) t)))
979 (buffer-prompt
980 (if buffer
981 (concat " in " (buffer-name buffer))
982 "")))
983 ;; Read the argument, offering that number (if any) as default.
984 (list (read-number (format "Goto line%s: " buffer-prompt)
985 (list default (line-number-at-pos)))
986 buffer))))
987 ;; Switch to the desired buffer, one way or another.
988 (if buffer
989 (let ((window (get-buffer-window buffer)))
990 (if window (select-window window)
991 (switch-to-buffer-other-window buffer))))
992 ;; Leave mark at previous position
993 (or (region-active-p) (push-mark))
994 ;; Move to the specified line number in that buffer.
995 (save-restriction
996 (widen)
997 (goto-char (point-min))
998 (if (eq selective-display t)
999 (re-search-forward "[\n\C-m]" nil 'end (1- line))
1000 (forward-line (1- line)))))
1002 (defun count-words-region (start end &optional arg)
1003 "Count the number of words in the region.
1004 If called interactively, print a message reporting the number of
1005 lines, words, and characters in the region (whether or not the
1006 region is active); with prefix ARG, report for the entire buffer
1007 rather than the region.
1009 If called from Lisp, return the number of words between positions
1010 START and END."
1011 (interactive (if current-prefix-arg
1012 (list nil nil current-prefix-arg)
1013 (list (region-beginning) (region-end) nil)))
1014 (cond ((not (called-interactively-p 'any))
1015 (count-words start end))
1016 (arg
1017 (count-words--buffer-message))
1019 (count-words--message "Region" start end))))
1021 (defun count-words (start end)
1022 "Count words between START and END.
1023 If called interactively, START and END are normally the start and
1024 end of the buffer; but if the region is active, START and END are
1025 the start and end of the region. Print a message reporting the
1026 number of lines, words, and chars.
1028 If called from Lisp, return the number of words between START and
1029 END, without printing any message."
1030 (interactive (list nil nil))
1031 (cond ((not (called-interactively-p 'any))
1032 (let ((words 0))
1033 (save-excursion
1034 (save-restriction
1035 (narrow-to-region start end)
1036 (goto-char (point-min))
1037 (while (forward-word 1)
1038 (setq words (1+ words)))))
1039 words))
1040 ((use-region-p)
1041 (call-interactively 'count-words-region))
1043 (count-words--buffer-message))))
1045 (defun count-words--buffer-message ()
1046 (count-words--message
1047 (if (buffer-narrowed-p) "Narrowed part of buffer" "Buffer")
1048 (point-min) (point-max)))
1050 (defun count-words--message (str start end)
1051 (let ((lines (count-lines start end))
1052 (words (count-words start end))
1053 (chars (- end start)))
1054 (message "%s has %d line%s, %d word%s, and %d character%s."
1056 lines (if (= lines 1) "" "s")
1057 words (if (= words 1) "" "s")
1058 chars (if (= chars 1) "" "s"))))
1060 (define-obsolete-function-alias 'count-lines-region 'count-words-region "24.1")
1062 (defun what-line ()
1063 "Print the current buffer line number and narrowed line number of point."
1064 (interactive)
1065 (let ((start (point-min))
1066 (n (line-number-at-pos)))
1067 (if (= start 1)
1068 (message "Line %d" n)
1069 (save-excursion
1070 (save-restriction
1071 (widen)
1072 (message "line %d (narrowed line %d)"
1073 (+ n (line-number-at-pos start) -1) n))))))
1075 (defun count-lines (start end)
1076 "Return number of lines between START and END.
1077 This is usually the number of newlines between them,
1078 but can be one more if START is not equal to END
1079 and the greater of them is not at the start of a line."
1080 (save-excursion
1081 (save-restriction
1082 (narrow-to-region start end)
1083 (goto-char (point-min))
1084 (if (eq selective-display t)
1085 (save-match-data
1086 (let ((done 0))
1087 (while (re-search-forward "[\n\C-m]" nil t 40)
1088 (setq done (+ 40 done)))
1089 (while (re-search-forward "[\n\C-m]" nil t 1)
1090 (setq done (+ 1 done)))
1091 (goto-char (point-max))
1092 (if (and (/= start end)
1093 (not (bolp)))
1094 (1+ done)
1095 done)))
1096 (- (buffer-size) (forward-line (buffer-size)))))))
1098 (defun line-number-at-pos (&optional pos)
1099 "Return (narrowed) buffer line number at position POS.
1100 If POS is nil, use current buffer location.
1101 Counting starts at (point-min), so the value refers
1102 to the contents of the accessible portion of the buffer."
1103 (let ((opoint (or pos (point))) start)
1104 (save-excursion
1105 (goto-char (point-min))
1106 (setq start (point))
1107 (goto-char opoint)
1108 (forward-line 0)
1109 (1+ (count-lines start (point))))))
1111 (defun what-cursor-position (&optional detail)
1112 "Print info on cursor position (on screen and within buffer).
1113 Also describe the character after point, and give its character code
1114 in octal, decimal and hex.
1116 For a non-ASCII multibyte character, also give its encoding in the
1117 buffer's selected coding system if the coding system encodes the
1118 character safely. If the character is encoded into one byte, that
1119 code is shown in hex. If the character is encoded into more than one
1120 byte, just \"...\" is shown.
1122 In addition, with prefix argument, show details about that character
1123 in *Help* buffer. See also the command `describe-char'."
1124 (interactive "P")
1125 (let* ((char (following-char))
1126 (bidi-fixer
1127 (cond ((memq char '(?\x202a ?\x202b ?\x202d ?\x202e))
1128 ;; If the character is one of LRE, LRO, RLE, RLO, it
1129 ;; will start a directional embedding, which could
1130 ;; completely disrupt the rest of the line (e.g., RLO
1131 ;; will display the rest of the line right-to-left).
1132 ;; So we put an invisible PDF character after these
1133 ;; characters, to end the embedding, which eliminates
1134 ;; any effects on the rest of the line.
1135 (propertize (string ?\x202c) 'invisible t))
1136 ;; Strong right-to-left characters cause reordering of
1137 ;; the following numerical characters which show the
1138 ;; codepoint, so append LRM to countermand that.
1139 ((memq (get-char-code-property char 'bidi-class) '(R AL))
1140 (propertize (string ?\x200e) 'invisible t))
1142 "")))
1143 (beg (point-min))
1144 (end (point-max))
1145 (pos (point))
1146 (total (buffer-size))
1147 (percent (if (> total 50000)
1148 ;; Avoid overflow from multiplying by 100!
1149 (/ (+ (/ total 200) (1- pos)) (max (/ total 100) 1))
1150 (/ (+ (/ total 2) (* 100 (1- pos))) (max total 1))))
1151 (hscroll (if (= (window-hscroll) 0)
1153 (format " Hscroll=%d" (window-hscroll))))
1154 (col (current-column)))
1155 (if (= pos end)
1156 (if (or (/= beg 1) (/= end (1+ total)))
1157 (message "point=%d of %d (%d%%) <%d-%d> column=%d%s"
1158 pos total percent beg end col hscroll)
1159 (message "point=%d of %d (EOB) column=%d%s"
1160 pos total col hscroll))
1161 (let ((coding buffer-file-coding-system)
1162 encoded encoding-msg display-prop under-display)
1163 (if (or (not coding)
1164 (eq (coding-system-type coding) t))
1165 (setq coding (default-value 'buffer-file-coding-system)))
1166 (if (eq (char-charset char) 'eight-bit)
1167 (setq encoding-msg
1168 (format "(%d, #o%o, #x%x, raw-byte)" char char char))
1169 ;; Check if the character is displayed with some `display'
1170 ;; text property. In that case, set under-display to the
1171 ;; buffer substring covered by that property.
1172 (setq display-prop (get-char-property pos 'display))
1173 (if display-prop
1174 (let ((to (or (next-single-char-property-change pos 'display)
1175 (point-max))))
1176 (if (< to (+ pos 4))
1177 (setq under-display "")
1178 (setq under-display "..."
1179 to (+ pos 4)))
1180 (setq under-display
1181 (concat (buffer-substring-no-properties pos to)
1182 under-display)))
1183 (setq encoded (and (>= char 128) (encode-coding-char char coding))))
1184 (setq encoding-msg
1185 (if display-prop
1186 (if (not (stringp display-prop))
1187 (format "(%d, #o%o, #x%x, part of display \"%s\")"
1188 char char char under-display)
1189 (format "(%d, #o%o, #x%x, part of display \"%s\"->\"%s\")"
1190 char char char under-display display-prop))
1191 (if encoded
1192 (format "(%d, #o%o, #x%x, file %s)"
1193 char char char
1194 (if (> (length encoded) 1)
1195 "..."
1196 (encoded-string-description encoded coding)))
1197 (format "(%d, #o%o, #x%x)" char char char)))))
1198 (if detail
1199 ;; We show the detailed information about CHAR.
1200 (describe-char (point)))
1201 (if (or (/= beg 1) (/= end (1+ total)))
1202 (message "Char: %s%s %s point=%d of %d (%d%%) <%d-%d> column=%d%s"
1203 (if (< char 256)
1204 (single-key-description char)
1205 (buffer-substring-no-properties (point) (1+ (point))))
1206 bidi-fixer
1207 encoding-msg pos total percent beg end col hscroll)
1208 (message "Char: %s%s %s point=%d of %d (%d%%) column=%d%s"
1209 (if enable-multibyte-characters
1210 (if (< char 128)
1211 (single-key-description char)
1212 (buffer-substring-no-properties (point) (1+ (point))))
1213 (single-key-description char))
1214 bidi-fixer encoding-msg pos total percent col hscroll))))))
1216 ;; Initialize read-expression-map. It is defined at C level.
1217 (defvar read-expression-map
1218 (let ((m (make-sparse-keymap)))
1219 (define-key m "\M-\t" 'completion-at-point)
1220 ;; Might as well bind TAB to completion, since inserting a TAB char is
1221 ;; much too rarely useful.
1222 (define-key m "\t" 'completion-at-point)
1223 (set-keymap-parent m minibuffer-local-map)
1226 (defun read-minibuffer (prompt &optional initial-contents)
1227 "Return a Lisp object read using the minibuffer, unevaluated.
1228 Prompt with PROMPT. If non-nil, optional second arg INITIAL-CONTENTS
1229 is a string to insert in the minibuffer before reading.
1230 \(INITIAL-CONTENTS can also be a cons of a string and an integer.
1231 Such arguments are used as in `read-from-minibuffer'.)"
1232 ;; Used for interactive spec `x'.
1233 (read-from-minibuffer prompt initial-contents minibuffer-local-map
1234 t 'minibuffer-history))
1236 (defun eval-minibuffer (prompt &optional initial-contents)
1237 "Return value of Lisp expression read using the minibuffer.
1238 Prompt with PROMPT. If non-nil, optional second arg INITIAL-CONTENTS
1239 is a string to insert in the minibuffer before reading.
1240 \(INITIAL-CONTENTS can also be a cons of a string and an integer.
1241 Such arguments are used as in `read-from-minibuffer'.)"
1242 ;; Used for interactive spec `X'.
1243 (eval (read--expression prompt initial-contents)))
1245 (defvar minibuffer-completing-symbol nil
1246 "Non-nil means completing a Lisp symbol in the minibuffer.")
1247 (make-obsolete-variable 'minibuffer-completing-symbol nil "24.1" 'get)
1249 (defvar minibuffer-default nil
1250 "The current default value or list of default values in the minibuffer.
1251 The functions `read-from-minibuffer' and `completing-read' bind
1252 this variable locally.")
1254 (defcustom eval-expression-print-level 4
1255 "Value for `print-level' while printing value in `eval-expression'.
1256 A value of nil means no limit."
1257 :group 'lisp
1258 :type '(choice (const :tag "No Limit" nil) integer)
1259 :version "21.1")
1261 (defcustom eval-expression-print-length 12
1262 "Value for `print-length' while printing value in `eval-expression'.
1263 A value of nil means no limit."
1264 :group 'lisp
1265 :type '(choice (const :tag "No Limit" nil) integer)
1266 :version "21.1")
1268 (defcustom eval-expression-debug-on-error t
1269 "If non-nil set `debug-on-error' to t in `eval-expression'.
1270 If nil, don't change the value of `debug-on-error'."
1271 :group 'lisp
1272 :type 'boolean
1273 :version "21.1")
1275 (defun eval-expression-print-format (value)
1276 "Format VALUE as a result of evaluated expression.
1277 Return a formatted string which is displayed in the echo area
1278 in addition to the value printed by prin1 in functions which
1279 display the result of expression evaluation."
1280 (if (and (integerp value)
1281 (or (not (memq this-command '(eval-last-sexp eval-print-last-sexp)))
1282 (eq this-command last-command)
1283 (if (boundp 'edebug-active) edebug-active)))
1284 (let ((char-string
1285 (if (or (if (boundp 'edebug-active) edebug-active)
1286 (memq this-command '(eval-last-sexp eval-print-last-sexp)))
1287 (prin1-char value))))
1288 (if char-string
1289 (format " (#o%o, #x%x, %s)" value value char-string)
1290 (format " (#o%o, #x%x)" value value)))))
1292 (defvar eval-expression-minibuffer-setup-hook nil
1293 "Hook run by `eval-expression' when entering the minibuffer.")
1295 (defun read--expression (prompt &optional initial-contents)
1296 (let ((minibuffer-completing-symbol t))
1297 (minibuffer-with-setup-hook
1298 (lambda ()
1299 (add-hook 'completion-at-point-functions
1300 #'lisp-completion-at-point nil t)
1301 (run-hooks 'eval-expression-minibuffer-setup-hook))
1302 (read-from-minibuffer prompt initial-contents
1303 read-expression-map t
1304 'read-expression-history))))
1306 ;; We define this, rather than making `eval' interactive,
1307 ;; for the sake of completion of names like eval-region, eval-buffer.
1308 (defun eval-expression (exp &optional insert-value)
1309 "Evaluate EXP and print value in the echo area.
1310 When called interactively, read an Emacs Lisp expression and
1311 evaluate it.
1312 Value is also consed on to front of the variable `values'.
1313 Optional argument INSERT-VALUE non-nil (interactively,
1314 with prefix argument) means insert the result into the current buffer
1315 instead of printing it in the echo area. Truncates long output
1316 according to the value of the variables `eval-expression-print-length'
1317 and `eval-expression-print-level'.
1319 If `eval-expression-debug-on-error' is non-nil, which is the default,
1320 this command arranges for all errors to enter the debugger."
1321 (interactive
1322 (list (read--expression "Eval: ")
1323 current-prefix-arg))
1325 (if (null eval-expression-debug-on-error)
1326 (push (eval exp lexical-binding) values)
1327 (let ((old-value (make-symbol "t")) new-value)
1328 ;; Bind debug-on-error to something unique so that we can
1329 ;; detect when evalled code changes it.
1330 (let ((debug-on-error old-value))
1331 (push (eval exp lexical-binding) values)
1332 (setq new-value debug-on-error))
1333 ;; If evalled code has changed the value of debug-on-error,
1334 ;; propagate that change to the global binding.
1335 (unless (eq old-value new-value)
1336 (setq debug-on-error new-value))))
1338 (let ((print-length eval-expression-print-length)
1339 (print-level eval-expression-print-level)
1340 (deactivate-mark))
1341 (if insert-value
1342 (with-no-warnings
1343 (let ((standard-output (current-buffer)))
1344 (prin1 (car values))))
1345 (prog1
1346 (prin1 (car values) t)
1347 (let ((str (eval-expression-print-format (car values))))
1348 (if str (princ str t)))))))
1350 (defun edit-and-eval-command (prompt command)
1351 "Prompting with PROMPT, let user edit COMMAND and eval result.
1352 COMMAND is a Lisp expression. Let user edit that expression in
1353 the minibuffer, then read and evaluate the result."
1354 (let ((command
1355 (let ((print-level nil)
1356 (minibuffer-history-sexp-flag (1+ (minibuffer-depth))))
1357 (unwind-protect
1358 (read-from-minibuffer prompt
1359 (prin1-to-string command)
1360 read-expression-map t
1361 'command-history)
1362 ;; If command was added to command-history as a string,
1363 ;; get rid of that. We want only evaluable expressions there.
1364 (if (stringp (car command-history))
1365 (setq command-history (cdr command-history)))))))
1367 ;; If command to be redone does not match front of history,
1368 ;; add it to the history.
1369 (or (equal command (car command-history))
1370 (setq command-history (cons command command-history)))
1371 (eval command)))
1373 (defun repeat-complex-command (arg)
1374 "Edit and re-evaluate last complex command, or ARGth from last.
1375 A complex command is one which used the minibuffer.
1376 The command is placed in the minibuffer as a Lisp form for editing.
1377 The result is executed, repeating the command as changed.
1378 If the command has been changed or is not the most recent previous
1379 command it is added to the front of the command history.
1380 You can use the minibuffer history commands \
1381 \\<minibuffer-local-map>\\[next-history-element] and \\[previous-history-element]
1382 to get different commands to edit and resubmit."
1383 (interactive "p")
1384 (let ((elt (nth (1- arg) command-history))
1385 newcmd)
1386 (if elt
1387 (progn
1388 (setq newcmd
1389 (let ((print-level nil)
1390 (minibuffer-history-position arg)
1391 (minibuffer-history-sexp-flag (1+ (minibuffer-depth))))
1392 (unwind-protect
1393 (read-from-minibuffer
1394 "Redo: " (prin1-to-string elt) read-expression-map t
1395 (cons 'command-history arg))
1397 ;; If command was added to command-history as a
1398 ;; string, get rid of that. We want only
1399 ;; evaluable expressions there.
1400 (if (stringp (car command-history))
1401 (setq command-history (cdr command-history))))))
1403 ;; If command to be redone does not match front of history,
1404 ;; add it to the history.
1405 (or (equal newcmd (car command-history))
1406 (setq command-history (cons newcmd command-history)))
1407 (unwind-protect
1408 (progn
1409 ;; Trick called-interactively-p into thinking that `newcmd' is
1410 ;; an interactive call (bug#14136).
1411 (add-hook 'called-interactively-p-functions
1412 #'repeat-complex-command--called-interactively-skip)
1413 (eval newcmd))
1414 (remove-hook 'called-interactively-p-functions
1415 #'repeat-complex-command--called-interactively-skip)))
1416 (if command-history
1417 (error "Argument %d is beyond length of command history" arg)
1418 (error "There are no previous complex commands to repeat")))))
1420 (defun repeat-complex-command--called-interactively-skip (i _frame1 frame2)
1421 (and (eq 'eval (cadr frame2))
1422 (eq 'repeat-complex-command
1423 (cadr (backtrace-frame i #'called-interactively-p)))
1426 (defvar extended-command-history nil)
1428 (defun read-extended-command ()
1429 "Read command name to invoke in `execute-extended-command'."
1430 (minibuffer-with-setup-hook
1431 (lambda ()
1432 (set (make-local-variable 'minibuffer-default-add-function)
1433 (lambda ()
1434 ;; Get a command name at point in the original buffer
1435 ;; to propose it after M-n.
1436 (with-current-buffer (window-buffer (minibuffer-selected-window))
1437 (and (commandp (function-called-at-point))
1438 (format "%S" (function-called-at-point)))))))
1439 ;; Read a string, completing from and restricting to the set of
1440 ;; all defined commands. Don't provide any initial input.
1441 ;; Save the command read on the extended-command history list.
1442 (completing-read
1443 (concat (cond
1444 ((eq current-prefix-arg '-) "- ")
1445 ((and (consp current-prefix-arg)
1446 (eq (car current-prefix-arg) 4)) "C-u ")
1447 ((and (consp current-prefix-arg)
1448 (integerp (car current-prefix-arg)))
1449 (format "%d " (car current-prefix-arg)))
1450 ((integerp current-prefix-arg)
1451 (format "%d " current-prefix-arg)))
1452 ;; This isn't strictly correct if `execute-extended-command'
1453 ;; is bound to anything else (e.g. [menu]).
1454 ;; It could use (key-description (this-single-command-keys)),
1455 ;; but actually a prompt other than "M-x" would be confusing,
1456 ;; because "M-x" is a well-known prompt to read a command
1457 ;; and it serves as a shorthand for "Extended command: ".
1458 "M-x ")
1459 obarray 'commandp t nil 'extended-command-history)))
1461 (defcustom suggest-key-bindings t
1462 "Non-nil means show the equivalent key-binding when M-x command has one.
1463 The value can be a length of time to show the message for.
1464 If the value is non-nil and not a number, we wait 2 seconds."
1465 :group 'keyboard
1466 :type '(choice (const :tag "off" nil)
1467 (integer :tag "time" 2)
1468 (other :tag "on")))
1470 (defun execute-extended-command (prefixarg &optional command-name)
1471 ;; Based on Fexecute_extended_command in keyboard.c of Emacs.
1472 ;; Aaron S. Hawley <aaron.s.hawley(at)gmail.com> 2009-08-24
1473 "Read function name, then read its arguments and call it.
1475 To pass a numeric argument to the command you are invoking, specify
1476 the numeric argument to this command.
1478 Noninteractively, the argument PREFIXARG is the prefix argument to
1479 give to the command you invoke, if it asks for an argument."
1480 (interactive (list current-prefix-arg (read-extended-command)))
1481 ;; Emacs<24 calling-convention was with a single `prefixarg' argument.
1482 (if (null command-name)
1483 (setq command-name (let ((current-prefix-arg prefixarg)) ; for prompt
1484 (read-extended-command))))
1485 (let* ((function (and (stringp command-name) (intern-soft command-name)))
1486 (binding (and suggest-key-bindings
1487 (not executing-kbd-macro)
1488 (where-is-internal function overriding-local-map t))))
1489 (unless (commandp function)
1490 (error "`%s' is not a valid command name" command-name))
1491 (setq this-command function)
1492 ;; Normally `real-this-command' should never be changed, but here we really
1493 ;; want to pretend that M-x <cmd> RET is nothing more than a "key
1494 ;; binding" for <cmd>, so the command the user really wanted to run is
1495 ;; `function' and not `execute-extended-command'. The difference is
1496 ;; visible in cases such as M-x <cmd> RET and then C-x z (bug#11506).
1497 (setq real-this-command function)
1498 (let ((prefix-arg prefixarg))
1499 (command-execute function 'record))
1500 ;; If enabled, show which key runs this command.
1501 (when binding
1502 ;; But first wait, and skip the message if there is input.
1503 (let* ((waited
1504 ;; If this command displayed something in the echo area;
1505 ;; wait a few seconds, then display our suggestion message.
1506 (sit-for (cond
1507 ((zerop (length (current-message))) 0)
1508 ((numberp suggest-key-bindings) suggest-key-bindings)
1509 (t 2)))))
1510 (when (and waited (not (consp unread-command-events)))
1511 (with-temp-message
1512 (format "You can run the command `%s' with %s"
1513 function (key-description binding))
1514 (sit-for (if (numberp suggest-key-bindings)
1515 suggest-key-bindings
1516 2))))))))
1518 (defun command-execute (cmd &optional record-flag keys special)
1519 ;; BEWARE: Called directly from the C code.
1520 "Execute CMD as an editor command.
1521 CMD must be a symbol that satisfies the `commandp' predicate.
1522 Optional second arg RECORD-FLAG non-nil
1523 means unconditionally put this command in the variable `command-history'.
1524 Otherwise, that is done only if an arg is read using the minibuffer.
1525 The argument KEYS specifies the value to use instead of (this-command-keys)
1526 when reading the arguments; if it is nil, (this-command-keys) is used.
1527 The argument SPECIAL, if non-nil, means that this command is executing
1528 a special event, so ignore the prefix argument and don't clear it."
1529 (setq debug-on-next-call nil)
1530 (let ((prefixarg (unless special
1531 (prog1 prefix-arg
1532 (setq current-prefix-arg prefix-arg)
1533 (setq prefix-arg nil)))))
1534 (and (symbolp cmd)
1535 (get cmd 'disabled)
1536 ;; FIXME: Weird calling convention!
1537 (run-hooks 'disabled-command-function))
1538 (let ((final cmd))
1539 (while
1540 (progn
1541 (setq final (indirect-function final))
1542 (if (autoloadp final)
1543 (setq final (autoload-do-load final cmd)))))
1544 (cond
1545 ((arrayp final)
1546 ;; If requested, place the macro in the command history. For
1547 ;; other sorts of commands, call-interactively takes care of this.
1548 (when record-flag
1549 (push `(execute-kbd-macro ,final ,prefixarg) command-history)
1550 ;; Don't keep command history around forever.
1551 (when (and (numberp history-length) (> history-length 0))
1552 (let ((cell (nthcdr history-length command-history)))
1553 (if (consp cell) (setcdr cell nil)))))
1554 (execute-kbd-macro final prefixarg))
1556 ;; Pass `cmd' rather than `final', for the backtrace's sake.
1557 (prog1 (call-interactively cmd record-flag keys)
1558 (when (and (symbolp cmd)
1559 (get cmd 'byte-obsolete-info)
1560 (not (get cmd 'command-execute-obsolete-warned)))
1561 (put cmd 'command-execute-obsolete-warned t)
1562 (message "%s" (macroexp--obsolete-warning
1563 cmd (get cmd 'byte-obsolete-info) "command")))))))))
1565 (defvar minibuffer-history nil
1566 "Default minibuffer history list.
1567 This is used for all minibuffer input
1568 except when an alternate history list is specified.
1570 Maximum length of the history list is determined by the value
1571 of `history-length', which see.")
1572 (defvar minibuffer-history-sexp-flag nil
1573 "Control whether history list elements are expressions or strings.
1574 If the value of this variable equals current minibuffer depth,
1575 they are expressions; otherwise they are strings.
1576 \(That convention is designed to do the right thing for
1577 recursive uses of the minibuffer.)")
1578 (setq minibuffer-history-variable 'minibuffer-history)
1579 (setq minibuffer-history-position nil) ;; Defvar is in C code.
1580 (defvar minibuffer-history-search-history nil)
1582 (defvar minibuffer-text-before-history nil
1583 "Text that was in this minibuffer before any history commands.
1584 This is nil if there have not yet been any history commands
1585 in this use of the minibuffer.")
1587 (add-hook 'minibuffer-setup-hook 'minibuffer-history-initialize)
1589 (defun minibuffer-history-initialize ()
1590 (setq minibuffer-text-before-history nil))
1592 (defun minibuffer-avoid-prompt (_new _old)
1593 "A point-motion hook for the minibuffer, that moves point out of the prompt."
1594 (constrain-to-field nil (point-max)))
1596 (defcustom minibuffer-history-case-insensitive-variables nil
1597 "Minibuffer history variables for which matching should ignore case.
1598 If a history variable is a member of this list, then the
1599 \\[previous-matching-history-element] and \\[next-matching-history-element]\
1600 commands ignore case when searching it, regardless of `case-fold-search'."
1601 :type '(repeat variable)
1602 :group 'minibuffer)
1604 (defun previous-matching-history-element (regexp n)
1605 "Find the previous history element that matches REGEXP.
1606 \(Previous history elements refer to earlier actions.)
1607 With prefix argument N, search for Nth previous match.
1608 If N is negative, find the next or Nth next match.
1609 Normally, history elements are matched case-insensitively if
1610 `case-fold-search' is non-nil, but an uppercase letter in REGEXP
1611 makes the search case-sensitive.
1612 See also `minibuffer-history-case-insensitive-variables'."
1613 (interactive
1614 (let* ((enable-recursive-minibuffers t)
1615 (regexp (read-from-minibuffer "Previous element matching (regexp): "
1617 minibuffer-local-map
1619 'minibuffer-history-search-history
1620 (car minibuffer-history-search-history))))
1621 ;; Use the last regexp specified, by default, if input is empty.
1622 (list (if (string= regexp "")
1623 (if minibuffer-history-search-history
1624 (car minibuffer-history-search-history)
1625 (user-error "No previous history search regexp"))
1626 regexp)
1627 (prefix-numeric-value current-prefix-arg))))
1628 (unless (zerop n)
1629 (if (and (zerop minibuffer-history-position)
1630 (null minibuffer-text-before-history))
1631 (setq minibuffer-text-before-history
1632 (minibuffer-contents-no-properties)))
1633 (let ((history (symbol-value minibuffer-history-variable))
1634 (case-fold-search
1635 (if (isearch-no-upper-case-p regexp t) ; assume isearch.el is dumped
1636 ;; On some systems, ignore case for file names.
1637 (if (memq minibuffer-history-variable
1638 minibuffer-history-case-insensitive-variables)
1640 ;; Respect the user's setting for case-fold-search:
1641 case-fold-search)
1642 nil))
1643 prevpos
1644 match-string
1645 match-offset
1646 (pos minibuffer-history-position))
1647 (while (/= n 0)
1648 (setq prevpos pos)
1649 (setq pos (min (max 1 (+ pos (if (< n 0) -1 1))) (length history)))
1650 (when (= pos prevpos)
1651 (user-error (if (= pos 1)
1652 "No later matching history item"
1653 "No earlier matching history item")))
1654 (setq match-string
1655 (if (eq minibuffer-history-sexp-flag (minibuffer-depth))
1656 (let ((print-level nil))
1657 (prin1-to-string (nth (1- pos) history)))
1658 (nth (1- pos) history)))
1659 (setq match-offset
1660 (if (< n 0)
1661 (and (string-match regexp match-string)
1662 (match-end 0))
1663 (and (string-match (concat ".*\\(" regexp "\\)") match-string)
1664 (match-beginning 1))))
1665 (when match-offset
1666 (setq n (+ n (if (< n 0) 1 -1)))))
1667 (setq minibuffer-history-position pos)
1668 (goto-char (point-max))
1669 (delete-minibuffer-contents)
1670 (insert match-string)
1671 (goto-char (+ (minibuffer-prompt-end) match-offset))))
1672 (if (memq (car (car command-history)) '(previous-matching-history-element
1673 next-matching-history-element))
1674 (setq command-history (cdr command-history))))
1676 (defun next-matching-history-element (regexp n)
1677 "Find the next history element that matches REGEXP.
1678 \(The next history element refers to a more recent action.)
1679 With prefix argument N, search for Nth next match.
1680 If N is negative, find the previous or Nth previous match.
1681 Normally, history elements are matched case-insensitively if
1682 `case-fold-search' is non-nil, but an uppercase letter in REGEXP
1683 makes the search case-sensitive."
1684 (interactive
1685 (let* ((enable-recursive-minibuffers t)
1686 (regexp (read-from-minibuffer "Next element matching (regexp): "
1688 minibuffer-local-map
1690 'minibuffer-history-search-history
1691 (car minibuffer-history-search-history))))
1692 ;; Use the last regexp specified, by default, if input is empty.
1693 (list (if (string= regexp "")
1694 (if minibuffer-history-search-history
1695 (car minibuffer-history-search-history)
1696 (user-error "No previous history search regexp"))
1697 regexp)
1698 (prefix-numeric-value current-prefix-arg))))
1699 (previous-matching-history-element regexp (- n)))
1701 (defvar minibuffer-temporary-goal-position nil)
1703 (defvar minibuffer-default-add-function 'minibuffer-default-add-completions
1704 "Function run by `goto-history-element' before consuming default values.
1705 This is useful to dynamically add more elements to the list of default values
1706 when `goto-history-element' reaches the end of this list.
1707 Before calling this function `goto-history-element' sets the variable
1708 `minibuffer-default-add-done' to t, so it will call this function only
1709 once. In special cases, when this function needs to be called more
1710 than once, it can set `minibuffer-default-add-done' to nil explicitly,
1711 overriding the setting of this variable to t in `goto-history-element'.")
1713 (defvar minibuffer-default-add-done nil
1714 "When nil, add more elements to the end of the list of default values.
1715 The value nil causes `goto-history-element' to add more elements to
1716 the list of defaults when it reaches the end of this list. It does
1717 this by calling a function defined by `minibuffer-default-add-function'.")
1719 (make-variable-buffer-local 'minibuffer-default-add-done)
1721 (defun minibuffer-default-add-completions ()
1722 "Return a list of all completions without the default value.
1723 This function is used to add all elements of the completion table to
1724 the end of the list of defaults just after the default value."
1725 (let ((def minibuffer-default)
1726 (all (all-completions ""
1727 minibuffer-completion-table
1728 minibuffer-completion-predicate)))
1729 (if (listp def)
1730 (append def all)
1731 (cons def (delete def all)))))
1733 (defun goto-history-element (nabs)
1734 "Puts element of the minibuffer history in the minibuffer.
1735 The argument NABS specifies the absolute history position."
1736 (interactive "p")
1737 (when (and (not minibuffer-default-add-done)
1738 (functionp minibuffer-default-add-function)
1739 (< nabs (- (if (listp minibuffer-default)
1740 (length minibuffer-default)
1741 1))))
1742 (setq minibuffer-default-add-done t
1743 minibuffer-default (funcall minibuffer-default-add-function)))
1744 (let ((minimum (if minibuffer-default
1745 (- (if (listp minibuffer-default)
1746 (length minibuffer-default)
1749 elt minibuffer-returned-to-present)
1750 (if (and (zerop minibuffer-history-position)
1751 (null minibuffer-text-before-history))
1752 (setq minibuffer-text-before-history
1753 (minibuffer-contents-no-properties)))
1754 (if (< nabs minimum)
1755 (user-error (if minibuffer-default
1756 "End of defaults; no next item"
1757 "End of history; no default available")))
1758 (if (> nabs (length (symbol-value minibuffer-history-variable)))
1759 (user-error "Beginning of history; no preceding item"))
1760 (unless (memq last-command '(next-history-element
1761 previous-history-element))
1762 (let ((prompt-end (minibuffer-prompt-end)))
1763 (set (make-local-variable 'minibuffer-temporary-goal-position)
1764 (cond ((<= (point) prompt-end) prompt-end)
1765 ((eobp) nil)
1766 (t (point))))))
1767 (goto-char (point-max))
1768 (delete-minibuffer-contents)
1769 (setq minibuffer-history-position nabs)
1770 (cond ((< nabs 0)
1771 (setq elt (if (listp minibuffer-default)
1772 (nth (1- (abs nabs)) minibuffer-default)
1773 minibuffer-default)))
1774 ((= nabs 0)
1775 (setq elt (or minibuffer-text-before-history ""))
1776 (setq minibuffer-returned-to-present t)
1777 (setq minibuffer-text-before-history nil))
1778 (t (setq elt (nth (1- minibuffer-history-position)
1779 (symbol-value minibuffer-history-variable)))))
1780 (insert
1781 (if (and (eq minibuffer-history-sexp-flag (minibuffer-depth))
1782 (not minibuffer-returned-to-present))
1783 (let ((print-level nil))
1784 (prin1-to-string elt))
1785 elt))
1786 (goto-char (or minibuffer-temporary-goal-position (point-max)))))
1788 (defun next-history-element (n)
1789 "Puts next element of the minibuffer history in the minibuffer.
1790 With argument N, it uses the Nth following element."
1791 (interactive "p")
1792 (or (zerop n)
1793 (goto-history-element (- minibuffer-history-position n))))
1795 (defun previous-history-element (n)
1796 "Puts previous element of the minibuffer history in the minibuffer.
1797 With argument N, it uses the Nth previous element."
1798 (interactive "p")
1799 (or (zerop n)
1800 (goto-history-element (+ minibuffer-history-position n))))
1802 (defun next-complete-history-element (n)
1803 "Get next history element which completes the minibuffer before the point.
1804 The contents of the minibuffer after the point are deleted, and replaced
1805 by the new completion."
1806 (interactive "p")
1807 (let ((point-at-start (point)))
1808 (next-matching-history-element
1809 (concat
1810 "^" (regexp-quote (buffer-substring (minibuffer-prompt-end) (point))))
1812 ;; next-matching-history-element always puts us at (point-min).
1813 ;; Move to the position we were at before changing the buffer contents.
1814 ;; This is still sensible, because the text before point has not changed.
1815 (goto-char point-at-start)))
1817 (defun previous-complete-history-element (n)
1819 Get previous history element which completes the minibuffer before the point.
1820 The contents of the minibuffer after the point are deleted, and replaced
1821 by the new completion."
1822 (interactive "p")
1823 (next-complete-history-element (- n)))
1825 ;; For compatibility with the old subr of the same name.
1826 (defun minibuffer-prompt-width ()
1827 "Return the display width of the minibuffer prompt.
1828 Return 0 if current buffer is not a minibuffer."
1829 ;; Return the width of everything before the field at the end of
1830 ;; the buffer; this should be 0 for normal buffers.
1831 (1- (minibuffer-prompt-end)))
1833 ;; isearch minibuffer history
1834 (add-hook 'minibuffer-setup-hook 'minibuffer-history-isearch-setup)
1836 (defvar minibuffer-history-isearch-message-overlay)
1837 (make-variable-buffer-local 'minibuffer-history-isearch-message-overlay)
1839 (defun minibuffer-history-isearch-setup ()
1840 "Set up a minibuffer for using isearch to search the minibuffer history.
1841 Intended to be added to `minibuffer-setup-hook'."
1842 (set (make-local-variable 'isearch-search-fun-function)
1843 'minibuffer-history-isearch-search)
1844 (set (make-local-variable 'isearch-message-function)
1845 'minibuffer-history-isearch-message)
1846 (set (make-local-variable 'isearch-wrap-function)
1847 'minibuffer-history-isearch-wrap)
1848 (set (make-local-variable 'isearch-push-state-function)
1849 'minibuffer-history-isearch-push-state)
1850 (add-hook 'isearch-mode-end-hook 'minibuffer-history-isearch-end nil t))
1852 (defun minibuffer-history-isearch-end ()
1853 "Clean up the minibuffer after terminating isearch in the minibuffer."
1854 (if minibuffer-history-isearch-message-overlay
1855 (delete-overlay minibuffer-history-isearch-message-overlay)))
1857 (defun minibuffer-history-isearch-search ()
1858 "Return the proper search function, for isearch in minibuffer history."
1859 (lambda (string bound noerror)
1860 (let ((search-fun
1861 ;; Use standard functions to search within minibuffer text
1862 (isearch-search-fun-default))
1863 found)
1864 ;; Avoid lazy-highlighting matches in the minibuffer prompt when
1865 ;; searching forward. Lazy-highlight calls this lambda with the
1866 ;; bound arg, so skip the minibuffer prompt.
1867 (if (and bound isearch-forward (< (point) (minibuffer-prompt-end)))
1868 (goto-char (minibuffer-prompt-end)))
1870 ;; 1. First try searching in the initial minibuffer text
1871 (funcall search-fun string
1872 (if isearch-forward bound (minibuffer-prompt-end))
1873 noerror)
1874 ;; 2. If the above search fails, start putting next/prev history
1875 ;; elements in the minibuffer successively, and search the string
1876 ;; in them. Do this only when bound is nil (i.e. not while
1877 ;; lazy-highlighting search strings in the current minibuffer text).
1878 (unless bound
1879 (condition-case nil
1880 (progn
1881 (while (not found)
1882 (cond (isearch-forward
1883 (next-history-element 1)
1884 (goto-char (minibuffer-prompt-end)))
1886 (previous-history-element 1)
1887 (goto-char (point-max))))
1888 (setq isearch-barrier (point) isearch-opoint (point))
1889 ;; After putting the next/prev history element, search
1890 ;; the string in them again, until next-history-element
1891 ;; or previous-history-element raises an error at the
1892 ;; beginning/end of history.
1893 (setq found (funcall search-fun string
1894 (unless isearch-forward
1895 ;; For backward search, don't search
1896 ;; in the minibuffer prompt
1897 (minibuffer-prompt-end))
1898 noerror)))
1899 ;; Return point of the new search result
1900 (point))
1901 ;; Return nil when next(prev)-history-element fails
1902 (error nil)))))))
1904 (defun minibuffer-history-isearch-message (&optional c-q-hack ellipsis)
1905 "Display the minibuffer history search prompt.
1906 If there are no search errors, this function displays an overlay with
1907 the isearch prompt which replaces the original minibuffer prompt.
1908 Otherwise, it displays the standard isearch message returned from
1909 the function `isearch-message'."
1910 (if (not (and (minibufferp) isearch-success (not isearch-error)))
1911 ;; Use standard function `isearch-message' when not in the minibuffer,
1912 ;; or search fails, or has an error (like incomplete regexp).
1913 ;; This function overwrites minibuffer text with isearch message,
1914 ;; so it's possible to see what is wrong in the search string.
1915 (isearch-message c-q-hack ellipsis)
1916 ;; Otherwise, put the overlay with the standard isearch prompt over
1917 ;; the initial minibuffer prompt.
1918 (if (overlayp minibuffer-history-isearch-message-overlay)
1919 (move-overlay minibuffer-history-isearch-message-overlay
1920 (point-min) (minibuffer-prompt-end))
1921 (setq minibuffer-history-isearch-message-overlay
1922 (make-overlay (point-min) (minibuffer-prompt-end)))
1923 (overlay-put minibuffer-history-isearch-message-overlay 'evaporate t))
1924 (overlay-put minibuffer-history-isearch-message-overlay
1925 'display (isearch-message-prefix c-q-hack ellipsis))
1926 ;; And clear any previous isearch message.
1927 (message "")))
1929 (defun minibuffer-history-isearch-wrap ()
1930 "Wrap the minibuffer history search when search fails.
1931 Move point to the first history element for a forward search,
1932 or to the last history element for a backward search."
1933 ;; When `minibuffer-history-isearch-search' fails on reaching the
1934 ;; beginning/end of the history, wrap the search to the first/last
1935 ;; minibuffer history element.
1936 (if isearch-forward
1937 (goto-history-element (length (symbol-value minibuffer-history-variable)))
1938 (goto-history-element 0))
1939 (setq isearch-success t)
1940 (goto-char (if isearch-forward (minibuffer-prompt-end) (point-max))))
1942 (defun minibuffer-history-isearch-push-state ()
1943 "Save a function restoring the state of minibuffer history search.
1944 Save `minibuffer-history-position' to the additional state parameter
1945 in the search status stack."
1946 (let ((pos minibuffer-history-position))
1947 (lambda (cmd)
1948 (minibuffer-history-isearch-pop-state cmd pos))))
1950 (defun minibuffer-history-isearch-pop-state (_cmd hist-pos)
1951 "Restore the minibuffer history search state.
1952 Go to the history element by the absolute history position HIST-POS."
1953 (goto-history-element hist-pos))
1956 ;Put this on C-x u, so we can force that rather than C-_ into startup msg
1957 (define-obsolete-function-alias 'advertised-undo 'undo "23.2")
1959 (defconst undo-equiv-table (make-hash-table :test 'eq :weakness t)
1960 "Table mapping redo records to the corresponding undo one.
1961 A redo record for undo-in-region maps to t.
1962 A redo record for ordinary undo maps to the following (earlier) undo.")
1964 (defvar undo-in-region nil
1965 "Non-nil if `pending-undo-list' is not just a tail of `buffer-undo-list'.")
1967 (defvar undo-no-redo nil
1968 "If t, `undo' doesn't go through redo entries.")
1970 (defvar pending-undo-list nil
1971 "Within a run of consecutive undo commands, list remaining to be undone.
1972 If t, we undid all the way to the end of it.")
1974 (defun undo (&optional arg)
1975 "Undo some previous changes.
1976 Repeat this command to undo more changes.
1977 A numeric ARG serves as a repeat count.
1979 In Transient Mark mode when the mark is active, only undo changes within
1980 the current region. Similarly, when not in Transient Mark mode, just \\[universal-argument]
1981 as an argument limits undo to changes within the current region."
1982 (interactive "*P")
1983 ;; Make last-command indicate for the next command that this was an undo.
1984 ;; That way, another undo will undo more.
1985 ;; If we get to the end of the undo history and get an error,
1986 ;; another undo command will find the undo history empty
1987 ;; and will get another error. To begin undoing the undos,
1988 ;; you must type some other command.
1989 (let* ((modified (buffer-modified-p))
1990 ;; For an indirect buffer, look in the base buffer for the
1991 ;; auto-save data.
1992 (base-buffer (or (buffer-base-buffer) (current-buffer)))
1993 (recent-save (with-current-buffer base-buffer
1994 (recent-auto-save-p)))
1995 message)
1996 ;; If we get an error in undo-start,
1997 ;; the next command should not be a "consecutive undo".
1998 ;; So set `this-command' to something other than `undo'.
1999 (setq this-command 'undo-start)
2001 (unless (and (eq last-command 'undo)
2002 (or (eq pending-undo-list t)
2003 ;; If something (a timer or filter?) changed the buffer
2004 ;; since the previous command, don't continue the undo seq.
2005 (let ((list buffer-undo-list))
2006 (while (eq (car list) nil)
2007 (setq list (cdr list)))
2008 ;; If the last undo record made was made by undo
2009 ;; it shows nothing else happened in between.
2010 (gethash list undo-equiv-table))))
2011 (setq undo-in-region
2012 (or (region-active-p) (and arg (not (numberp arg)))))
2013 (if undo-in-region
2014 (undo-start (region-beginning) (region-end))
2015 (undo-start))
2016 ;; get rid of initial undo boundary
2017 (undo-more 1))
2018 ;; If we got this far, the next command should be a consecutive undo.
2019 (setq this-command 'undo)
2020 ;; Check to see whether we're hitting a redo record, and if
2021 ;; so, ask the user whether she wants to skip the redo/undo pair.
2022 (let ((equiv (gethash pending-undo-list undo-equiv-table)))
2023 (or (eq (selected-window) (minibuffer-window))
2024 (setq message (format "%s%s!"
2025 (if (or undo-no-redo (not equiv))
2026 "Undo" "Redo")
2027 (if undo-in-region " in region" ""))))
2028 (when (and (consp equiv) undo-no-redo)
2029 ;; The equiv entry might point to another redo record if we have done
2030 ;; undo-redo-undo-redo-... so skip to the very last equiv.
2031 (while (let ((next (gethash equiv undo-equiv-table)))
2032 (if next (setq equiv next))))
2033 (setq pending-undo-list equiv)))
2034 (undo-more
2035 (if (numberp arg)
2036 (prefix-numeric-value arg)
2038 ;; Record the fact that the just-generated undo records come from an
2039 ;; undo operation--that is, they are redo records.
2040 ;; In the ordinary case (not within a region), map the redo
2041 ;; record to the following undos.
2042 ;; I don't know how to do that in the undo-in-region case.
2043 (let ((list buffer-undo-list))
2044 ;; Strip any leading undo boundaries there might be, like we do
2045 ;; above when checking.
2046 (while (eq (car list) nil)
2047 (setq list (cdr list)))
2048 (puthash list (if undo-in-region t pending-undo-list)
2049 undo-equiv-table))
2050 ;; Don't specify a position in the undo record for the undo command.
2051 ;; Instead, undoing this should move point to where the change is.
2052 (let ((tail buffer-undo-list)
2053 (prev nil))
2054 (while (car tail)
2055 (when (integerp (car tail))
2056 (let ((pos (car tail)))
2057 (if prev
2058 (setcdr prev (cdr tail))
2059 (setq buffer-undo-list (cdr tail)))
2060 (setq tail (cdr tail))
2061 (while (car tail)
2062 (if (eq pos (car tail))
2063 (if prev
2064 (setcdr prev (cdr tail))
2065 (setq buffer-undo-list (cdr tail)))
2066 (setq prev tail))
2067 (setq tail (cdr tail)))
2068 (setq tail nil)))
2069 (setq prev tail tail (cdr tail))))
2070 ;; Record what the current undo list says,
2071 ;; so the next command can tell if the buffer was modified in between.
2072 (and modified (not (buffer-modified-p))
2073 (with-current-buffer base-buffer
2074 (delete-auto-save-file-if-necessary recent-save)))
2075 ;; Display a message announcing success.
2076 (if message
2077 (message "%s" message))))
2079 (defun buffer-disable-undo (&optional buffer)
2080 "Make BUFFER stop keeping undo information.
2081 No argument or nil as argument means do this for the current buffer."
2082 (interactive)
2083 (with-current-buffer (if buffer (get-buffer buffer) (current-buffer))
2084 (setq buffer-undo-list t)))
2086 (defun undo-only (&optional arg)
2087 "Undo some previous changes.
2088 Repeat this command to undo more changes.
2089 A numeric ARG serves as a repeat count.
2090 Contrary to `undo', this will not redo a previous undo."
2091 (interactive "*p")
2092 (let ((undo-no-redo t)) (undo arg)))
2094 (defvar undo-in-progress nil
2095 "Non-nil while performing an undo.
2096 Some change-hooks test this variable to do something different.")
2098 (defun undo-more (n)
2099 "Undo back N undo-boundaries beyond what was already undone recently.
2100 Call `undo-start' to get ready to undo recent changes,
2101 then call `undo-more' one or more times to undo them."
2102 (or (listp pending-undo-list)
2103 (user-error (concat "No further undo information"
2104 (and undo-in-region " for region"))))
2105 (let ((undo-in-progress t))
2106 ;; Note: The following, while pulling elements off
2107 ;; `pending-undo-list' will call primitive change functions which
2108 ;; will push more elements onto `buffer-undo-list'.
2109 (setq pending-undo-list (primitive-undo n pending-undo-list))
2110 (if (null pending-undo-list)
2111 (setq pending-undo-list t))))
2113 (defun primitive-undo (n list)
2114 "Undo N records from the front of the list LIST.
2115 Return what remains of the list."
2117 ;; This is a good feature, but would make undo-start
2118 ;; unable to do what is expected.
2119 ;;(when (null (car (list)))
2120 ;; ;; If the head of the list is a boundary, it is the boundary
2121 ;; ;; preceding this command. Get rid of it and don't count it.
2122 ;; (setq list (cdr list))))
2124 (let ((arg n)
2125 ;; In a writable buffer, enable undoing read-only text that is
2126 ;; so because of text properties.
2127 (inhibit-read-only t)
2128 ;; Don't let `intangible' properties interfere with undo.
2129 (inhibit-point-motion-hooks t)
2130 ;; We use oldlist only to check for EQ. ++kfs
2131 (oldlist buffer-undo-list)
2132 (did-apply nil)
2133 (next nil))
2134 (while (> arg 0)
2135 (while (setq next (pop list)) ;Exit inner loop at undo boundary.
2136 ;; Handle an integer by setting point to that value.
2137 (pcase next
2138 ((pred integerp) (goto-char next))
2139 ;; Element (t . TIME) records previous modtime.
2140 ;; Preserve any flag of NONEXISTENT_MODTIME_NSECS or
2141 ;; UNKNOWN_MODTIME_NSECS.
2142 (`(t . ,time)
2143 ;; If this records an obsolete save
2144 ;; (not matching the actual disk file)
2145 ;; then don't mark unmodified.
2146 (when (or (equal time (visited-file-modtime))
2147 (and (consp time)
2148 (equal (list (car time) (cdr time))
2149 (visited-file-modtime))))
2150 (when (fboundp 'unlock-buffer)
2151 (unlock-buffer))
2152 (set-buffer-modified-p nil)))
2153 ;; Element (nil PROP VAL BEG . END) is property change.
2154 (`(nil . ,(or `(,prop ,val ,beg . ,end) pcase--dontcare))
2155 (when (or (> (point-min) beg) (< (point-max) end))
2156 (error "Changes to be undone are outside visible portion of buffer"))
2157 (put-text-property beg end prop val))
2158 ;; Element (BEG . END) means range was inserted.
2159 (`(,(and beg (pred integerp)) . ,(and end (pred integerp)))
2160 ;; (and `(,beg . ,end) `(,(pred integerp) . ,(pred integerp)))
2161 ;; Ideally: `(,(pred integerp beg) . ,(pred integerp end))
2162 (when (or (> (point-min) beg) (< (point-max) end))
2163 (error "Changes to be undone are outside visible portion of buffer"))
2164 ;; Set point first thing, so that undoing this undo
2165 ;; does not send point back to where it is now.
2166 (goto-char beg)
2167 (delete-region beg end))
2168 ;; Element (apply FUN . ARGS) means call FUN to undo.
2169 (`(apply . ,fun-args)
2170 (let ((currbuff (current-buffer)))
2171 (if (integerp (car fun-args))
2172 ;; Long format: (apply DELTA START END FUN . ARGS).
2173 (pcase-let* ((`(,delta ,start ,end ,fun . ,args) fun-args)
2174 (start-mark (copy-marker start nil))
2175 (end-mark (copy-marker end t)))
2176 (when (or (> (point-min) start) (< (point-max) end))
2177 (error "Changes to be undone are outside visible portion of buffer"))
2178 (apply fun args) ;; Use `save-current-buffer'?
2179 ;; Check that the function did what the entry
2180 ;; said it would do.
2181 (unless (and (= start start-mark)
2182 (= (+ delta end) end-mark))
2183 (error "Changes to be undone by function different than announced"))
2184 (set-marker start-mark nil)
2185 (set-marker end-mark nil))
2186 (apply fun-args))
2187 (unless (eq currbuff (current-buffer))
2188 (error "Undo function switched buffer"))
2189 (setq did-apply t)))
2190 ;; Element (STRING . POS) means STRING was deleted.
2191 (`(,(and string (pred stringp)) . ,(and pos (pred integerp)))
2192 (when (let ((apos (abs pos)))
2193 (or (< apos (point-min)) (> apos (point-max))))
2194 (error "Changes to be undone are outside visible portion of buffer"))
2195 (if (< pos 0)
2196 (progn
2197 (goto-char (- pos))
2198 (insert string))
2199 (goto-char pos)
2200 ;; Now that we record marker adjustments
2201 ;; (caused by deletion) for undo,
2202 ;; we should always insert after markers,
2203 ;; so that undoing the marker adjustments
2204 ;; put the markers back in the right place.
2205 (insert string)
2206 (goto-char pos)))
2207 ;; (MARKER . OFFSET) means a marker MARKER was adjusted by OFFSET.
2208 (`(,(and marker (pred markerp)) . ,(and offset (pred integerp)))
2209 (when (marker-buffer marker)
2210 (set-marker marker
2211 (- marker offset)
2212 (marker-buffer marker))))
2213 (_ (error "Unrecognized entry in undo list %S" next))))
2214 (setq arg (1- arg)))
2215 ;; Make sure an apply entry produces at least one undo entry,
2216 ;; so the test in `undo' for continuing an undo series
2217 ;; will work right.
2218 (if (and did-apply
2219 (eq oldlist buffer-undo-list))
2220 (setq buffer-undo-list
2221 (cons (list 'apply 'cdr nil) buffer-undo-list))))
2222 list)
2224 ;; Deep copy of a list
2225 (defun undo-copy-list (list)
2226 "Make a copy of undo list LIST."
2227 (mapcar 'undo-copy-list-1 list))
2229 (defun undo-copy-list-1 (elt)
2230 (if (consp elt)
2231 (cons (car elt) (undo-copy-list-1 (cdr elt)))
2232 elt))
2234 (defun undo-start (&optional beg end)
2235 "Set `pending-undo-list' to the front of the undo list.
2236 The next call to `undo-more' will undo the most recently made change.
2237 If BEG and END are specified, then only undo elements
2238 that apply to text between BEG and END are used; other undo elements
2239 are ignored. If BEG and END are nil, all undo elements are used."
2240 (if (eq buffer-undo-list t)
2241 (user-error "No undo information in this buffer"))
2242 (setq pending-undo-list
2243 (if (and beg end (not (= beg end)))
2244 (undo-make-selective-list (min beg end) (max beg end))
2245 buffer-undo-list)))
2247 (defvar undo-adjusted-markers)
2249 (defun undo-make-selective-list (start end)
2250 "Return a list of undo elements for the region START to END.
2251 The elements come from `buffer-undo-list', but we keep only
2252 the elements inside this region, and discard those outside this region.
2253 If we find an element that crosses an edge of this region,
2254 we stop and ignore all further elements."
2255 (let ((undo-list-copy (undo-copy-list buffer-undo-list))
2256 (undo-list (list nil))
2257 undo-adjusted-markers
2258 some-rejected
2259 undo-elt temp-undo-list delta)
2260 (while undo-list-copy
2261 (setq undo-elt (car undo-list-copy))
2262 (let ((keep-this
2263 (cond ((and (consp undo-elt) (eq (car undo-elt) t))
2264 ;; This is a "was unmodified" element.
2265 ;; Keep it if we have kept everything thus far.
2266 (not some-rejected))
2268 (undo-elt-in-region undo-elt start end)))))
2269 (if keep-this
2270 (progn
2271 (setq end (+ end (cdr (undo-delta undo-elt))))
2272 ;; Don't put two nils together in the list
2273 (if (not (and (eq (car undo-list) nil)
2274 (eq undo-elt nil)))
2275 (setq undo-list (cons undo-elt undo-list))))
2276 (if (undo-elt-crosses-region undo-elt start end)
2277 (setq undo-list-copy nil)
2278 (setq some-rejected t)
2279 (setq temp-undo-list (cdr undo-list-copy))
2280 (setq delta (undo-delta undo-elt))
2282 (when (/= (cdr delta) 0)
2283 (let ((position (car delta))
2284 (offset (cdr delta)))
2286 ;; Loop down the earlier events adjusting their buffer
2287 ;; positions to reflect the fact that a change to the buffer
2288 ;; isn't being undone. We only need to process those element
2289 ;; types which undo-elt-in-region will return as being in
2290 ;; the region since only those types can ever get into the
2291 ;; output
2293 (while temp-undo-list
2294 (setq undo-elt (car temp-undo-list))
2295 (cond ((integerp undo-elt)
2296 (if (>= undo-elt position)
2297 (setcar temp-undo-list (- undo-elt offset))))
2298 ((atom undo-elt) nil)
2299 ((stringp (car undo-elt))
2300 ;; (TEXT . POSITION)
2301 (let ((text-pos (abs (cdr undo-elt)))
2302 (point-at-end (< (cdr undo-elt) 0 )))
2303 (if (>= text-pos position)
2304 (setcdr undo-elt (* (if point-at-end -1 1)
2305 (- text-pos offset))))))
2306 ((integerp (car undo-elt))
2307 ;; (BEGIN . END)
2308 (when (>= (car undo-elt) position)
2309 (setcar undo-elt (- (car undo-elt) offset))
2310 (setcdr undo-elt (- (cdr undo-elt) offset))))
2311 ((null (car undo-elt))
2312 ;; (nil PROPERTY VALUE BEG . END)
2313 (let ((tail (nthcdr 3 undo-elt)))
2314 (when (>= (car tail) position)
2315 (setcar tail (- (car tail) offset))
2316 (setcdr tail (- (cdr tail) offset))))))
2317 (setq temp-undo-list (cdr temp-undo-list))))))))
2318 (setq undo-list-copy (cdr undo-list-copy)))
2319 (nreverse undo-list)))
2321 (defun undo-elt-in-region (undo-elt start end)
2322 "Determine whether UNDO-ELT falls inside the region START ... END.
2323 If it crosses the edge, we return nil."
2324 (cond ((integerp undo-elt)
2325 (and (>= undo-elt start)
2326 (<= undo-elt end)))
2327 ((eq undo-elt nil)
2329 ((atom undo-elt)
2330 nil)
2331 ((stringp (car undo-elt))
2332 ;; (TEXT . POSITION)
2333 (and (>= (abs (cdr undo-elt)) start)
2334 (< (abs (cdr undo-elt)) end)))
2335 ((and (consp undo-elt) (markerp (car undo-elt)))
2336 ;; This is a marker-adjustment element (MARKER . ADJUSTMENT).
2337 ;; See if MARKER is inside the region.
2338 (let ((alist-elt (assq (car undo-elt) undo-adjusted-markers)))
2339 (unless alist-elt
2340 (setq alist-elt (cons (car undo-elt)
2341 (marker-position (car undo-elt))))
2342 (setq undo-adjusted-markers
2343 (cons alist-elt undo-adjusted-markers)))
2344 (and (cdr alist-elt)
2345 (>= (cdr alist-elt) start)
2346 (<= (cdr alist-elt) end))))
2347 ((null (car undo-elt))
2348 ;; (nil PROPERTY VALUE BEG . END)
2349 (let ((tail (nthcdr 3 undo-elt)))
2350 (and (>= (car tail) start)
2351 (<= (cdr tail) end))))
2352 ((integerp (car undo-elt))
2353 ;; (BEGIN . END)
2354 (and (>= (car undo-elt) start)
2355 (<= (cdr undo-elt) end)))))
2357 (defun undo-elt-crosses-region (undo-elt start end)
2358 "Test whether UNDO-ELT crosses one edge of that region START ... END.
2359 This assumes we have already decided that UNDO-ELT
2360 is not *inside* the region START...END."
2361 (cond ((atom undo-elt) nil)
2362 ((null (car undo-elt))
2363 ;; (nil PROPERTY VALUE BEG . END)
2364 (let ((tail (nthcdr 3 undo-elt)))
2365 (and (< (car tail) end)
2366 (> (cdr tail) start))))
2367 ((integerp (car undo-elt))
2368 ;; (BEGIN . END)
2369 (and (< (car undo-elt) end)
2370 (> (cdr undo-elt) start)))))
2372 ;; Return the first affected buffer position and the delta for an undo element
2373 ;; delta is defined as the change in subsequent buffer positions if we *did*
2374 ;; the undo.
2375 (defun undo-delta (undo-elt)
2376 (if (consp undo-elt)
2377 (cond ((stringp (car undo-elt))
2378 ;; (TEXT . POSITION)
2379 (cons (abs (cdr undo-elt)) (length (car undo-elt))))
2380 ((integerp (car undo-elt))
2381 ;; (BEGIN . END)
2382 (cons (car undo-elt) (- (car undo-elt) (cdr undo-elt))))
2384 '(0 . 0)))
2385 '(0 . 0)))
2387 (defcustom undo-ask-before-discard nil
2388 "If non-nil ask about discarding undo info for the current command.
2389 Normally, Emacs discards the undo info for the current command if
2390 it exceeds `undo-outer-limit'. But if you set this option
2391 non-nil, it asks in the echo area whether to discard the info.
2392 If you answer no, there is a slight risk that Emacs might crash, so
2393 only do it if you really want to undo the command.
2395 This option is mainly intended for debugging. You have to be
2396 careful if you use it for other purposes. Garbage collection is
2397 inhibited while the question is asked, meaning that Emacs might
2398 leak memory. So you should make sure that you do not wait
2399 excessively long before answering the question."
2400 :type 'boolean
2401 :group 'undo
2402 :version "22.1")
2404 (defvar undo-extra-outer-limit nil
2405 "If non-nil, an extra level of size that's ok in an undo item.
2406 We don't ask the user about truncating the undo list until the
2407 current item gets bigger than this amount.
2409 This variable only matters if `undo-ask-before-discard' is non-nil.")
2410 (make-variable-buffer-local 'undo-extra-outer-limit)
2412 ;; When the first undo batch in an undo list is longer than
2413 ;; undo-outer-limit, this function gets called to warn the user that
2414 ;; the undo info for the current command was discarded. Garbage
2415 ;; collection is inhibited around the call, so it had better not do a
2416 ;; lot of consing.
2417 (setq undo-outer-limit-function 'undo-outer-limit-truncate)
2418 (defun undo-outer-limit-truncate (size)
2419 (if undo-ask-before-discard
2420 (when (or (null undo-extra-outer-limit)
2421 (> size undo-extra-outer-limit))
2422 ;; Don't ask the question again unless it gets even bigger.
2423 ;; This applies, in particular, if the user quits from the question.
2424 ;; Such a quit quits out of GC, but something else will call GC
2425 ;; again momentarily. It will call this function again,
2426 ;; but we don't want to ask the question again.
2427 (setq undo-extra-outer-limit (+ size 50000))
2428 (if (let (use-dialog-box track-mouse executing-kbd-macro )
2429 (yes-or-no-p (format "Buffer `%s' undo info is %d bytes long; discard it? "
2430 (buffer-name) size)))
2431 (progn (setq buffer-undo-list nil)
2432 (setq undo-extra-outer-limit nil)
2434 nil))
2435 (display-warning '(undo discard-info)
2436 (concat
2437 (format "Buffer `%s' undo info was %d bytes long.\n"
2438 (buffer-name) size)
2439 "The undo info was discarded because it exceeded \
2440 `undo-outer-limit'.
2442 This is normal if you executed a command that made a huge change
2443 to the buffer. In that case, to prevent similar problems in the
2444 future, set `undo-outer-limit' to a value that is large enough to
2445 cover the maximum size of normal changes you expect a single
2446 command to make, but not so large that it might exceed the
2447 maximum memory allotted to Emacs.
2449 If you did not execute any such command, the situation is
2450 probably due to a bug and you should report it.
2452 You can disable the popping up of this buffer by adding the entry
2453 \(undo discard-info) to the user option `warning-suppress-types',
2454 which is defined in the `warnings' library.\n")
2455 :warning)
2456 (setq buffer-undo-list nil)
2459 (defvar shell-command-history nil
2460 "History list for some commands that read shell commands.
2462 Maximum length of the history list is determined by the value
2463 of `history-length', which see.")
2465 (defvar shell-command-switch (purecopy "-c")
2466 "Switch used to have the shell execute its command line argument.")
2468 (defvar shell-command-default-error-buffer nil
2469 "Buffer name for `shell-command' and `shell-command-on-region' error output.
2470 This buffer is used when `shell-command' or `shell-command-on-region'
2471 is run interactively. A value of nil means that output to stderr and
2472 stdout will be intermixed in the output stream.")
2474 (declare-function mailcap-file-default-commands "mailcap" (files))
2475 (declare-function dired-get-filename "dired" (&optional localp no-error-if-not-filep))
2477 (defun minibuffer-default-add-shell-commands ()
2478 "Return a list of all commands associated with the current file.
2479 This function is used to add all related commands retrieved by `mailcap'
2480 to the end of the list of defaults just after the default value."
2481 (interactive)
2482 (let* ((filename (if (listp minibuffer-default)
2483 (car minibuffer-default)
2484 minibuffer-default))
2485 (commands (and filename (require 'mailcap nil t)
2486 (mailcap-file-default-commands (list filename)))))
2487 (setq commands (mapcar (lambda (command)
2488 (concat command " " filename))
2489 commands))
2490 (if (listp minibuffer-default)
2491 (append minibuffer-default commands)
2492 (cons minibuffer-default commands))))
2494 (declare-function shell-completion-vars "shell" ())
2496 (defvar minibuffer-local-shell-command-map
2497 (let ((map (make-sparse-keymap)))
2498 (set-keymap-parent map minibuffer-local-map)
2499 (define-key map "\t" 'completion-at-point)
2500 map)
2501 "Keymap used for completing shell commands in minibuffer.")
2503 (defun read-shell-command (prompt &optional initial-contents hist &rest args)
2504 "Read a shell command from the minibuffer.
2505 The arguments are the same as the ones of `read-from-minibuffer',
2506 except READ and KEYMAP are missing and HIST defaults
2507 to `shell-command-history'."
2508 (require 'shell)
2509 (minibuffer-with-setup-hook
2510 (lambda ()
2511 (shell-completion-vars)
2512 (set (make-local-variable 'minibuffer-default-add-function)
2513 'minibuffer-default-add-shell-commands))
2514 (apply 'read-from-minibuffer prompt initial-contents
2515 minibuffer-local-shell-command-map
2517 (or hist 'shell-command-history)
2518 args)))
2520 (defcustom async-shell-command-buffer 'confirm-new-buffer
2521 "What to do when the output buffer is used by another shell command.
2522 This option specifies how to resolve the conflict where a new command
2523 wants to direct its output to the buffer `*Async Shell Command*',
2524 but this buffer is already taken by another running shell command.
2526 The value `confirm-kill-process' is used to ask for confirmation before
2527 killing the already running process and running a new process
2528 in the same buffer, `confirm-new-buffer' for confirmation before running
2529 the command in a new buffer with a name other than the default buffer name,
2530 `new-buffer' for doing the same without confirmation,
2531 `confirm-rename-buffer' for confirmation before renaming the existing
2532 output buffer and running a new command in the default buffer,
2533 `rename-buffer' for doing the same without confirmation."
2534 :type '(choice (const :tag "Confirm killing of running command"
2535 confirm-kill-process)
2536 (const :tag "Confirm creation of a new buffer"
2537 confirm-new-buffer)
2538 (const :tag "Create a new buffer"
2539 new-buffer)
2540 (const :tag "Confirm renaming of existing buffer"
2541 confirm-rename-buffer)
2542 (const :tag "Rename the existing buffer"
2543 rename-buffer))
2544 :group 'shell
2545 :version "24.3")
2547 (defun async-shell-command (command &optional output-buffer error-buffer)
2548 "Execute string COMMAND asynchronously in background.
2550 Like `shell-command', but adds `&' at the end of COMMAND
2551 to execute it asynchronously.
2553 The output appears in the buffer `*Async Shell Command*'.
2554 That buffer is in shell mode.
2556 In Elisp, you will often be better served by calling `start-process'
2557 directly, since it offers more control and does not impose the use of a
2558 shell (with its need to quote arguments)."
2559 (interactive
2560 (list
2561 (read-shell-command "Async shell command: " nil nil
2562 (let ((filename
2563 (cond
2564 (buffer-file-name)
2565 ((eq major-mode 'dired-mode)
2566 (dired-get-filename nil t)))))
2567 (and filename (file-relative-name filename))))
2568 current-prefix-arg
2569 shell-command-default-error-buffer))
2570 (unless (string-match "&[ \t]*\\'" command)
2571 (setq command (concat command " &")))
2572 (shell-command command output-buffer error-buffer))
2574 (defun shell-command (command &optional output-buffer error-buffer)
2575 "Execute string COMMAND in inferior shell; display output, if any.
2576 With prefix argument, insert the COMMAND's output at point.
2578 If COMMAND ends in `&', execute it asynchronously.
2579 The output appears in the buffer `*Async Shell Command*'.
2580 That buffer is in shell mode. You can also use
2581 `async-shell-command' that automatically adds `&'.
2583 Otherwise, COMMAND is executed synchronously. The output appears in
2584 the buffer `*Shell Command Output*'. If the output is short enough to
2585 display in the echo area (which is determined by the variables
2586 `resize-mini-windows' and `max-mini-window-height'), it is shown
2587 there, but it is nonetheless available in buffer `*Shell Command
2588 Output*' even though that buffer is not automatically displayed.
2590 To specify a coding system for converting non-ASCII characters
2591 in the shell command output, use \\[universal-coding-system-argument] \
2592 before this command.
2594 Noninteractive callers can specify coding systems by binding
2595 `coding-system-for-read' and `coding-system-for-write'.
2597 The optional second argument OUTPUT-BUFFER, if non-nil,
2598 says to put the output in some other buffer.
2599 If OUTPUT-BUFFER is a buffer or buffer name, put the output there.
2600 If OUTPUT-BUFFER is not a buffer and not nil,
2601 insert output in current buffer. (This cannot be done asynchronously.)
2602 In either case, the buffer is first erased, and the output is
2603 inserted after point (leaving mark after it).
2605 If the command terminates without error, but generates output,
2606 and you did not specify \"insert it in the current buffer\",
2607 the output can be displayed in the echo area or in its buffer.
2608 If the output is short enough to display in the echo area
2609 \(determined by the variable `max-mini-window-height' if
2610 `resize-mini-windows' is non-nil), it is shown there.
2611 Otherwise,the buffer containing the output is displayed.
2613 If there is output and an error, and you did not specify \"insert it
2614 in the current buffer\", a message about the error goes at the end
2615 of the output.
2617 If there is no output, or if output is inserted in the current buffer,
2618 then `*Shell Command Output*' is deleted.
2620 If the optional third argument ERROR-BUFFER is non-nil, it is a buffer
2621 or buffer name to which to direct the command's standard error output.
2622 If it is nil, error output is mingled with regular output.
2623 In an interactive call, the variable `shell-command-default-error-buffer'
2624 specifies the value of ERROR-BUFFER.
2626 In Elisp, you will often be better served by calling `call-process' or
2627 `start-process' directly, since it offers more control and does not impose
2628 the use of a shell (with its need to quote arguments)."
2630 (interactive
2631 (list
2632 (read-shell-command "Shell command: " nil nil
2633 (let ((filename
2634 (cond
2635 (buffer-file-name)
2636 ((eq major-mode 'dired-mode)
2637 (dired-get-filename nil t)))))
2638 (and filename (file-relative-name filename))))
2639 current-prefix-arg
2640 shell-command-default-error-buffer))
2641 ;; Look for a handler in case default-directory is a remote file name.
2642 (let ((handler
2643 (find-file-name-handler (directory-file-name default-directory)
2644 'shell-command)))
2645 (if handler
2646 (funcall handler 'shell-command command output-buffer error-buffer)
2647 (if (and output-buffer
2648 (not (or (bufferp output-buffer) (stringp output-buffer))))
2649 ;; Output goes in current buffer.
2650 (let ((error-file
2651 (if error-buffer
2652 (make-temp-file
2653 (expand-file-name "scor"
2654 (or small-temporary-file-directory
2655 temporary-file-directory)))
2656 nil)))
2657 (barf-if-buffer-read-only)
2658 (push-mark nil t)
2659 ;; We do not use -f for csh; we will not support broken use of
2660 ;; .cshrcs. Even the BSD csh manual says to use
2661 ;; "if ($?prompt) exit" before things which are not useful
2662 ;; non-interactively. Besides, if someone wants their other
2663 ;; aliases for shell commands then they can still have them.
2664 (call-process shell-file-name nil
2665 (if error-file
2666 (list t error-file)
2668 nil shell-command-switch command)
2669 (when (and error-file (file-exists-p error-file))
2670 (if (< 0 (nth 7 (file-attributes error-file)))
2671 (with-current-buffer (get-buffer-create error-buffer)
2672 (let ((pos-from-end (- (point-max) (point))))
2673 (or (bobp)
2674 (insert "\f\n"))
2675 ;; Do no formatting while reading error file,
2676 ;; because that can run a shell command, and we
2677 ;; don't want that to cause an infinite recursion.
2678 (format-insert-file error-file nil)
2679 ;; Put point after the inserted errors.
2680 (goto-char (- (point-max) pos-from-end)))
2681 (display-buffer (current-buffer))))
2682 (delete-file error-file))
2683 ;; This is like exchange-point-and-mark, but doesn't
2684 ;; activate the mark. It is cleaner to avoid activation,
2685 ;; even though the command loop would deactivate the mark
2686 ;; because we inserted text.
2687 (goto-char (prog1 (mark t)
2688 (set-marker (mark-marker) (point)
2689 (current-buffer)))))
2690 ;; Output goes in a separate buffer.
2691 ;; Preserve the match data in case called from a program.
2692 (save-match-data
2693 (if (string-match "[ \t]*&[ \t]*\\'" command)
2694 ;; Command ending with ampersand means asynchronous.
2695 (let ((buffer (get-buffer-create
2696 (or output-buffer "*Async Shell Command*")))
2697 (directory default-directory)
2698 proc)
2699 ;; Remove the ampersand.
2700 (setq command (substring command 0 (match-beginning 0)))
2701 ;; Ask the user what to do with already running process.
2702 (setq proc (get-buffer-process buffer))
2703 (when proc
2704 (cond
2705 ((eq async-shell-command-buffer 'confirm-kill-process)
2706 ;; If will kill a process, query first.
2707 (if (yes-or-no-p "A command is running in the default buffer. Kill it? ")
2708 (kill-process proc)
2709 (error "Shell command in progress")))
2710 ((eq async-shell-command-buffer 'confirm-new-buffer)
2711 ;; If will create a new buffer, query first.
2712 (if (yes-or-no-p "A command is running in the default buffer. Use a new buffer? ")
2713 (setq buffer (generate-new-buffer
2714 (or output-buffer "*Async Shell Command*")))
2715 (error "Shell command in progress")))
2716 ((eq async-shell-command-buffer 'new-buffer)
2717 ;; It will create a new buffer.
2718 (setq buffer (generate-new-buffer
2719 (or output-buffer "*Async Shell Command*"))))
2720 ((eq async-shell-command-buffer 'confirm-rename-buffer)
2721 ;; If will rename the buffer, query first.
2722 (if (yes-or-no-p "A command is running in the default buffer. Rename it? ")
2723 (progn
2724 (with-current-buffer buffer
2725 (rename-uniquely))
2726 (setq buffer (get-buffer-create
2727 (or output-buffer "*Async Shell Command*"))))
2728 (error "Shell command in progress")))
2729 ((eq async-shell-command-buffer 'rename-buffer)
2730 ;; It will rename the buffer.
2731 (with-current-buffer buffer
2732 (rename-uniquely))
2733 (setq buffer (get-buffer-create
2734 (or output-buffer "*Async Shell Command*"))))))
2735 (with-current-buffer buffer
2736 (setq buffer-read-only nil)
2737 ;; Setting buffer-read-only to nil doesn't suffice
2738 ;; if some text has a non-nil read-only property,
2739 ;; which comint sometimes adds for prompts.
2740 (let ((inhibit-read-only t))
2741 (erase-buffer))
2742 (display-buffer buffer)
2743 (setq default-directory directory)
2744 (setq proc (start-process "Shell" buffer shell-file-name
2745 shell-command-switch command))
2746 (setq mode-line-process '(":%s"))
2747 (require 'shell) (shell-mode)
2748 (set-process-sentinel proc 'shell-command-sentinel)
2749 ;; Use the comint filter for proper handling of carriage motion
2750 ;; (see `comint-inhibit-carriage-motion'),.
2751 (set-process-filter proc 'comint-output-filter)
2753 ;; Otherwise, command is executed synchronously.
2754 (shell-command-on-region (point) (point) command
2755 output-buffer nil error-buffer)))))))
2757 (defun display-message-or-buffer (message
2758 &optional buffer-name not-this-window frame)
2759 "Display MESSAGE in the echo area if possible, otherwise in a pop-up buffer.
2760 MESSAGE may be either a string or a buffer.
2762 A buffer is displayed using `display-buffer' if MESSAGE is too long for
2763 the maximum height of the echo area, as defined by `max-mini-window-height'
2764 if `resize-mini-windows' is non-nil.
2766 Returns either the string shown in the echo area, or when a pop-up
2767 buffer is used, the window used to display it.
2769 If MESSAGE is a string, then the optional argument BUFFER-NAME is the
2770 name of the buffer used to display it in the case where a pop-up buffer
2771 is used, defaulting to `*Message*'. In the case where MESSAGE is a
2772 string and it is displayed in the echo area, it is not specified whether
2773 the contents are inserted into the buffer anyway.
2775 Optional arguments NOT-THIS-WINDOW and FRAME are as for `display-buffer',
2776 and only used if a buffer is displayed."
2777 (cond ((and (stringp message) (not (string-match "\n" message)))
2778 ;; Trivial case where we can use the echo area
2779 (message "%s" message))
2780 ((and (stringp message)
2781 (= (string-match "\n" message) (1- (length message))))
2782 ;; Trivial case where we can just remove single trailing newline
2783 (message "%s" (substring message 0 (1- (length message)))))
2785 ;; General case
2786 (with-current-buffer
2787 (if (bufferp message)
2788 message
2789 (get-buffer-create (or buffer-name "*Message*")))
2791 (unless (bufferp message)
2792 (erase-buffer)
2793 (insert message))
2795 (let ((lines
2796 (if (= (buffer-size) 0)
2798 (count-screen-lines nil nil nil (minibuffer-window)))))
2799 (cond ((= lines 0))
2800 ((and (or (<= lines 1)
2801 (<= lines
2802 (if resize-mini-windows
2803 (cond ((floatp max-mini-window-height)
2804 (* (frame-height)
2805 max-mini-window-height))
2806 ((integerp max-mini-window-height)
2807 max-mini-window-height)
2810 1)))
2811 ;; Don't use the echo area if the output buffer is
2812 ;; already displayed in the selected frame.
2813 (not (get-buffer-window (current-buffer))))
2814 ;; Echo area
2815 (goto-char (point-max))
2816 (when (bolp)
2817 (backward-char 1))
2818 (message "%s" (buffer-substring (point-min) (point))))
2820 ;; Buffer
2821 (goto-char (point-min))
2822 (display-buffer (current-buffer)
2823 not-this-window frame))))))))
2826 ;; We have a sentinel to prevent insertion of a termination message
2827 ;; in the buffer itself.
2828 (defun shell-command-sentinel (process signal)
2829 (if (memq (process-status process) '(exit signal))
2830 (message "%s: %s."
2831 (car (cdr (cdr (process-command process))))
2832 (substring signal 0 -1))))
2834 (defun shell-command-on-region (start end command
2835 &optional output-buffer replace
2836 error-buffer display-error-buffer)
2837 "Execute string COMMAND in inferior shell with region as input.
2838 Normally display output (if any) in temp buffer `*Shell Command Output*';
2839 Prefix arg means replace the region with it. Return the exit code of
2840 COMMAND.
2842 To specify a coding system for converting non-ASCII characters
2843 in the input and output to the shell command, use \\[universal-coding-system-argument]
2844 before this command. By default, the input (from the current buffer)
2845 is encoded using coding-system specified by `process-coding-system-alist',
2846 falling back to `default-process-coding-system' if no match for COMMAND
2847 is found in `process-coding-system-alist'.
2849 Noninteractive callers can specify coding systems by binding
2850 `coding-system-for-read' and `coding-system-for-write'.
2852 If the command generates output, the output may be displayed
2853 in the echo area or in a buffer.
2854 If the output is short enough to display in the echo area
2855 \(determined by the variable `max-mini-window-height' if
2856 `resize-mini-windows' is non-nil), it is shown there.
2857 Otherwise it is displayed in the buffer `*Shell Command Output*'.
2858 The output is available in that buffer in both cases.
2860 If there is output and an error, a message about the error
2861 appears at the end of the output. If there is no output, or if
2862 output is inserted in the current buffer, the buffer `*Shell
2863 Command Output*' is deleted.
2865 Optional fourth arg OUTPUT-BUFFER specifies where to put the
2866 command's output. If the value is a buffer or buffer name,
2867 put the output there. If the value is nil, use the buffer
2868 `*Shell Command Output*'. Any other value, excluding nil,
2869 means to insert the output in the current buffer. In either case,
2870 the output is inserted after point (leaving mark after it).
2872 Optional fifth arg REPLACE, if non-nil, means to insert the
2873 output in place of text from START to END, putting point and mark
2874 around it.
2876 Optional sixth arg ERROR-BUFFER, if non-nil, specifies a buffer
2877 or buffer name to which to direct the command's standard error
2878 output. If nil, error output is mingled with regular output.
2879 When called interactively, `shell-command-default-error-buffer'
2880 is used for ERROR-BUFFER.
2882 Optional seventh arg DISPLAY-ERROR-BUFFER, if non-nil, means to
2883 display the error buffer if there were any errors. When called
2884 interactively, this is t."
2885 (interactive (let (string)
2886 (unless (mark)
2887 (error "The mark is not set now, so there is no region"))
2888 ;; Do this before calling region-beginning
2889 ;; and region-end, in case subprocess output
2890 ;; relocates them while we are in the minibuffer.
2891 (setq string (read-shell-command "Shell command on region: "))
2892 ;; call-interactively recognizes region-beginning and
2893 ;; region-end specially, leaving them in the history.
2894 (list (region-beginning) (region-end)
2895 string
2896 current-prefix-arg
2897 current-prefix-arg
2898 shell-command-default-error-buffer
2899 t)))
2900 (let ((error-file
2901 (if error-buffer
2902 (make-temp-file
2903 (expand-file-name "scor"
2904 (or small-temporary-file-directory
2905 temporary-file-directory)))
2906 nil))
2907 exit-status)
2908 (if (or replace
2909 (and output-buffer
2910 (not (or (bufferp output-buffer) (stringp output-buffer)))))
2911 ;; Replace specified region with output from command.
2912 (let ((swap (and replace (< start end))))
2913 ;; Don't muck with mark unless REPLACE says we should.
2914 (goto-char start)
2915 (and replace (push-mark (point) 'nomsg))
2916 (setq exit-status
2917 (call-process-region start end shell-file-name replace
2918 (if error-file
2919 (list t error-file)
2921 nil shell-command-switch command))
2922 ;; It is rude to delete a buffer which the command is not using.
2923 ;; (let ((shell-buffer (get-buffer "*Shell Command Output*")))
2924 ;; (and shell-buffer (not (eq shell-buffer (current-buffer)))
2925 ;; (kill-buffer shell-buffer)))
2926 ;; Don't muck with mark unless REPLACE says we should.
2927 (and replace swap (exchange-point-and-mark)))
2928 ;; No prefix argument: put the output in a temp buffer,
2929 ;; replacing its entire contents.
2930 (let ((buffer (get-buffer-create
2931 (or output-buffer "*Shell Command Output*"))))
2932 (unwind-protect
2933 (if (eq buffer (current-buffer))
2934 ;; If the input is the same buffer as the output,
2935 ;; delete everything but the specified region,
2936 ;; then replace that region with the output.
2937 (progn (setq buffer-read-only nil)
2938 (delete-region (max start end) (point-max))
2939 (delete-region (point-min) (min start end))
2940 (setq exit-status
2941 (call-process-region (point-min) (point-max)
2942 shell-file-name t
2943 (if error-file
2944 (list t error-file)
2946 nil shell-command-switch
2947 command)))
2948 ;; Clear the output buffer, then run the command with
2949 ;; output there.
2950 (let ((directory default-directory))
2951 (with-current-buffer buffer
2952 (setq buffer-read-only nil)
2953 (if (not output-buffer)
2954 (setq default-directory directory))
2955 (erase-buffer)))
2956 (setq exit-status
2957 (call-process-region start end shell-file-name nil
2958 (if error-file
2959 (list buffer error-file)
2960 buffer)
2961 nil shell-command-switch command)))
2962 ;; Report the output.
2963 (with-current-buffer buffer
2964 (setq mode-line-process
2965 (cond ((null exit-status)
2966 " - Error")
2967 ((stringp exit-status)
2968 (format " - Signal [%s]" exit-status))
2969 ((not (equal 0 exit-status))
2970 (format " - Exit [%d]" exit-status)))))
2971 (if (with-current-buffer buffer (> (point-max) (point-min)))
2972 ;; There's some output, display it
2973 (display-message-or-buffer buffer)
2974 ;; No output; error?
2975 (let ((output
2976 (if (and error-file
2977 (< 0 (nth 7 (file-attributes error-file))))
2978 (format "some error output%s"
2979 (if shell-command-default-error-buffer
2980 (format " to the \"%s\" buffer"
2981 shell-command-default-error-buffer)
2982 ""))
2983 "no output")))
2984 (cond ((null exit-status)
2985 (message "(Shell command failed with error)"))
2986 ((equal 0 exit-status)
2987 (message "(Shell command succeeded with %s)"
2988 output))
2989 ((stringp exit-status)
2990 (message "(Shell command killed by signal %s)"
2991 exit-status))
2993 (message "(Shell command failed with code %d and %s)"
2994 exit-status output))))
2995 ;; Don't kill: there might be useful info in the undo-log.
2996 ;; (kill-buffer buffer)
2997 ))))
2999 (when (and error-file (file-exists-p error-file))
3000 (if (< 0 (nth 7 (file-attributes error-file)))
3001 (with-current-buffer (get-buffer-create error-buffer)
3002 (let ((pos-from-end (- (point-max) (point))))
3003 (or (bobp)
3004 (insert "\f\n"))
3005 ;; Do no formatting while reading error file,
3006 ;; because that can run a shell command, and we
3007 ;; don't want that to cause an infinite recursion.
3008 (format-insert-file error-file nil)
3009 ;; Put point after the inserted errors.
3010 (goto-char (- (point-max) pos-from-end)))
3011 (and display-error-buffer
3012 (display-buffer (current-buffer)))))
3013 (delete-file error-file))
3014 exit-status))
3016 (defun shell-command-to-string (command)
3017 "Execute shell command COMMAND and return its output as a string."
3018 (with-output-to-string
3019 (with-current-buffer
3020 standard-output
3021 (process-file shell-file-name nil t nil shell-command-switch command))))
3023 (defun process-file (program &optional infile buffer display &rest args)
3024 "Process files synchronously in a separate process.
3025 Similar to `call-process', but may invoke a file handler based on
3026 `default-directory'. The current working directory of the
3027 subprocess is `default-directory'.
3029 File names in INFILE and BUFFER are handled normally, but file
3030 names in ARGS should be relative to `default-directory', as they
3031 are passed to the process verbatim. \(This is a difference to
3032 `call-process' which does not support file handlers for INFILE
3033 and BUFFER.\)
3035 Some file handlers might not support all variants, for example
3036 they might behave as if DISPLAY was nil, regardless of the actual
3037 value passed."
3038 (let ((fh (find-file-name-handler default-directory 'process-file))
3039 lc stderr-file)
3040 (unwind-protect
3041 (if fh (apply fh 'process-file program infile buffer display args)
3042 (when infile (setq lc (file-local-copy infile)))
3043 (setq stderr-file (when (and (consp buffer) (stringp (cadr buffer)))
3044 (make-temp-file "emacs")))
3045 (prog1
3046 (apply 'call-process program
3047 (or lc infile)
3048 (if stderr-file (list (car buffer) stderr-file) buffer)
3049 display args)
3050 (when stderr-file (copy-file stderr-file (cadr buffer) t))))
3051 (when stderr-file (delete-file stderr-file))
3052 (when lc (delete-file lc)))))
3054 (defvar process-file-side-effects t
3055 "Whether a call of `process-file' changes remote files.
3057 By default, this variable is always set to `t', meaning that a
3058 call of `process-file' could potentially change any file on a
3059 remote host. When set to `nil', a file handler could optimize
3060 its behavior with respect to remote file attribute caching.
3062 You should only ever change this variable with a let-binding;
3063 never with `setq'.")
3065 (defun start-file-process (name buffer program &rest program-args)
3066 "Start a program in a subprocess. Return the process object for it.
3068 Similar to `start-process', but may invoke a file handler based on
3069 `default-directory'. See Info node `(elisp)Magic File Names'.
3071 This handler ought to run PROGRAM, perhaps on the local host,
3072 perhaps on a remote host that corresponds to `default-directory'.
3073 In the latter case, the local part of `default-directory' becomes
3074 the working directory of the process.
3076 PROGRAM and PROGRAM-ARGS might be file names. They are not
3077 objects of file handler invocation. File handlers might not
3078 support pty association, if PROGRAM is nil."
3079 (let ((fh (find-file-name-handler default-directory 'start-file-process)))
3080 (if fh (apply fh 'start-file-process name buffer program program-args)
3081 (apply 'start-process name buffer program program-args))))
3083 ;;;; Process menu
3085 (defvar tabulated-list-format)
3086 (defvar tabulated-list-entries)
3087 (defvar tabulated-list-sort-key)
3088 (declare-function tabulated-list-init-header "tabulated-list" ())
3089 (declare-function tabulated-list-print "tabulated-list"
3090 (&optional remember-pos))
3092 (defvar process-menu-query-only nil)
3094 (define-derived-mode process-menu-mode tabulated-list-mode "Process Menu"
3095 "Major mode for listing the processes called by Emacs."
3096 (setq tabulated-list-format [("Process" 15 t)
3097 ("Status" 7 t)
3098 ("Buffer" 15 t)
3099 ("TTY" 12 t)
3100 ("Command" 0 t)])
3101 (make-local-variable 'process-menu-query-only)
3102 (setq tabulated-list-sort-key (cons "Process" nil))
3103 (add-hook 'tabulated-list-revert-hook 'list-processes--refresh nil t)
3104 (tabulated-list-init-header))
3106 (defun list-processes--refresh ()
3107 "Recompute the list of processes for the Process List buffer.
3108 Also, delete any process that is exited or signaled."
3109 (setq tabulated-list-entries nil)
3110 (dolist (p (process-list))
3111 (cond ((memq (process-status p) '(exit signal closed))
3112 (delete-process p))
3113 ((or (not process-menu-query-only)
3114 (process-query-on-exit-flag p))
3115 (let* ((buf (process-buffer p))
3116 (type (process-type p))
3117 (name (process-name p))
3118 (status (symbol-name (process-status p)))
3119 (buf-label (if (buffer-live-p buf)
3120 `(,(buffer-name buf)
3121 face link
3122 help-echo ,(concat "Visit buffer `"
3123 (buffer-name buf) "'")
3124 follow-link t
3125 process-buffer ,buf
3126 action process-menu-visit-buffer)
3127 "--"))
3128 (tty (or (process-tty-name p) "--"))
3129 (cmd
3130 (if (memq type '(network serial))
3131 (let ((contact (process-contact p t)))
3132 (if (eq type 'network)
3133 (format "(%s %s)"
3134 (if (plist-get contact :type)
3135 "datagram"
3136 "network")
3137 (if (plist-get contact :server)
3138 (format "server on %s"
3140 (plist-get contact :host)
3141 (plist-get contact :local)))
3142 (format "connection to %s"
3143 (plist-get contact :host))))
3144 (format "(serial port %s%s)"
3145 (or (plist-get contact :port) "?")
3146 (let ((speed (plist-get contact :speed)))
3147 (if speed
3148 (format " at %s b/s" speed)
3149 "")))))
3150 (mapconcat 'identity (process-command p) " "))))
3151 (push (list p (vector name status buf-label tty cmd))
3152 tabulated-list-entries))))))
3154 (defun process-menu-visit-buffer (button)
3155 (display-buffer (button-get button 'process-buffer)))
3157 (defun list-processes (&optional query-only buffer)
3158 "Display a list of all processes that are Emacs sub-processes.
3159 If optional argument QUERY-ONLY is non-nil, only processes with
3160 the query-on-exit flag set are listed.
3161 Any process listed as exited or signaled is actually eliminated
3162 after the listing is made.
3163 Optional argument BUFFER specifies a buffer to use, instead of
3164 \"*Process List*\".
3165 The return value is always nil.
3167 This function lists only processes that were launched by Emacs. To
3168 see other processes running on the system, use `list-system-processes'."
3169 (interactive)
3170 (or (fboundp 'process-list)
3171 (error "Asynchronous subprocesses are not supported on this system"))
3172 (unless (bufferp buffer)
3173 (setq buffer (get-buffer-create "*Process List*")))
3174 (with-current-buffer buffer
3175 (process-menu-mode)
3176 (setq process-menu-query-only query-only)
3177 (list-processes--refresh)
3178 (tabulated-list-print))
3179 (display-buffer buffer)
3180 nil)
3182 (defvar universal-argument-map
3183 (let ((map (make-sparse-keymap))
3184 (universal-argument-minus
3185 ;; For backward compatibility, minus with no modifiers is an ordinary
3186 ;; command if digits have already been entered.
3187 `(menu-item "" negative-argument
3188 :filter ,(lambda (cmd)
3189 (if (integerp prefix-arg) nil cmd)))))
3190 (define-key map [switch-frame]
3191 (lambda (e) (interactive "e")
3192 (handle-switch-frame e) (universal-argument--mode)))
3193 (define-key map [?\C-u] 'universal-argument-more)
3194 (define-key map [?-] universal-argument-minus)
3195 (define-key map [?0] 'digit-argument)
3196 (define-key map [?1] 'digit-argument)
3197 (define-key map [?2] 'digit-argument)
3198 (define-key map [?3] 'digit-argument)
3199 (define-key map [?4] 'digit-argument)
3200 (define-key map [?5] 'digit-argument)
3201 (define-key map [?6] 'digit-argument)
3202 (define-key map [?7] 'digit-argument)
3203 (define-key map [?8] 'digit-argument)
3204 (define-key map [?9] 'digit-argument)
3205 (define-key map [kp-0] 'digit-argument)
3206 (define-key map [kp-1] 'digit-argument)
3207 (define-key map [kp-2] 'digit-argument)
3208 (define-key map [kp-3] 'digit-argument)
3209 (define-key map [kp-4] 'digit-argument)
3210 (define-key map [kp-5] 'digit-argument)
3211 (define-key map [kp-6] 'digit-argument)
3212 (define-key map [kp-7] 'digit-argument)
3213 (define-key map [kp-8] 'digit-argument)
3214 (define-key map [kp-9] 'digit-argument)
3215 (define-key map [kp-subtract] universal-argument-minus)
3216 map)
3217 "Keymap used while processing \\[universal-argument].")
3219 (defun universal-argument--mode ()
3220 (set-temporary-overlay-map universal-argument-map))
3222 (defun universal-argument ()
3223 "Begin a numeric argument for the following command.
3224 Digits or minus sign following \\[universal-argument] make up the numeric argument.
3225 \\[universal-argument] following the digits or minus sign ends the argument.
3226 \\[universal-argument] without digits or minus sign provides 4 as argument.
3227 Repeating \\[universal-argument] without digits or minus sign
3228 multiplies the argument by 4 each time.
3229 For some commands, just \\[universal-argument] by itself serves as a flag
3230 which is different in effect from any particular numeric argument.
3231 These commands include \\[set-mark-command] and \\[start-kbd-macro]."
3232 (interactive)
3233 (setq prefix-arg (list 4))
3234 (universal-argument--mode))
3236 (defun universal-argument-more (arg)
3237 ;; A subsequent C-u means to multiply the factor by 4 if we've typed
3238 ;; nothing but C-u's; otherwise it means to terminate the prefix arg.
3239 (interactive "P")
3240 (setq prefix-arg (if (consp arg)
3241 (list (* 4 (car arg)))
3242 (if (eq arg '-)
3243 (list -4)
3244 arg)))
3245 (when (consp prefix-arg) (universal-argument--mode)))
3247 (defun negative-argument (arg)
3248 "Begin a negative numeric argument for the next command.
3249 \\[universal-argument] following digits or minus sign ends the argument."
3250 (interactive "P")
3251 (setq prefix-arg (cond ((integerp arg) (- arg))
3252 ((eq arg '-) nil)
3253 (t '-)))
3254 (universal-argument--mode))
3256 (defun digit-argument (arg)
3257 "Part of the numeric argument for the next command.
3258 \\[universal-argument] following digits or minus sign ends the argument."
3259 (interactive "P")
3260 (let* ((char (if (integerp last-command-event)
3261 last-command-event
3262 (get last-command-event 'ascii-character)))
3263 (digit (- (logand char ?\177) ?0)))
3264 (setq prefix-arg (cond ((integerp arg)
3265 (+ (* arg 10)
3266 (if (< arg 0) (- digit) digit)))
3267 ((eq arg '-)
3268 ;; Treat -0 as just -, so that -01 will work.
3269 (if (zerop digit) '- (- digit)))
3271 digit))))
3272 (universal-argument--mode))
3275 (defvar filter-buffer-substring-functions nil
3276 "This variable is a wrapper hook around `filter-buffer-substring'.")
3277 (make-obsolete-variable 'filter-buffer-substring-functions
3278 'filter-buffer-substring-function "24.4")
3280 (defvar filter-buffer-substring-function #'buffer-substring--filter
3281 "Function to perform the filtering in `filter-buffer-substring'.
3282 The function is called with 3 arguments:
3283 \(BEG END DELETE). The arguments BEG, END, and DELETE are the same
3284 as those of `filter-buffer-substring' in each case.
3285 It should return the buffer substring between BEG and END, after filtering.")
3287 (defvar buffer-substring-filters nil
3288 "List of filter functions for `filter-buffer-substring'.
3289 Each function must accept a single argument, a string, and return
3290 a string. The buffer substring is passed to the first function
3291 in the list, and the return value of each function is passed to
3292 the next.
3293 As a special convention, point is set to the start of the buffer text
3294 being operated on (i.e., the first argument of `filter-buffer-substring')
3295 before these functions are called.")
3296 (make-obsolete-variable 'buffer-substring-filters
3297 'filter-buffer-substring-function "24.1")
3299 (defun filter-buffer-substring (beg end &optional delete)
3300 "Return the buffer substring between BEG and END, after filtering.
3301 The hook `filter-buffer-substring-function' performs the actual filtering.
3302 By default, no filtering is done.
3304 If DELETE is non-nil, the text between BEG and END is deleted
3305 from the buffer.
3307 This function should be used instead of `buffer-substring',
3308 `buffer-substring-no-properties', or `delete-and-extract-region'
3309 when you want to allow filtering to take place. For example,
3310 major or minor modes can use `filter-buffer-substring-function' to
3311 extract characters that are special to a buffer, and should not
3312 be copied into other buffers."
3313 (funcall filter-buffer-substring-function beg end delete))
3315 ;; FIXME: `with-wrapper-hook' is obsolete
3316 (defun buffer-substring--filter (beg end &optional delete)
3317 (with-wrapper-hook filter-buffer-substring-functions (beg end delete)
3318 (cond
3319 ((or delete buffer-substring-filters)
3320 (save-excursion
3321 (goto-char beg)
3322 (let ((string (if delete (delete-and-extract-region beg end)
3323 (buffer-substring beg end))))
3324 (dolist (filter buffer-substring-filters)
3325 (setq string (funcall filter string)))
3326 string)))
3328 (buffer-substring beg end)))))
3331 ;;;; Window system cut and paste hooks.
3333 (defvar interprogram-cut-function nil
3334 "Function to call to make a killed region available to other programs.
3335 Most window systems provide a facility for cutting and pasting
3336 text between different programs, such as the clipboard on X and
3337 MS-Windows, or the pasteboard on Nextstep/Mac OS.
3339 This variable holds a function that Emacs calls whenever text is
3340 put in the kill ring, to make the new kill available to other
3341 programs. The function takes one argument, TEXT, which is a
3342 string containing the text which should be made available.")
3344 (defvar interprogram-paste-function nil
3345 "Function to call to get text cut from other programs.
3346 Most window systems provide a facility for cutting and pasting
3347 text between different programs, such as the clipboard on X and
3348 MS-Windows, or the pasteboard on Nextstep/Mac OS.
3350 This variable holds a function that Emacs calls to obtain text
3351 that other programs have provided for pasting. The function is
3352 called with no arguments. If no other program has provided text
3353 to paste, the function should return nil (in which case the
3354 caller, usually `current-kill', should use the top of the Emacs
3355 kill ring). If another program has provided text to paste, the
3356 function should return that text as a string (in which case the
3357 caller should put this string in the kill ring as the latest
3358 kill).
3360 The function may also return a list of strings if the window
3361 system supports multiple selections. The first string will be
3362 used as the pasted text, but the other will be placed in the kill
3363 ring for easy access via `yank-pop'.
3365 Note that the function should return a string only if a program
3366 other than Emacs has provided a string for pasting; if Emacs
3367 provided the most recent string, the function should return nil.
3368 If it is difficult to tell whether Emacs or some other program
3369 provided the current string, it is probably good enough to return
3370 nil if the string is equal (according to `string=') to the last
3371 text Emacs provided.")
3375 ;;;; The kill ring data structure.
3377 (defvar kill-ring nil
3378 "List of killed text sequences.
3379 Since the kill ring is supposed to interact nicely with cut-and-paste
3380 facilities offered by window systems, use of this variable should
3381 interact nicely with `interprogram-cut-function' and
3382 `interprogram-paste-function'. The functions `kill-new',
3383 `kill-append', and `current-kill' are supposed to implement this
3384 interaction; you may want to use them instead of manipulating the kill
3385 ring directly.")
3387 (defcustom kill-ring-max 60
3388 "Maximum length of kill ring before oldest elements are thrown away."
3389 :type 'integer
3390 :group 'killing)
3392 (defvar kill-ring-yank-pointer nil
3393 "The tail of the kill ring whose car is the last thing yanked.")
3395 (defcustom save-interprogram-paste-before-kill nil
3396 "Save clipboard strings into kill ring before replacing them.
3397 When one selects something in another program to paste it into Emacs,
3398 but kills something in Emacs before actually pasting it,
3399 this selection is gone unless this variable is non-nil,
3400 in which case the other program's selection is saved in the `kill-ring'
3401 before the Emacs kill and one can still paste it using \\[yank] \\[yank-pop]."
3402 :type 'boolean
3403 :group 'killing
3404 :version "23.2")
3406 (defcustom kill-do-not-save-duplicates nil
3407 "Do not add a new string to `kill-ring' if it duplicates the last one.
3408 The comparison is done using `equal-including-properties'."
3409 :type 'boolean
3410 :group 'killing
3411 :version "23.2")
3413 (defun kill-new (string &optional replace yank-handler)
3414 "Make STRING the latest kill in the kill ring.
3415 Set `kill-ring-yank-pointer' to point to it.
3416 If `interprogram-cut-function' is non-nil, apply it to STRING.
3417 Optional second argument REPLACE non-nil means that STRING will replace
3418 the front of the kill ring, rather than being added to the list.
3420 When `save-interprogram-paste-before-kill' and `interprogram-paste-function'
3421 are non-nil, saves the interprogram paste string(s) into `kill-ring' before
3422 STRING.
3424 When the yank handler has a non-nil PARAM element, the original STRING
3425 argument is not used by `insert-for-yank'. However, since Lisp code
3426 may access and use elements from the kill ring directly, the STRING
3427 argument should still be a \"useful\" string for such uses."
3428 (if (> (length string) 0)
3429 (if yank-handler
3430 (put-text-property 0 (length string)
3431 'yank-handler yank-handler string))
3432 (if yank-handler
3433 (signal 'args-out-of-range
3434 (list string "yank-handler specified for empty string"))))
3435 (unless (and kill-do-not-save-duplicates
3436 ;; Due to text properties such as 'yank-handler that
3437 ;; can alter the contents to yank, comparison using
3438 ;; `equal' is unsafe.
3439 (equal-including-properties string (car kill-ring)))
3440 (if (fboundp 'menu-bar-update-yank-menu)
3441 (menu-bar-update-yank-menu string (and replace (car kill-ring)))))
3442 (when save-interprogram-paste-before-kill
3443 (let ((interprogram-paste (and interprogram-paste-function
3444 (funcall interprogram-paste-function))))
3445 (when interprogram-paste
3446 (dolist (s (if (listp interprogram-paste)
3447 (nreverse interprogram-paste)
3448 (list interprogram-paste)))
3449 (unless (and kill-do-not-save-duplicates
3450 (equal-including-properties s (car kill-ring)))
3451 (push s kill-ring))))))
3452 (unless (and kill-do-not-save-duplicates
3453 (equal-including-properties string (car kill-ring)))
3454 (if (and replace kill-ring)
3455 (setcar kill-ring string)
3456 (push string kill-ring)
3457 (if (> (length kill-ring) kill-ring-max)
3458 (setcdr (nthcdr (1- kill-ring-max) kill-ring) nil))))
3459 (setq kill-ring-yank-pointer kill-ring)
3460 (if interprogram-cut-function
3461 (funcall interprogram-cut-function string)))
3462 (set-advertised-calling-convention
3463 'kill-new '(string &optional replace) "23.3")
3465 (defun kill-append (string before-p &optional yank-handler)
3466 "Append STRING to the end of the latest kill in the kill ring.
3467 If BEFORE-P is non-nil, prepend STRING to the kill.
3468 If `interprogram-cut-function' is set, pass the resulting kill to it."
3469 (let* ((cur (car kill-ring)))
3470 (kill-new (if before-p (concat string cur) (concat cur string))
3471 (or (= (length cur) 0)
3472 (equal yank-handler (get-text-property 0 'yank-handler cur)))
3473 yank-handler)))
3474 (set-advertised-calling-convention 'kill-append '(string before-p) "23.3")
3476 (defcustom yank-pop-change-selection nil
3477 "Whether rotating the kill ring changes the window system selection.
3478 If non-nil, whenever the kill ring is rotated (usually via the
3479 `yank-pop' command), Emacs also calls `interprogram-cut-function'
3480 to copy the new kill to the window system selection."
3481 :type 'boolean
3482 :group 'killing
3483 :version "23.1")
3485 (defun current-kill (n &optional do-not-move)
3486 "Rotate the yanking point by N places, and then return that kill.
3487 If N is zero and `interprogram-paste-function' is set to a
3488 function that returns a string or a list of strings, and if that
3489 function doesn't return nil, then that string (or list) is added
3490 to the front of the kill ring and the string (or first string in
3491 the list) is returned as the latest kill.
3493 If N is not zero, and if `yank-pop-change-selection' is
3494 non-nil, use `interprogram-cut-function' to transfer the
3495 kill at the new yank point into the window system selection.
3497 If optional arg DO-NOT-MOVE is non-nil, then don't actually
3498 move the yanking point; just return the Nth kill forward."
3500 (let ((interprogram-paste (and (= n 0)
3501 interprogram-paste-function
3502 (funcall interprogram-paste-function))))
3503 (if interprogram-paste
3504 (progn
3505 ;; Disable the interprogram cut function when we add the new
3506 ;; text to the kill ring, so Emacs doesn't try to own the
3507 ;; selection, with identical text.
3508 (let ((interprogram-cut-function nil))
3509 (if (listp interprogram-paste)
3510 (mapc 'kill-new (nreverse interprogram-paste))
3511 (kill-new interprogram-paste)))
3512 (car kill-ring))
3513 (or kill-ring (error "Kill ring is empty"))
3514 (let ((ARGth-kill-element
3515 (nthcdr (mod (- n (length kill-ring-yank-pointer))
3516 (length kill-ring))
3517 kill-ring)))
3518 (unless do-not-move
3519 (setq kill-ring-yank-pointer ARGth-kill-element)
3520 (when (and yank-pop-change-selection
3521 (> n 0)
3522 interprogram-cut-function)
3523 (funcall interprogram-cut-function (car ARGth-kill-element))))
3524 (car ARGth-kill-element)))))
3528 ;;;; Commands for manipulating the kill ring.
3530 (defcustom kill-read-only-ok nil
3531 "Non-nil means don't signal an error for killing read-only text."
3532 :type 'boolean
3533 :group 'killing)
3535 (defun kill-region (beg end &optional yank-handler)
3536 "Kill (\"cut\") text between point and mark.
3537 This deletes the text from the buffer and saves it in the kill ring.
3538 The command \\[yank] can retrieve it from there.
3539 \(If you want to save the region without killing it, use \\[kill-ring-save].)
3541 If you want to append the killed region to the last killed text,
3542 use \\[append-next-kill] before \\[kill-region].
3544 If the buffer is read-only, Emacs will beep and refrain from deleting
3545 the text, but put the text in the kill ring anyway. This means that
3546 you can use the killing commands to copy text from a read-only buffer.
3548 Lisp programs should use this function for killing text.
3549 (To delete text, use `delete-region'.)
3550 Supply two arguments, character positions indicating the stretch of text
3551 to be killed.
3552 Any command that calls this function is a \"kill command\".
3553 If the previous command was also a kill command,
3554 the text killed this time appends to the text killed last time
3555 to make one entry in the kill ring."
3556 ;; Pass point first, then mark, because the order matters
3557 ;; when calling kill-append.
3558 (interactive (list (point) (mark)))
3559 (unless (and beg end)
3560 (error "The mark is not set now, so there is no region"))
3561 (condition-case nil
3562 (let ((string (filter-buffer-substring beg end t)))
3563 (when string ;STRING is nil if BEG = END
3564 ;; Add that string to the kill ring, one way or another.
3565 (if (eq last-command 'kill-region)
3566 (kill-append string (< end beg) yank-handler)
3567 (kill-new string nil yank-handler)))
3568 (when (or string (eq last-command 'kill-region))
3569 (setq this-command 'kill-region))
3570 (setq deactivate-mark t)
3571 nil)
3572 ((buffer-read-only text-read-only)
3573 ;; The code above failed because the buffer, or some of the characters
3574 ;; in the region, are read-only.
3575 ;; We should beep, in case the user just isn't aware of this.
3576 ;; However, there's no harm in putting
3577 ;; the region's text in the kill ring, anyway.
3578 (copy-region-as-kill beg end)
3579 ;; Set this-command now, so it will be set even if we get an error.
3580 (setq this-command 'kill-region)
3581 ;; This should barf, if appropriate, and give us the correct error.
3582 (if kill-read-only-ok
3583 (progn (message "Read only text copied to kill ring") nil)
3584 ;; Signal an error if the buffer is read-only.
3585 (barf-if-buffer-read-only)
3586 ;; If the buffer isn't read-only, the text is.
3587 (signal 'text-read-only (list (current-buffer)))))))
3588 (set-advertised-calling-convention 'kill-region '(beg end) "23.3")
3590 ;; copy-region-as-kill no longer sets this-command, because it's confusing
3591 ;; to get two copies of the text when the user accidentally types M-w and
3592 ;; then corrects it with the intended C-w.
3593 (defun copy-region-as-kill (beg end)
3594 "Save the region as if killed, but don't kill it.
3595 In Transient Mark mode, deactivate the mark.
3596 If `interprogram-cut-function' is non-nil, also save the text for a window
3597 system cut and paste.
3599 This command's old key binding has been given to `kill-ring-save'."
3600 (interactive "r")
3601 (if (eq last-command 'kill-region)
3602 (kill-append (filter-buffer-substring beg end) (< end beg))
3603 (kill-new (filter-buffer-substring beg end)))
3604 (setq deactivate-mark t)
3605 nil)
3607 (defun kill-ring-save (beg end)
3608 "Save the region as if killed, but don't kill it.
3609 In Transient Mark mode, deactivate the mark.
3610 If `interprogram-cut-function' is non-nil, also save the text for a window
3611 system cut and paste.
3613 If you want to append the killed line to the last killed text,
3614 use \\[append-next-kill] before \\[kill-ring-save].
3616 This command is similar to `copy-region-as-kill', except that it gives
3617 visual feedback indicating the extent of the region being copied."
3618 (interactive "r")
3619 (copy-region-as-kill beg end)
3620 ;; This use of called-interactively-p is correct because the code it
3621 ;; controls just gives the user visual feedback.
3622 (if (called-interactively-p 'interactive)
3623 (indicate-copied-region)))
3625 (defun indicate-copied-region (&optional message-len)
3626 "Indicate that the region text has been copied interactively.
3627 If the mark is visible in the selected window, blink the cursor
3628 between point and mark if there is currently no active region
3629 highlighting.
3631 If the mark lies outside the selected window, display an
3632 informative message containing a sample of the copied text. The
3633 optional argument MESSAGE-LEN, if non-nil, specifies the length
3634 of this sample text; it defaults to 40."
3635 (let ((mark (mark t))
3636 (point (point))
3637 ;; Inhibit quitting so we can make a quit here
3638 ;; look like a C-g typed as a command.
3639 (inhibit-quit t))
3640 (if (pos-visible-in-window-p mark (selected-window))
3641 ;; Swap point-and-mark quickly so as to show the region that
3642 ;; was selected. Don't do it if the region is highlighted.
3643 (unless (and (region-active-p)
3644 (face-background 'region))
3645 ;; Swap point and mark.
3646 (set-marker (mark-marker) (point) (current-buffer))
3647 (goto-char mark)
3648 (sit-for blink-matching-delay)
3649 ;; Swap back.
3650 (set-marker (mark-marker) mark (current-buffer))
3651 (goto-char point)
3652 ;; If user quit, deactivate the mark
3653 ;; as C-g would as a command.
3654 (and quit-flag mark-active
3655 (deactivate-mark)))
3656 (let ((len (min (abs (- mark point))
3657 (or message-len 40))))
3658 (if (< point mark)
3659 ;; Don't say "killed"; that is misleading.
3660 (message "Saved text until \"%s\""
3661 (buffer-substring-no-properties (- mark len) mark))
3662 (message "Saved text from \"%s\""
3663 (buffer-substring-no-properties mark (+ mark len))))))))
3665 (defun append-next-kill (&optional interactive)
3666 "Cause following command, if it kills, to append to previous kill.
3667 The argument is used for internal purposes; do not supply one."
3668 (interactive "p")
3669 ;; We don't use (interactive-p), since that breaks kbd macros.
3670 (if interactive
3671 (progn
3672 (setq this-command 'kill-region)
3673 (message "If the next command is a kill, it will append"))
3674 (setq last-command 'kill-region)))
3676 ;; Yanking.
3678 (defcustom yank-handled-properties
3679 '((font-lock-face . yank-handle-font-lock-face-property)
3680 (category . yank-handle-category-property))
3681 "List of special text property handling conditions for yanking.
3682 Each element should have the form (PROP . FUN), where PROP is a
3683 property symbol and FUN is a function. When the `yank' command
3684 inserts text into the buffer, it scans the inserted text for
3685 stretches of text that have `eq' values of the text property
3686 PROP; for each such stretch of text, FUN is called with three
3687 arguments: the property's value in that text, and the start and
3688 end positions of the text.
3690 This is done prior to removing the properties specified by
3691 `yank-excluded-properties'."
3692 :group 'killing
3693 :version "24.3")
3695 ;; This is actually used in subr.el but defcustom does not work there.
3696 (defcustom yank-excluded-properties
3697 '(category field follow-link fontified font-lock-face help-echo
3698 intangible invisible keymap local-map mouse-face read-only
3699 yank-handler)
3700 "Text properties to discard when yanking.
3701 The value should be a list of text properties to discard or t,
3702 which means to discard all text properties.
3704 See also `yank-handled-properties'."
3705 :type '(choice (const :tag "All" t) (repeat symbol))
3706 :group 'killing
3707 :version "24.3")
3709 (defvar yank-window-start nil)
3710 (defvar yank-undo-function nil
3711 "If non-nil, function used by `yank-pop' to delete last stretch of yanked text.
3712 Function is called with two parameters, START and END corresponding to
3713 the value of the mark and point; it is guaranteed that START <= END.
3714 Normally set from the UNDO element of a yank-handler; see `insert-for-yank'.")
3716 (defun yank-pop (&optional arg)
3717 "Replace just-yanked stretch of killed text with a different stretch.
3718 This command is allowed only immediately after a `yank' or a `yank-pop'.
3719 At such a time, the region contains a stretch of reinserted
3720 previously-killed text. `yank-pop' deletes that text and inserts in its
3721 place a different stretch of killed text.
3723 With no argument, the previous kill is inserted.
3724 With argument N, insert the Nth previous kill.
3725 If N is negative, this is a more recent kill.
3727 The sequence of kills wraps around, so that after the oldest one
3728 comes the newest one.
3730 When this command inserts killed text into the buffer, it honors
3731 `yank-excluded-properties' and `yank-handler' as described in the
3732 doc string for `insert-for-yank-1', which see."
3733 (interactive "*p")
3734 (if (not (eq last-command 'yank))
3735 (error "Previous command was not a yank"))
3736 (setq this-command 'yank)
3737 (unless arg (setq arg 1))
3738 (let ((inhibit-read-only t)
3739 (before (< (point) (mark t))))
3740 (if before
3741 (funcall (or yank-undo-function 'delete-region) (point) (mark t))
3742 (funcall (or yank-undo-function 'delete-region) (mark t) (point)))
3743 (setq yank-undo-function nil)
3744 (set-marker (mark-marker) (point) (current-buffer))
3745 (insert-for-yank (current-kill arg))
3746 ;; Set the window start back where it was in the yank command,
3747 ;; if possible.
3748 (set-window-start (selected-window) yank-window-start t)
3749 (if before
3750 ;; This is like exchange-point-and-mark, but doesn't activate the mark.
3751 ;; It is cleaner to avoid activation, even though the command
3752 ;; loop would deactivate the mark because we inserted text.
3753 (goto-char (prog1 (mark t)
3754 (set-marker (mark-marker) (point) (current-buffer))))))
3755 nil)
3757 (defun yank (&optional arg)
3758 "Reinsert (\"paste\") the last stretch of killed text.
3759 More precisely, reinsert the most recent kill, which is the
3760 stretch of killed text most recently killed OR yanked. Put point
3761 at the end, and set mark at the beginning without activating it.
3762 With just \\[universal-argument] as argument, put point at beginning, and mark at end.
3763 With argument N, reinsert the Nth most recent kill.
3765 When this command inserts text into the buffer, it honors the
3766 `yank-handled-properties' and `yank-excluded-properties'
3767 variables, and the `yank-handler' text property. See
3768 `insert-for-yank-1' for details.
3770 See also the command `yank-pop' (\\[yank-pop])."
3771 (interactive "*P")
3772 (setq yank-window-start (window-start))
3773 ;; If we don't get all the way thru, make last-command indicate that
3774 ;; for the following command.
3775 (setq this-command t)
3776 (push-mark (point))
3777 (insert-for-yank (current-kill (cond
3778 ((listp arg) 0)
3779 ((eq arg '-) -2)
3780 (t (1- arg)))))
3781 (if (consp arg)
3782 ;; This is like exchange-point-and-mark, but doesn't activate the mark.
3783 ;; It is cleaner to avoid activation, even though the command
3784 ;; loop would deactivate the mark because we inserted text.
3785 (goto-char (prog1 (mark t)
3786 (set-marker (mark-marker) (point) (current-buffer)))))
3787 ;; If we do get all the way thru, make this-command indicate that.
3788 (if (eq this-command t)
3789 (setq this-command 'yank))
3790 nil)
3792 (defun rotate-yank-pointer (arg)
3793 "Rotate the yanking point in the kill ring.
3794 With ARG, rotate that many kills forward (or backward, if negative)."
3795 (interactive "p")
3796 (current-kill arg))
3798 ;; Some kill commands.
3800 ;; Internal subroutine of delete-char
3801 (defun kill-forward-chars (arg)
3802 (if (listp arg) (setq arg (car arg)))
3803 (if (eq arg '-) (setq arg -1))
3804 (kill-region (point) (+ (point) arg)))
3806 ;; Internal subroutine of backward-delete-char
3807 (defun kill-backward-chars (arg)
3808 (if (listp arg) (setq arg (car arg)))
3809 (if (eq arg '-) (setq arg -1))
3810 (kill-region (point) (- (point) arg)))
3812 (defcustom backward-delete-char-untabify-method 'untabify
3813 "The method for untabifying when deleting backward.
3814 Can be `untabify' -- turn a tab to many spaces, then delete one space;
3815 `hungry' -- delete all whitespace, both tabs and spaces;
3816 `all' -- delete all whitespace, including tabs, spaces and newlines;
3817 nil -- just delete one character."
3818 :type '(choice (const untabify) (const hungry) (const all) (const nil))
3819 :version "20.3"
3820 :group 'killing)
3822 (defun backward-delete-char-untabify (arg &optional killp)
3823 "Delete characters backward, changing tabs into spaces.
3824 The exact behavior depends on `backward-delete-char-untabify-method'.
3825 Delete ARG chars, and kill (save in kill ring) if KILLP is non-nil.
3826 Interactively, ARG is the prefix arg (default 1)
3827 and KILLP is t if a prefix arg was specified."
3828 (interactive "*p\nP")
3829 (when (eq backward-delete-char-untabify-method 'untabify)
3830 (let ((count arg))
3831 (save-excursion
3832 (while (and (> count 0) (not (bobp)))
3833 (if (= (preceding-char) ?\t)
3834 (let ((col (current-column)))
3835 (forward-char -1)
3836 (setq col (- col (current-column)))
3837 (insert-char ?\s col)
3838 (delete-char 1)))
3839 (forward-char -1)
3840 (setq count (1- count))))))
3841 (let* ((skip (cond ((eq backward-delete-char-untabify-method 'hungry) " \t")
3842 ((eq backward-delete-char-untabify-method 'all)
3843 " \t\n\r")))
3844 (n (if skip
3845 (let* ((oldpt (point))
3846 (wh (- oldpt (save-excursion
3847 (skip-chars-backward skip)
3848 (constrain-to-field nil oldpt)))))
3849 (+ arg (if (zerop wh) 0 (1- wh))))
3850 arg)))
3851 ;; Avoid warning about delete-backward-char
3852 (with-no-warnings (delete-backward-char n killp))))
3854 (defun zap-to-char (arg char)
3855 "Kill up to and including ARGth occurrence of CHAR.
3856 Case is ignored if `case-fold-search' is non-nil in the current buffer.
3857 Goes backward if ARG is negative; error if CHAR not found."
3858 (interactive (list (prefix-numeric-value current-prefix-arg)
3859 (read-char "Zap to char: " t)))
3860 ;; Avoid "obsolete" warnings for translation-table-for-input.
3861 (with-no-warnings
3862 (if (char-table-p translation-table-for-input)
3863 (setq char (or (aref translation-table-for-input char) char))))
3864 (kill-region (point) (progn
3865 (search-forward (char-to-string char) nil nil arg)
3866 (point))))
3868 ;; kill-line and its subroutines.
3870 (defcustom kill-whole-line nil
3871 "If non-nil, `kill-line' with no arg at start of line kills the whole line."
3872 :type 'boolean
3873 :group 'killing)
3875 (defun kill-line (&optional arg)
3876 "Kill the rest of the current line; if no nonblanks there, kill thru newline.
3877 With prefix argument ARG, kill that many lines from point.
3878 Negative arguments kill lines backward.
3879 With zero argument, kills the text before point on the current line.
3881 When calling from a program, nil means \"no arg\",
3882 a number counts as a prefix arg.
3884 To kill a whole line, when point is not at the beginning, type \
3885 \\[move-beginning-of-line] \\[kill-line] \\[kill-line].
3887 If `show-trailing-whitespace' is non-nil, this command will just
3888 kill the rest of the current line, even if there are only
3889 nonblanks there.
3891 If option `kill-whole-line' is non-nil, then this command kills the whole line
3892 including its terminating newline, when used at the beginning of a line
3893 with no argument. As a consequence, you can always kill a whole line
3894 by typing \\[move-beginning-of-line] \\[kill-line].
3896 If you want to append the killed line to the last killed text,
3897 use \\[append-next-kill] before \\[kill-line].
3899 If the buffer is read-only, Emacs will beep and refrain from deleting
3900 the line, but put the line in the kill ring anyway. This means that
3901 you can use this command to copy text from a read-only buffer.
3902 \(If the variable `kill-read-only-ok' is non-nil, then this won't
3903 even beep.)"
3904 (interactive "P")
3905 (kill-region (point)
3906 ;; It is better to move point to the other end of the kill
3907 ;; before killing. That way, in a read-only buffer, point
3908 ;; moves across the text that is copied to the kill ring.
3909 ;; The choice has no effect on undo now that undo records
3910 ;; the value of point from before the command was run.
3911 (progn
3912 (if arg
3913 (forward-visible-line (prefix-numeric-value arg))
3914 (if (eobp)
3915 (signal 'end-of-buffer nil))
3916 (let ((end
3917 (save-excursion
3918 (end-of-visible-line) (point))))
3919 (if (or (save-excursion
3920 ;; If trailing whitespace is visible,
3921 ;; don't treat it as nothing.
3922 (unless show-trailing-whitespace
3923 (skip-chars-forward " \t" end))
3924 (= (point) end))
3925 (and kill-whole-line (bolp)))
3926 (forward-visible-line 1)
3927 (goto-char end))))
3928 (point))))
3930 (defun kill-whole-line (&optional arg)
3931 "Kill current line.
3932 With prefix ARG, kill that many lines starting from the current line.
3933 If ARG is negative, kill backward. Also kill the preceding newline.
3934 \(This is meant to make \\[repeat] work well with negative arguments.\)
3935 If ARG is zero, kill current line but exclude the trailing newline."
3936 (interactive "p")
3937 (or arg (setq arg 1))
3938 (if (and (> arg 0) (eobp) (save-excursion (forward-visible-line 0) (eobp)))
3939 (signal 'end-of-buffer nil))
3940 (if (and (< arg 0) (bobp) (save-excursion (end-of-visible-line) (bobp)))
3941 (signal 'beginning-of-buffer nil))
3942 (unless (eq last-command 'kill-region)
3943 (kill-new "")
3944 (setq last-command 'kill-region))
3945 (cond ((zerop arg)
3946 ;; We need to kill in two steps, because the previous command
3947 ;; could have been a kill command, in which case the text
3948 ;; before point needs to be prepended to the current kill
3949 ;; ring entry and the text after point appended. Also, we
3950 ;; need to use save-excursion to avoid copying the same text
3951 ;; twice to the kill ring in read-only buffers.
3952 (save-excursion
3953 (kill-region (point) (progn (forward-visible-line 0) (point))))
3954 (kill-region (point) (progn (end-of-visible-line) (point))))
3955 ((< arg 0)
3956 (save-excursion
3957 (kill-region (point) (progn (end-of-visible-line) (point))))
3958 (kill-region (point)
3959 (progn (forward-visible-line (1+ arg))
3960 (unless (bobp) (backward-char))
3961 (point))))
3963 (save-excursion
3964 (kill-region (point) (progn (forward-visible-line 0) (point))))
3965 (kill-region (point)
3966 (progn (forward-visible-line arg) (point))))))
3968 (defun forward-visible-line (arg)
3969 "Move forward by ARG lines, ignoring currently invisible newlines only.
3970 If ARG is negative, move backward -ARG lines.
3971 If ARG is zero, move to the beginning of the current line."
3972 (condition-case nil
3973 (if (> arg 0)
3974 (progn
3975 (while (> arg 0)
3976 (or (zerop (forward-line 1))
3977 (signal 'end-of-buffer nil))
3978 ;; If the newline we just skipped is invisible,
3979 ;; don't count it.
3980 (let ((prop
3981 (get-char-property (1- (point)) 'invisible)))
3982 (if (if (eq buffer-invisibility-spec t)
3983 prop
3984 (or (memq prop buffer-invisibility-spec)
3985 (assq prop buffer-invisibility-spec)))
3986 (setq arg (1+ arg))))
3987 (setq arg (1- arg)))
3988 ;; If invisible text follows, and it is a number of complete lines,
3989 ;; skip it.
3990 (let ((opoint (point)))
3991 (while (and (not (eobp))
3992 (let ((prop
3993 (get-char-property (point) 'invisible)))
3994 (if (eq buffer-invisibility-spec t)
3995 prop
3996 (or (memq prop buffer-invisibility-spec)
3997 (assq prop buffer-invisibility-spec)))))
3998 (goto-char
3999 (if (get-text-property (point) 'invisible)
4000 (or (next-single-property-change (point) 'invisible)
4001 (point-max))
4002 (next-overlay-change (point)))))
4003 (unless (bolp)
4004 (goto-char opoint))))
4005 (let ((first t))
4006 (while (or first (<= arg 0))
4007 (if first
4008 (beginning-of-line)
4009 (or (zerop (forward-line -1))
4010 (signal 'beginning-of-buffer nil)))
4011 ;; If the newline we just moved to is invisible,
4012 ;; don't count it.
4013 (unless (bobp)
4014 (let ((prop
4015 (get-char-property (1- (point)) 'invisible)))
4016 (unless (if (eq buffer-invisibility-spec t)
4017 prop
4018 (or (memq prop buffer-invisibility-spec)
4019 (assq prop buffer-invisibility-spec)))
4020 (setq arg (1+ arg)))))
4021 (setq first nil))
4022 ;; If invisible text follows, and it is a number of complete lines,
4023 ;; skip it.
4024 (let ((opoint (point)))
4025 (while (and (not (bobp))
4026 (let ((prop
4027 (get-char-property (1- (point)) 'invisible)))
4028 (if (eq buffer-invisibility-spec t)
4029 prop
4030 (or (memq prop buffer-invisibility-spec)
4031 (assq prop buffer-invisibility-spec)))))
4032 (goto-char
4033 (if (get-text-property (1- (point)) 'invisible)
4034 (or (previous-single-property-change (point) 'invisible)
4035 (point-min))
4036 (previous-overlay-change (point)))))
4037 (unless (bolp)
4038 (goto-char opoint)))))
4039 ((beginning-of-buffer end-of-buffer)
4040 nil)))
4042 (defun end-of-visible-line ()
4043 "Move to end of current visible line."
4044 (end-of-line)
4045 ;; If the following character is currently invisible,
4046 ;; skip all characters with that same `invisible' property value,
4047 ;; then find the next newline.
4048 (while (and (not (eobp))
4049 (save-excursion
4050 (skip-chars-forward "^\n")
4051 (let ((prop
4052 (get-char-property (point) 'invisible)))
4053 (if (eq buffer-invisibility-spec t)
4054 prop
4055 (or (memq prop buffer-invisibility-spec)
4056 (assq prop buffer-invisibility-spec))))))
4057 (skip-chars-forward "^\n")
4058 (if (get-text-property (point) 'invisible)
4059 (goto-char (or (next-single-property-change (point) 'invisible)
4060 (point-max)))
4061 (goto-char (next-overlay-change (point))))
4062 (end-of-line)))
4064 (defun insert-buffer (buffer)
4065 "Insert after point the contents of BUFFER.
4066 Puts mark after the inserted text.
4067 BUFFER may be a buffer or a buffer name.
4069 This function is meant for the user to run interactively.
4070 Don't call it from programs: use `insert-buffer-substring' instead!"
4071 (interactive
4072 (list
4073 (progn
4074 (barf-if-buffer-read-only)
4075 (read-buffer "Insert buffer: "
4076 (if (eq (selected-window) (next-window))
4077 (other-buffer (current-buffer))
4078 (window-buffer (next-window)))
4079 t))))
4080 (push-mark
4081 (save-excursion
4082 (insert-buffer-substring (get-buffer buffer))
4083 (point)))
4084 nil)
4086 (defun append-to-buffer (buffer start end)
4087 "Append to specified buffer the text of the region.
4088 It is inserted into that buffer before its point.
4090 When calling from a program, give three arguments:
4091 BUFFER (or buffer name), START and END.
4092 START and END specify the portion of the current buffer to be copied."
4093 (interactive
4094 (list (read-buffer "Append to buffer: " (other-buffer (current-buffer) t))
4095 (region-beginning) (region-end)))
4096 (let* ((oldbuf (current-buffer))
4097 (append-to (get-buffer-create buffer))
4098 (windows (get-buffer-window-list append-to t t))
4099 point)
4100 (save-excursion
4101 (with-current-buffer append-to
4102 (setq point (point))
4103 (barf-if-buffer-read-only)
4104 (insert-buffer-substring oldbuf start end)
4105 (dolist (window windows)
4106 (when (= (window-point window) point)
4107 (set-window-point window (point))))))))
4109 (defun prepend-to-buffer (buffer start end)
4110 "Prepend to specified buffer the text of the region.
4111 It is inserted into that buffer after its point.
4113 When calling from a program, give three arguments:
4114 BUFFER (or buffer name), START and END.
4115 START and END specify the portion of the current buffer to be copied."
4116 (interactive "BPrepend to buffer: \nr")
4117 (let ((oldbuf (current-buffer)))
4118 (with-current-buffer (get-buffer-create buffer)
4119 (barf-if-buffer-read-only)
4120 (save-excursion
4121 (insert-buffer-substring oldbuf start end)))))
4123 (defun copy-to-buffer (buffer start end)
4124 "Copy to specified buffer the text of the region.
4125 It is inserted into that buffer, replacing existing text there.
4127 When calling from a program, give three arguments:
4128 BUFFER (or buffer name), START and END.
4129 START and END specify the portion of the current buffer to be copied."
4130 (interactive "BCopy to buffer: \nr")
4131 (let ((oldbuf (current-buffer)))
4132 (with-current-buffer (get-buffer-create buffer)
4133 (barf-if-buffer-read-only)
4134 (erase-buffer)
4135 (save-excursion
4136 (insert-buffer-substring oldbuf start end)))))
4138 (define-error 'mark-inactive (purecopy "The mark is not active now"))
4140 (defvar activate-mark-hook nil
4141 "Hook run when the mark becomes active.
4142 It is also run at the end of a command, if the mark is active and
4143 it is possible that the region may have changed.")
4145 (defvar deactivate-mark-hook nil
4146 "Hook run when the mark becomes inactive.")
4148 (defun mark (&optional force)
4149 "Return this buffer's mark value as integer, or nil if never set.
4151 In Transient Mark mode, this function signals an error if
4152 the mark is not active. However, if `mark-even-if-inactive' is non-nil,
4153 or the argument FORCE is non-nil, it disregards whether the mark
4154 is active, and returns an integer or nil in the usual way.
4156 If you are using this in an editing command, you are most likely making
4157 a mistake; see the documentation of `set-mark'."
4158 (if (or force (not transient-mark-mode) mark-active mark-even-if-inactive)
4159 (marker-position (mark-marker))
4160 (signal 'mark-inactive nil)))
4162 (defun deactivate-mark (&optional force)
4163 "Deactivate the mark.
4164 If Transient Mark mode is disabled, this function normally does
4165 nothing; but if FORCE is non-nil, it deactivates the mark anyway.
4167 Deactivating the mark sets `mark-active' to nil, updates the
4168 primary selection according to `select-active-regions', and runs
4169 `deactivate-mark-hook'.
4171 If Transient Mark mode was temporarily enabled, reset the value
4172 of the variable `transient-mark-mode'; if this causes Transient
4173 Mark mode to be disabled, don't change `mark-active' to nil or
4174 run `deactivate-mark-hook'."
4175 (when (or transient-mark-mode force)
4176 (when (and (if (eq select-active-regions 'only)
4177 (eq (car-safe transient-mark-mode) 'only)
4178 select-active-regions)
4179 (region-active-p)
4180 (display-selections-p))
4181 ;; The var `saved-region-selection', if non-nil, is the text in
4182 ;; the region prior to the last command modifying the buffer.
4183 ;; Set the selection to that, or to the current region.
4184 (cond (saved-region-selection
4185 (x-set-selection 'PRIMARY saved-region-selection)
4186 (setq saved-region-selection nil))
4187 ;; If another program has acquired the selection, region
4188 ;; deactivation should not clobber it (Bug#11772).
4189 ((and (/= (region-beginning) (region-end))
4190 (or (x-selection-owner-p 'PRIMARY)
4191 (null (x-selection-exists-p 'PRIMARY))))
4192 (x-set-selection 'PRIMARY
4193 (buffer-substring (region-beginning)
4194 (region-end))))))
4195 (if (and (null force)
4196 (or (eq transient-mark-mode 'lambda)
4197 (and (eq (car-safe transient-mark-mode) 'only)
4198 (null (cdr transient-mark-mode)))))
4199 ;; When deactivating a temporary region, don't change
4200 ;; `mark-active' or run `deactivate-mark-hook'.
4201 (setq transient-mark-mode nil)
4202 (if (eq (car-safe transient-mark-mode) 'only)
4203 (setq transient-mark-mode (cdr transient-mark-mode)))
4204 (setq mark-active nil)
4205 (run-hooks 'deactivate-mark-hook))))
4207 (defun activate-mark ()
4208 "Activate the mark."
4209 (when (mark t)
4210 (setq mark-active t)
4211 (unless transient-mark-mode
4212 (setq transient-mark-mode 'lambda))
4213 (run-hooks 'activate-mark-hook)))
4215 (defun set-mark (pos)
4216 "Set this buffer's mark to POS. Don't use this function!
4217 That is to say, don't use this function unless you want
4218 the user to see that the mark has moved, and you want the previous
4219 mark position to be lost.
4221 Normally, when a new mark is set, the old one should go on the stack.
4222 This is why most applications should use `push-mark', not `set-mark'.
4224 Novice Emacs Lisp programmers often try to use the mark for the wrong
4225 purposes. The mark saves a location for the user's convenience.
4226 Most editing commands should not alter the mark.
4227 To remember a location for internal use in the Lisp program,
4228 store it in a Lisp variable. Example:
4230 (let ((beg (point))) (forward-line 1) (delete-region beg (point)))."
4232 (if pos
4233 (progn
4234 (setq mark-active t)
4235 (run-hooks 'activate-mark-hook)
4236 (set-marker (mark-marker) pos (current-buffer)))
4237 ;; Normally we never clear mark-active except in Transient Mark mode.
4238 ;; But when we actually clear out the mark value too, we must
4239 ;; clear mark-active in any mode.
4240 (deactivate-mark t)
4241 (set-marker (mark-marker) nil)))
4243 (defcustom use-empty-active-region nil
4244 "Whether \"region-aware\" commands should act on empty regions.
4245 If nil, region-aware commands treat empty regions as inactive.
4246 If non-nil, region-aware commands treat the region as active as
4247 long as the mark is active, even if the region is empty.
4249 Region-aware commands are those that act on the region if it is
4250 active and Transient Mark mode is enabled, and on the text near
4251 point otherwise."
4252 :type 'boolean
4253 :version "23.1"
4254 :group 'editing-basics)
4256 (defun use-region-p ()
4257 "Return t if the region is active and it is appropriate to act on it.
4258 This is used by commands that act specially on the region under
4259 Transient Mark mode.
4261 The return value is t if Transient Mark mode is enabled and the
4262 mark is active; furthermore, if `use-empty-active-region' is nil,
4263 the region must not be empty. Otherwise, the return value is nil.
4265 For some commands, it may be appropriate to ignore the value of
4266 `use-empty-active-region'; in that case, use `region-active-p'."
4267 (and (region-active-p)
4268 (or use-empty-active-region (> (region-end) (region-beginning)))))
4270 (defun region-active-p ()
4271 "Return t if Transient Mark mode is enabled and the mark is active.
4273 Some commands act specially on the region when Transient Mark
4274 mode is enabled. Usually, such commands should use
4275 `use-region-p' instead of this function, because `use-region-p'
4276 also checks the value of `use-empty-active-region'."
4277 (and transient-mark-mode mark-active))
4279 (defvar mark-ring nil
4280 "The list of former marks of the current buffer, most recent first.")
4281 (make-variable-buffer-local 'mark-ring)
4282 (put 'mark-ring 'permanent-local t)
4284 (defcustom mark-ring-max 16
4285 "Maximum size of mark ring. Start discarding off end if gets this big."
4286 :type 'integer
4287 :group 'editing-basics)
4289 (defvar global-mark-ring nil
4290 "The list of saved global marks, most recent first.")
4292 (defcustom global-mark-ring-max 16
4293 "Maximum size of global mark ring. \
4294 Start discarding off end if gets this big."
4295 :type 'integer
4296 :group 'editing-basics)
4298 (defun pop-to-mark-command ()
4299 "Jump to mark, and pop a new position for mark off the ring.
4300 \(Does not affect global mark ring\)."
4301 (interactive)
4302 (if (null (mark t))
4303 (error "No mark set in this buffer")
4304 (if (= (point) (mark t))
4305 (message "Mark popped"))
4306 (goto-char (mark t))
4307 (pop-mark)))
4309 (defun push-mark-command (arg &optional nomsg)
4310 "Set mark at where point is.
4311 If no prefix ARG and mark is already set there, just activate it.
4312 Display `Mark set' unless the optional second arg NOMSG is non-nil."
4313 (interactive "P")
4314 (let ((mark (marker-position (mark-marker))))
4315 (if (or arg (null mark) (/= mark (point)))
4316 (push-mark nil nomsg t)
4317 (setq mark-active t)
4318 (run-hooks 'activate-mark-hook)
4319 (unless nomsg
4320 (message "Mark activated")))))
4322 (defcustom set-mark-command-repeat-pop nil
4323 "Non-nil means repeating \\[set-mark-command] after popping mark pops it again.
4324 That means that C-u \\[set-mark-command] \\[set-mark-command]
4325 will pop the mark twice, and
4326 C-u \\[set-mark-command] \\[set-mark-command] \\[set-mark-command]
4327 will pop the mark three times.
4329 A value of nil means \\[set-mark-command]'s behavior does not change
4330 after C-u \\[set-mark-command]."
4331 :type 'boolean
4332 :group 'editing-basics)
4334 (defun set-mark-command (arg)
4335 "Set the mark where point is, or jump to the mark.
4336 Setting the mark also alters the region, which is the text
4337 between point and mark; this is the closest equivalent in
4338 Emacs to what some editors call the \"selection\".
4340 With no prefix argument, set the mark at point, and push the
4341 old mark position on local mark ring. Also push the old mark on
4342 global mark ring, if the previous mark was set in another buffer.
4344 When Transient Mark Mode is off, immediately repeating this
4345 command activates `transient-mark-mode' temporarily.
4347 With prefix argument \(e.g., \\[universal-argument] \\[set-mark-command]\), \
4348 jump to the mark, and set the mark from
4349 position popped off the local mark ring \(this does not affect the global
4350 mark ring\). Use \\[pop-global-mark] to jump to a mark popped off the global
4351 mark ring \(see `pop-global-mark'\).
4353 If `set-mark-command-repeat-pop' is non-nil, repeating
4354 the \\[set-mark-command] command with no prefix argument pops the next position
4355 off the local (or global) mark ring and jumps there.
4357 With \\[universal-argument] \\[universal-argument] as prefix
4358 argument, unconditionally set mark where point is, even if
4359 `set-mark-command-repeat-pop' is non-nil.
4361 Novice Emacs Lisp programmers often try to use the mark for the wrong
4362 purposes. See the documentation of `set-mark' for more information."
4363 (interactive "P")
4364 (cond ((eq transient-mark-mode 'lambda)
4365 (setq transient-mark-mode nil))
4366 ((eq (car-safe transient-mark-mode) 'only)
4367 (deactivate-mark)))
4368 (cond
4369 ((and (consp arg) (> (prefix-numeric-value arg) 4))
4370 (push-mark-command nil))
4371 ((not (eq this-command 'set-mark-command))
4372 (if arg
4373 (pop-to-mark-command)
4374 (push-mark-command t)))
4375 ((and set-mark-command-repeat-pop
4376 (eq last-command 'pop-to-mark-command))
4377 (setq this-command 'pop-to-mark-command)
4378 (pop-to-mark-command))
4379 ((and set-mark-command-repeat-pop
4380 (eq last-command 'pop-global-mark)
4381 (not arg))
4382 (setq this-command 'pop-global-mark)
4383 (pop-global-mark))
4384 (arg
4385 (setq this-command 'pop-to-mark-command)
4386 (pop-to-mark-command))
4387 ((eq last-command 'set-mark-command)
4388 (if (region-active-p)
4389 (progn
4390 (deactivate-mark)
4391 (message "Mark deactivated"))
4392 (activate-mark)
4393 (message "Mark activated")))
4395 (push-mark-command nil))))
4397 (defun push-mark (&optional location nomsg activate)
4398 "Set mark at LOCATION (point, by default) and push old mark on mark ring.
4399 If the last global mark pushed was not in the current buffer,
4400 also push LOCATION on the global mark ring.
4401 Display `Mark set' unless the optional second arg NOMSG is non-nil.
4403 Novice Emacs Lisp programmers often try to use the mark for the wrong
4404 purposes. See the documentation of `set-mark' for more information.
4406 In Transient Mark mode, activate mark if optional third arg ACTIVATE non-nil."
4407 (unless (null (mark t))
4408 (setq mark-ring (cons (copy-marker (mark-marker)) mark-ring))
4409 (when (> (length mark-ring) mark-ring-max)
4410 (move-marker (car (nthcdr mark-ring-max mark-ring)) nil)
4411 (setcdr (nthcdr (1- mark-ring-max) mark-ring) nil)))
4412 (set-marker (mark-marker) (or location (point)) (current-buffer))
4413 ;; Now push the mark on the global mark ring.
4414 (if (and global-mark-ring
4415 (eq (marker-buffer (car global-mark-ring)) (current-buffer)))
4416 ;; The last global mark pushed was in this same buffer.
4417 ;; Don't push another one.
4419 (setq global-mark-ring (cons (copy-marker (mark-marker)) global-mark-ring))
4420 (when (> (length global-mark-ring) global-mark-ring-max)
4421 (move-marker (car (nthcdr global-mark-ring-max global-mark-ring)) nil)
4422 (setcdr (nthcdr (1- global-mark-ring-max) global-mark-ring) nil)))
4423 (or nomsg executing-kbd-macro (> (minibuffer-depth) 0)
4424 (message "Mark set"))
4425 (if (or activate (not transient-mark-mode))
4426 (set-mark (mark t)))
4427 nil)
4429 (defun pop-mark ()
4430 "Pop off mark ring into the buffer's actual mark.
4431 Does not set point. Does nothing if mark ring is empty."
4432 (when mark-ring
4433 (setq mark-ring (nconc mark-ring (list (copy-marker (mark-marker)))))
4434 (set-marker (mark-marker) (+ 0 (car mark-ring)) (current-buffer))
4435 (move-marker (car mark-ring) nil)
4436 (if (null (mark t)) (ding))
4437 (setq mark-ring (cdr mark-ring)))
4438 (deactivate-mark))
4440 (define-obsolete-function-alias
4441 'exchange-dot-and-mark 'exchange-point-and-mark "23.3")
4442 (defun exchange-point-and-mark (&optional arg)
4443 "Put the mark where point is now, and point where the mark is now.
4444 This command works even when the mark is not active,
4445 and it reactivates the mark.
4447 If Transient Mark mode is on, a prefix ARG deactivates the mark
4448 if it is active, and otherwise avoids reactivating it. If
4449 Transient Mark mode is off, a prefix ARG enables Transient Mark
4450 mode temporarily."
4451 (interactive "P")
4452 (let ((omark (mark t))
4453 (temp-highlight (eq (car-safe transient-mark-mode) 'only)))
4454 (if (null omark)
4455 (error "No mark set in this buffer"))
4456 (deactivate-mark)
4457 (set-mark (point))
4458 (goto-char omark)
4459 (cond (temp-highlight
4460 (setq transient-mark-mode (cons 'only transient-mark-mode)))
4461 ((or (and arg (region-active-p)) ; (xor arg (not (region-active-p)))
4462 (not (or arg (region-active-p))))
4463 (deactivate-mark))
4464 (t (activate-mark)))
4465 nil))
4467 (defcustom shift-select-mode t
4468 "When non-nil, shifted motion keys activate the mark momentarily.
4470 While the mark is activated in this way, any shift-translated point
4471 motion key extends the region, and if Transient Mark mode was off, it
4472 is temporarily turned on. Furthermore, the mark will be deactivated
4473 by any subsequent point motion key that was not shift-translated, or
4474 by any action that normally deactivates the mark in Transient Mark mode.
4476 See `this-command-keys-shift-translated' for the meaning of
4477 shift-translation."
4478 :type 'boolean
4479 :group 'editing-basics)
4481 (defun handle-shift-selection ()
4482 "Activate/deactivate mark depending on invocation thru shift translation.
4483 This function is called by `call-interactively' when a command
4484 with a `^' character in its `interactive' spec is invoked, before
4485 running the command itself.
4487 If `shift-select-mode' is enabled and the command was invoked
4488 through shift translation, set the mark and activate the region
4489 temporarily, unless it was already set in this way. See
4490 `this-command-keys-shift-translated' for the meaning of shift
4491 translation.
4493 Otherwise, if the region has been activated temporarily,
4494 deactivate it, and restore the variable `transient-mark-mode' to
4495 its earlier value."
4496 (cond ((and shift-select-mode this-command-keys-shift-translated)
4497 (unless (and mark-active
4498 (eq (car-safe transient-mark-mode) 'only))
4499 (setq transient-mark-mode
4500 (cons 'only
4501 (unless (eq transient-mark-mode 'lambda)
4502 transient-mark-mode)))
4503 (push-mark nil nil t)))
4504 ((eq (car-safe transient-mark-mode) 'only)
4505 (setq transient-mark-mode (cdr transient-mark-mode))
4506 (deactivate-mark))))
4508 (define-minor-mode transient-mark-mode
4509 "Toggle Transient Mark mode.
4510 With a prefix argument ARG, enable Transient Mark mode if ARG is
4511 positive, and disable it otherwise. If called from Lisp, enable
4512 Transient Mark mode if ARG is omitted or nil.
4514 Transient Mark mode is a global minor mode. When enabled, the
4515 region is highlighted whenever the mark is active. The mark is
4516 \"deactivated\" by changing the buffer, and after certain other
4517 operations that set the mark but whose main purpose is something
4518 else--for example, incremental search, \\[beginning-of-buffer], and \\[end-of-buffer].
4520 You can also deactivate the mark by typing \\[keyboard-quit] or
4521 \\[keyboard-escape-quit].
4523 Many commands change their behavior when Transient Mark mode is
4524 in effect and the mark is active, by acting on the region instead
4525 of their usual default part of the buffer's text. Examples of
4526 such commands include \\[comment-dwim], \\[flush-lines], \\[keep-lines],
4527 \\[query-replace], \\[query-replace-regexp], \\[ispell], and \\[undo].
4528 To see the documentation of commands which are sensitive to the
4529 Transient Mark mode, invoke \\[apropos-documentation] and type \"transient\"
4530 or \"mark.*active\" at the prompt."
4531 :global t
4532 ;; It's defined in C/cus-start, this stops the d-m-m macro defining it again.
4533 :variable transient-mark-mode)
4535 (defvar widen-automatically t
4536 "Non-nil means it is ok for commands to call `widen' when they want to.
4537 Some commands will do this in order to go to positions outside
4538 the current accessible part of the buffer.
4540 If `widen-automatically' is nil, these commands will do something else
4541 as a fallback, and won't change the buffer bounds.")
4543 (defvar non-essential nil
4544 "Whether the currently executing code is performing an essential task.
4545 This variable should be non-nil only when running code which should not
4546 disturb the user. E.g. it can be used to prevent Tramp from prompting the
4547 user for a password when we are simply scanning a set of files in the
4548 background or displaying possible completions before the user even asked
4549 for it.")
4551 (defun pop-global-mark ()
4552 "Pop off global mark ring and jump to the top location."
4553 (interactive)
4554 ;; Pop entries which refer to non-existent buffers.
4555 (while (and global-mark-ring (not (marker-buffer (car global-mark-ring))))
4556 (setq global-mark-ring (cdr global-mark-ring)))
4557 (or global-mark-ring
4558 (error "No global mark set"))
4559 (let* ((marker (car global-mark-ring))
4560 (buffer (marker-buffer marker))
4561 (position (marker-position marker)))
4562 (setq global-mark-ring (nconc (cdr global-mark-ring)
4563 (list (car global-mark-ring))))
4564 (set-buffer buffer)
4565 (or (and (>= position (point-min))
4566 (<= position (point-max)))
4567 (if widen-automatically
4568 (widen)
4569 (error "Global mark position is outside accessible part of buffer")))
4570 (goto-char position)
4571 (switch-to-buffer buffer)))
4573 (defcustom next-line-add-newlines nil
4574 "If non-nil, `next-line' inserts newline to avoid `end of buffer' error."
4575 :type 'boolean
4576 :version "21.1"
4577 :group 'editing-basics)
4579 (defun next-line (&optional arg try-vscroll)
4580 "Move cursor vertically down ARG lines.
4581 Interactively, vscroll tall lines if `auto-window-vscroll' is enabled.
4582 Non-interactively, use TRY-VSCROLL to control whether to vscroll tall
4583 lines: if either `auto-window-vscroll' or TRY-VSCROLL is nil, this
4584 function will not vscroll.
4586 ARG defaults to 1.
4588 If there is no character in the target line exactly under the current column,
4589 the cursor is positioned after the character in that line which spans this
4590 column, or at the end of the line if it is not long enough.
4591 If there is no line in the buffer after this one, behavior depends on the
4592 value of `next-line-add-newlines'. If non-nil, it inserts a newline character
4593 to create a line, and moves the cursor to that line. Otherwise it moves the
4594 cursor to the end of the buffer.
4596 If the variable `line-move-visual' is non-nil, this command moves
4597 by display lines. Otherwise, it moves by buffer lines, without
4598 taking variable-width characters or continued lines into account.
4600 The command \\[set-goal-column] can be used to create
4601 a semipermanent goal column for this command.
4602 Then instead of trying to move exactly vertically (or as close as possible),
4603 this command moves to the specified goal column (or as close as possible).
4604 The goal column is stored in the variable `goal-column', which is nil
4605 when there is no goal column. Note that setting `goal-column'
4606 overrides `line-move-visual' and causes this command to move by buffer
4607 lines rather than by display lines.
4609 If you are thinking of using this in a Lisp program, consider
4610 using `forward-line' instead. It is usually easier to use
4611 and more reliable (no dependence on goal column, etc.)."
4612 (interactive "^p\np")
4613 (or arg (setq arg 1))
4614 (if (and next-line-add-newlines (= arg 1))
4615 (if (save-excursion (end-of-line) (eobp))
4616 ;; When adding a newline, don't expand an abbrev.
4617 (let ((abbrev-mode nil))
4618 (end-of-line)
4619 (insert (if use-hard-newlines hard-newline "\n")))
4620 (line-move arg nil nil try-vscroll))
4621 (if (called-interactively-p 'interactive)
4622 (condition-case err
4623 (line-move arg nil nil try-vscroll)
4624 ((beginning-of-buffer end-of-buffer)
4625 (signal (car err) (cdr err))))
4626 (line-move arg nil nil try-vscroll)))
4627 nil)
4629 (defun previous-line (&optional arg try-vscroll)
4630 "Move cursor vertically up ARG lines.
4631 Interactively, vscroll tall lines if `auto-window-vscroll' is enabled.
4632 Non-interactively, use TRY-VSCROLL to control whether to vscroll tall
4633 lines: if either `auto-window-vscroll' or TRY-VSCROLL is nil, this
4634 function will not vscroll.
4636 ARG defaults to 1.
4638 If there is no character in the target line exactly over the current column,
4639 the cursor is positioned after the character in that line which spans this
4640 column, or at the end of the line if it is not long enough.
4642 If the variable `line-move-visual' is non-nil, this command moves
4643 by display lines. Otherwise, it moves by buffer lines, without
4644 taking variable-width characters or continued lines into account.
4646 The command \\[set-goal-column] can be used to create
4647 a semipermanent goal column for this command.
4648 Then instead of trying to move exactly vertically (or as close as possible),
4649 this command moves to the specified goal column (or as close as possible).
4650 The goal column is stored in the variable `goal-column', which is nil
4651 when there is no goal column. Note that setting `goal-column'
4652 overrides `line-move-visual' and causes this command to move by buffer
4653 lines rather than by display lines.
4655 If you are thinking of using this in a Lisp program, consider using
4656 `forward-line' with a negative argument instead. It is usually easier
4657 to use and more reliable (no dependence on goal column, etc.)."
4658 (interactive "^p\np")
4659 (or arg (setq arg 1))
4660 (if (called-interactively-p 'interactive)
4661 (condition-case err
4662 (line-move (- arg) nil nil try-vscroll)
4663 ((beginning-of-buffer end-of-buffer)
4664 (signal (car err) (cdr err))))
4665 (line-move (- arg) nil nil try-vscroll))
4666 nil)
4668 (defcustom track-eol nil
4669 "Non-nil means vertical motion starting at end of line keeps to ends of lines.
4670 This means moving to the end of each line moved onto.
4671 The beginning of a blank line does not count as the end of a line.
4672 This has no effect when the variable `line-move-visual' is non-nil."
4673 :type 'boolean
4674 :group 'editing-basics)
4676 (defcustom goal-column nil
4677 "Semipermanent goal column for vertical motion, as set by \\[set-goal-column], or nil.
4678 A non-nil setting overrides the variable `line-move-visual', which see."
4679 :type '(choice integer
4680 (const :tag "None" nil))
4681 :group 'editing-basics)
4682 (make-variable-buffer-local 'goal-column)
4684 (defvar temporary-goal-column 0
4685 "Current goal column for vertical motion.
4686 It is the column where point was at the start of the current run
4687 of vertical motion commands.
4689 When moving by visual lines via the function `line-move-visual', it is a cons
4690 cell (COL . HSCROLL), where COL is the x-position, in pixels,
4691 divided by the default column width, and HSCROLL is the number of
4692 columns by which window is scrolled from left margin.
4694 When the `track-eol' feature is doing its job, the value is
4695 `most-positive-fixnum'.")
4697 (defcustom line-move-ignore-invisible t
4698 "Non-nil means \\[next-line] and \\[previous-line] ignore invisible lines.
4699 Outline mode sets this."
4700 :type 'boolean
4701 :group 'editing-basics)
4703 (defcustom line-move-visual t
4704 "When non-nil, `line-move' moves point by visual lines.
4705 This movement is based on where the cursor is displayed on the
4706 screen, instead of relying on buffer contents alone. It takes
4707 into account variable-width characters and line continuation.
4708 If nil, `line-move' moves point by logical lines.
4709 A non-nil setting of `goal-column' overrides the value of this variable
4710 and forces movement by logical lines.
4711 A window that is horizontally scrolled also forces movement by logical
4712 lines."
4713 :type 'boolean
4714 :group 'editing-basics
4715 :version "23.1")
4717 (defun default-font-height ()
4718 "Return the height in pixels of the current buffer's default face font."
4719 (let ((default-font (face-font 'default)))
4720 (cond
4721 ((and (display-multi-font-p)
4722 ;; Avoid calling font-info if the frame's default font was
4723 ;; not changed since the frame was created. That's because
4724 ;; font-info is expensive for some fonts, see bug #14838.
4725 (not (string= (frame-parameter nil 'font) default-font)))
4726 (aref (font-info default-font) 3))
4727 (t (frame-char-height)))))
4729 (defun default-line-height ()
4730 "Return the pixel height of current buffer's default-face text line.
4732 The value includes `line-spacing', if any, defined for the buffer
4733 or the frame."
4734 (let ((dfh (default-font-height))
4735 (lsp (if (display-graphic-p)
4736 (or line-spacing
4737 (default-value 'line-spacing)
4738 (frame-parameter nil 'line-spacing)
4740 0)))
4741 (if (floatp lsp)
4742 (setq lsp (* dfh lsp)))
4743 (+ dfh lsp)))
4745 (defun window-screen-lines ()
4746 "Return the number of screen lines in the text area of the selected window.
4748 This is different from `window-text-height' in that this function counts
4749 lines in units of the height of the font used by the default face displayed
4750 in the window, not in units of the frame's default font, and also accounts
4751 for `line-spacing', if any, defined for the window's buffer or frame.
4753 The value is a floating-point number."
4754 (let ((canonical (window-text-height))
4755 (fch (frame-char-height))
4756 (dlh (default-line-height)))
4757 (/ (* (float canonical) fch) dlh)))
4759 ;; Returns non-nil if partial move was done.
4760 (defun line-move-partial (arg noerror to-end)
4761 (if (< arg 0)
4762 ;; Move backward (up).
4763 ;; If already vscrolled, reduce vscroll
4764 (let ((vs (window-vscroll nil t))
4765 (dlh (default-line-height)))
4766 (when (> vs dlh)
4767 (set-window-vscroll nil (- vs dlh) t)))
4769 ;; Move forward (down).
4770 (let* ((lh (window-line-height -1))
4771 (rowh (car lh))
4772 (vpos (nth 1 lh))
4773 (ypos (nth 2 lh))
4774 (rbot (nth 3 lh))
4775 (this-lh (window-line-height))
4776 (this-height (car this-lh))
4777 (this-ypos (nth 2 this-lh))
4778 (dlh (default-line-height))
4779 (wslines (window-screen-lines))
4780 (edges (window-inside-pixel-edges))
4781 (winh (- (nth 3 edges) (nth 1 edges) 1))
4782 py vs last-line)
4783 (if (> (mod wslines 1.0) 0.0)
4784 (setq wslines (round (+ wslines 0.5))))
4785 (when (or (null lh)
4786 (>= rbot dlh)
4787 (<= ypos (- dlh))
4788 (null this-lh)
4789 (<= this-ypos (- dlh)))
4790 (unless lh
4791 (let ((wend (pos-visible-in-window-p t nil t)))
4792 (setq rbot (nth 3 wend)
4793 rowh (nth 4 wend)
4794 vpos (nth 5 wend))))
4795 (unless this-lh
4796 (let ((wstart (pos-visible-in-window-p nil nil t)))
4797 (setq this-ypos (nth 2 wstart)
4798 this-height (nth 4 wstart))))
4799 (setq py
4800 (or (nth 1 this-lh)
4801 (let ((ppos (posn-at-point))
4802 col-row)
4803 (setq col-row (posn-actual-col-row ppos))
4804 (if col-row
4805 (- (cdr col-row) (window-vscroll))
4806 (cdr (posn-col-row ppos))))))
4807 ;; VPOS > 0 means the last line is only partially visible.
4808 ;; But if the part that is visible is at least as tall as the
4809 ;; default font, that means the line is actually fully
4810 ;; readable, and something like line-spacing is hidden. So in
4811 ;; that case we accept the last line in the window as still
4812 ;; visible, and consider the margin as starting one line
4813 ;; later.
4814 (if (and vpos (> vpos 0))
4815 (if (and rowh
4816 (>= rowh (default-font-height))
4817 (< rowh dlh))
4818 (setq last-line (min (- wslines scroll-margin) vpos))
4819 (setq last-line (min (- wslines scroll-margin 1) (1- vpos)))))
4820 (cond
4821 ;; If last line of window is fully visible, and vscrolling
4822 ;; more would make this line invisible, move forward.
4823 ((and (or (< (setq vs (window-vscroll nil t)) dlh)
4824 (null this-height)
4825 (<= this-height dlh))
4826 (or (null rbot) (= rbot 0)))
4827 nil)
4828 ;; If cursor is not in the bottom scroll margin, and the
4829 ;; current line is is not too tall, move forward.
4830 ((and (or (null this-height) (<= this-height winh))
4831 vpos
4832 (> vpos 0)
4833 (< py last-line))
4834 nil)
4835 ;; When already vscrolled, we vscroll some more if we can,
4836 ;; or clear vscroll and move forward at end of tall image.
4837 ((> vs 0)
4838 (when (or (and rbot (> rbot 0))
4839 (and this-height (> this-height dlh)))
4840 (set-window-vscroll nil (+ vs dlh) t)))
4841 ;; If cursor just entered the bottom scroll margin, move forward,
4842 ;; but also optionally vscroll one line so redisplay won't recenter.
4843 ((and vpos
4844 (> vpos 0)
4845 (= py last-line))
4846 ;; Don't vscroll if the partially-visible line at window
4847 ;; bottom is not too tall (a.k.a. "just one more text
4848 ;; line"): in that case, we do want redisplay to behave
4849 ;; normally, i.e. recenter or whatever.
4851 ;; Note: ROWH + RBOT from the value returned by
4852 ;; pos-visible-in-window-p give the total height of the
4853 ;; partially-visible glyph row at the end of the window. As
4854 ;; we are dealing with floats, we disregard sub-pixel
4855 ;; discrepancies between that and DLH.
4856 (if (and rowh rbot (>= (- (+ rowh rbot) winh) 1))
4857 (set-window-vscroll nil dlh t))
4858 (line-move-1 arg noerror to-end)
4860 ;; If there are lines above the last line, scroll-up one line.
4861 ((and vpos (> vpos 0))
4862 (scroll-up 1)
4864 ;; Finally, start vscroll.
4866 (set-window-vscroll nil dlh t)))))))
4869 ;; This is like line-move-1 except that it also performs
4870 ;; vertical scrolling of tall images if appropriate.
4871 ;; That is not really a clean thing to do, since it mixes
4872 ;; scrolling with cursor motion. But so far we don't have
4873 ;; a cleaner solution to the problem of making C-n do something
4874 ;; useful given a tall image.
4875 (defun line-move (arg &optional noerror to-end try-vscroll)
4876 (if noninteractive
4877 (forward-line arg)
4878 (unless (and auto-window-vscroll try-vscroll
4879 ;; Only vscroll for single line moves
4880 (= (abs arg) 1)
4881 ;; Under scroll-conservatively, the display engine
4882 ;; does this better.
4883 (zerop scroll-conservatively)
4884 ;; But don't vscroll in a keyboard macro.
4885 (not defining-kbd-macro)
4886 (not executing-kbd-macro)
4887 (line-move-partial arg noerror to-end))
4888 (set-window-vscroll nil 0 t)
4889 (if (and line-move-visual
4890 ;; Display-based column are incompatible with goal-column.
4891 (not goal-column)
4892 ;; When the text in the window is scrolled to the left,
4893 ;; display-based motion doesn't make sense (because each
4894 ;; logical line occupies exactly one screen line).
4895 (not (> (window-hscroll) 0)))
4896 (prog1 (line-move-visual arg noerror)
4897 ;; If we moved into a tall line, set vscroll to make
4898 ;; scrolling through tall images more smooth.
4899 (let ((lh (line-pixel-height))
4900 (edges (window-inside-pixel-edges))
4901 (dlh (default-line-height))
4902 winh)
4903 (setq winh (- (nth 3 edges) (nth 1 edges) 1))
4904 (if (and (< arg 0)
4905 (< (point) (window-start))
4906 (> lh winh))
4907 (set-window-vscroll
4909 (- lh dlh) t))))
4910 (line-move-1 arg noerror to-end)))))
4912 ;; Display-based alternative to line-move-1.
4913 ;; Arg says how many lines to move. The value is t if we can move the
4914 ;; specified number of lines.
4915 (defun line-move-visual (arg &optional noerror)
4916 (let ((opoint (point))
4917 (hscroll (window-hscroll))
4918 target-hscroll)
4919 ;; Check if the previous command was a line-motion command, or if
4920 ;; we were called from some other command.
4921 (if (and (consp temporary-goal-column)
4922 (memq last-command `(next-line previous-line ,this-command)))
4923 ;; If so, there's no need to reset `temporary-goal-column',
4924 ;; but we may need to hscroll.
4925 (if (or (/= (cdr temporary-goal-column) hscroll)
4926 (> (cdr temporary-goal-column) 0))
4927 (setq target-hscroll (cdr temporary-goal-column)))
4928 ;; Otherwise, we should reset `temporary-goal-column'.
4929 (let ((posn (posn-at-point)))
4930 (cond
4931 ;; Handle the `overflow-newline-into-fringe' case:
4932 ((eq (nth 1 posn) 'right-fringe)
4933 (setq temporary-goal-column (cons (- (window-width) 1) hscroll)))
4934 ((car (posn-x-y posn))
4935 (setq temporary-goal-column
4936 (cons (/ (float (car (posn-x-y posn)))
4937 (frame-char-width)) hscroll))))))
4938 (if target-hscroll
4939 (set-window-hscroll (selected-window) target-hscroll))
4940 ;; vertical-motion can move more than it was asked to if it moves
4941 ;; across display strings with newlines. We don't want to ring
4942 ;; the bell and announce beginning/end of buffer in that case.
4943 (or (and (or (and (>= arg 0)
4944 (>= (vertical-motion
4945 (cons (or goal-column
4946 (if (consp temporary-goal-column)
4947 (car temporary-goal-column)
4948 temporary-goal-column))
4949 arg))
4950 arg))
4951 (and (< arg 0)
4952 (<= (vertical-motion
4953 (cons (or goal-column
4954 (if (consp temporary-goal-column)
4955 (car temporary-goal-column)
4956 temporary-goal-column))
4957 arg))
4958 arg)))
4959 (or (>= arg 0)
4960 (/= (point) opoint)
4961 ;; If the goal column lies on a display string,
4962 ;; `vertical-motion' advances the cursor to the end
4963 ;; of the string. For arg < 0, this can cause the
4964 ;; cursor to get stuck. (Bug#3020).
4965 (= (vertical-motion arg) arg)))
4966 (unless noerror
4967 (signal (if (< arg 0) 'beginning-of-buffer 'end-of-buffer)
4968 nil)))))
4970 ;; This is the guts of next-line and previous-line.
4971 ;; Arg says how many lines to move.
4972 ;; The value is t if we can move the specified number of lines.
4973 (defun line-move-1 (arg &optional noerror _to-end)
4974 ;; Don't run any point-motion hooks, and disregard intangibility,
4975 ;; for intermediate positions.
4976 (let ((inhibit-point-motion-hooks t)
4977 (opoint (point))
4978 (orig-arg arg))
4979 (if (consp temporary-goal-column)
4980 (setq temporary-goal-column (+ (car temporary-goal-column)
4981 (cdr temporary-goal-column))))
4982 (unwind-protect
4983 (progn
4984 (if (not (memq last-command '(next-line previous-line)))
4985 (setq temporary-goal-column
4986 (if (and track-eol (eolp)
4987 ;; Don't count beg of empty line as end of line
4988 ;; unless we just did explicit end-of-line.
4989 (or (not (bolp)) (eq last-command 'move-end-of-line)))
4990 most-positive-fixnum
4991 (current-column))))
4993 (if (not (or (integerp selective-display)
4994 line-move-ignore-invisible))
4995 ;; Use just newline characters.
4996 ;; Set ARG to 0 if we move as many lines as requested.
4997 (or (if (> arg 0)
4998 (progn (if (> arg 1) (forward-line (1- arg)))
4999 ;; This way of moving forward ARG lines
5000 ;; verifies that we have a newline after the last one.
5001 ;; It doesn't get confused by intangible text.
5002 (end-of-line)
5003 (if (zerop (forward-line 1))
5004 (setq arg 0)))
5005 (and (zerop (forward-line arg))
5006 (bolp)
5007 (setq arg 0)))
5008 (unless noerror
5009 (signal (if (< arg 0)
5010 'beginning-of-buffer
5011 'end-of-buffer)
5012 nil)))
5013 ;; Move by arg lines, but ignore invisible ones.
5014 (let (done)
5015 (while (and (> arg 0) (not done))
5016 ;; If the following character is currently invisible,
5017 ;; skip all characters with that same `invisible' property value.
5018 (while (and (not (eobp)) (invisible-p (point)))
5019 (goto-char (next-char-property-change (point))))
5020 ;; Move a line.
5021 ;; We don't use `end-of-line', since we want to escape
5022 ;; from field boundaries occurring exactly at point.
5023 (goto-char (constrain-to-field
5024 (let ((inhibit-field-text-motion t))
5025 (line-end-position))
5026 (point) t t
5027 'inhibit-line-move-field-capture))
5028 ;; If there's no invisibility here, move over the newline.
5029 (cond
5030 ((eobp)
5031 (if (not noerror)
5032 (signal 'end-of-buffer nil)
5033 (setq done t)))
5034 ((and (> arg 1) ;; Use vertical-motion for last move
5035 (not (integerp selective-display))
5036 (not (invisible-p (point))))
5037 ;; We avoid vertical-motion when possible
5038 ;; because that has to fontify.
5039 (forward-line 1))
5040 ;; Otherwise move a more sophisticated way.
5041 ((zerop (vertical-motion 1))
5042 (if (not noerror)
5043 (signal 'end-of-buffer nil)
5044 (setq done t))))
5045 (unless done
5046 (setq arg (1- arg))))
5047 ;; The logic of this is the same as the loop above,
5048 ;; it just goes in the other direction.
5049 (while (and (< arg 0) (not done))
5050 ;; For completely consistency with the forward-motion
5051 ;; case, we should call beginning-of-line here.
5052 ;; However, if point is inside a field and on a
5053 ;; continued line, the call to (vertical-motion -1)
5054 ;; below won't move us back far enough; then we return
5055 ;; to the same column in line-move-finish, and point
5056 ;; gets stuck -- cyd
5057 (forward-line 0)
5058 (cond
5059 ((bobp)
5060 (if (not noerror)
5061 (signal 'beginning-of-buffer nil)
5062 (setq done t)))
5063 ((and (< arg -1) ;; Use vertical-motion for last move
5064 (not (integerp selective-display))
5065 (not (invisible-p (1- (point)))))
5066 (forward-line -1))
5067 ((zerop (vertical-motion -1))
5068 (if (not noerror)
5069 (signal 'beginning-of-buffer nil)
5070 (setq done t))))
5071 (unless done
5072 (setq arg (1+ arg))
5073 (while (and ;; Don't move over previous invis lines
5074 ;; if our target is the middle of this line.
5075 (or (zerop (or goal-column temporary-goal-column))
5076 (< arg 0))
5077 (not (bobp)) (invisible-p (1- (point))))
5078 (goto-char (previous-char-property-change (point))))))))
5079 ;; This is the value the function returns.
5080 (= arg 0))
5082 (cond ((> arg 0)
5083 ;; If we did not move down as far as desired, at least go
5084 ;; to end of line. Be sure to call point-entered and
5085 ;; point-left-hooks.
5086 (let* ((npoint (prog1 (line-end-position)
5087 (goto-char opoint)))
5088 (inhibit-point-motion-hooks nil))
5089 (goto-char npoint)))
5090 ((< arg 0)
5091 ;; If we did not move up as far as desired,
5092 ;; at least go to beginning of line.
5093 (let* ((npoint (prog1 (line-beginning-position)
5094 (goto-char opoint)))
5095 (inhibit-point-motion-hooks nil))
5096 (goto-char npoint)))
5098 (line-move-finish (or goal-column temporary-goal-column)
5099 opoint (> orig-arg 0)))))))
5101 (defun line-move-finish (column opoint forward)
5102 (let ((repeat t))
5103 (while repeat
5104 ;; Set REPEAT to t to repeat the whole thing.
5105 (setq repeat nil)
5107 (let (new
5108 (old (point))
5109 (line-beg (line-beginning-position))
5110 (line-end
5111 ;; Compute the end of the line
5112 ;; ignoring effectively invisible newlines.
5113 (save-excursion
5114 ;; Like end-of-line but ignores fields.
5115 (skip-chars-forward "^\n")
5116 (while (and (not (eobp)) (invisible-p (point)))
5117 (goto-char (next-char-property-change (point)))
5118 (skip-chars-forward "^\n"))
5119 (point))))
5121 ;; Move to the desired column.
5122 (line-move-to-column (truncate column))
5124 ;; Corner case: suppose we start out in a field boundary in
5125 ;; the middle of a continued line. When we get to
5126 ;; line-move-finish, point is at the start of a new *screen*
5127 ;; line but the same text line; then line-move-to-column would
5128 ;; move us backwards. Test using C-n with point on the "x" in
5129 ;; (insert "a" (propertize "x" 'field t) (make-string 89 ?y))
5130 (and forward
5131 (< (point) old)
5132 (goto-char old))
5134 (setq new (point))
5136 ;; Process intangibility within a line.
5137 ;; With inhibit-point-motion-hooks bound to nil, a call to
5138 ;; goto-char moves point past intangible text.
5140 ;; However, inhibit-point-motion-hooks controls both the
5141 ;; intangibility and the point-entered/point-left hooks. The
5142 ;; following hack avoids calling the point-* hooks
5143 ;; unnecessarily. Note that we move *forward* past intangible
5144 ;; text when the initial and final points are the same.
5145 (goto-char new)
5146 (let ((inhibit-point-motion-hooks nil))
5147 (goto-char new)
5149 ;; If intangibility moves us to a different (later) place
5150 ;; in the same line, use that as the destination.
5151 (if (<= (point) line-end)
5152 (setq new (point))
5153 ;; If that position is "too late",
5154 ;; try the previous allowable position.
5155 ;; See if it is ok.
5156 (backward-char)
5157 (if (if forward
5158 ;; If going forward, don't accept the previous
5159 ;; allowable position if it is before the target line.
5160 (< line-beg (point))
5161 ;; If going backward, don't accept the previous
5162 ;; allowable position if it is still after the target line.
5163 (<= (point) line-end))
5164 (setq new (point))
5165 ;; As a last resort, use the end of the line.
5166 (setq new line-end))))
5168 ;; Now move to the updated destination, processing fields
5169 ;; as well as intangibility.
5170 (goto-char opoint)
5171 (let ((inhibit-point-motion-hooks nil))
5172 (goto-char
5173 ;; Ignore field boundaries if the initial and final
5174 ;; positions have the same `field' property, even if the
5175 ;; fields are non-contiguous. This seems to be "nicer"
5176 ;; behavior in many situations.
5177 (if (eq (get-char-property new 'field)
5178 (get-char-property opoint 'field))
5180 (constrain-to-field new opoint t t
5181 'inhibit-line-move-field-capture))))
5183 ;; If all this moved us to a different line,
5184 ;; retry everything within that new line.
5185 (when (or (< (point) line-beg) (> (point) line-end))
5186 ;; Repeat the intangibility and field processing.
5187 (setq repeat t))))))
5189 (defun line-move-to-column (col)
5190 "Try to find column COL, considering invisibility.
5191 This function works only in certain cases,
5192 because what we really need is for `move-to-column'
5193 and `current-column' to be able to ignore invisible text."
5194 (if (zerop col)
5195 (beginning-of-line)
5196 (move-to-column col))
5198 (when (and line-move-ignore-invisible
5199 (not (bolp)) (invisible-p (1- (point))))
5200 (let ((normal-location (point))
5201 (normal-column (current-column)))
5202 ;; If the following character is currently invisible,
5203 ;; skip all characters with that same `invisible' property value.
5204 (while (and (not (eobp))
5205 (invisible-p (point)))
5206 (goto-char (next-char-property-change (point))))
5207 ;; Have we advanced to a larger column position?
5208 (if (> (current-column) normal-column)
5209 ;; We have made some progress towards the desired column.
5210 ;; See if we can make any further progress.
5211 (line-move-to-column (+ (current-column) (- col normal-column)))
5212 ;; Otherwise, go to the place we originally found
5213 ;; and move back over invisible text.
5214 ;; that will get us to the same place on the screen
5215 ;; but with a more reasonable buffer position.
5216 (goto-char normal-location)
5217 (let ((line-beg (line-beginning-position)))
5218 (while (and (not (bolp)) (invisible-p (1- (point))))
5219 (goto-char (previous-char-property-change (point) line-beg))))))))
5221 (defun move-end-of-line (arg)
5222 "Move point to end of current line as displayed.
5223 With argument ARG not nil or 1, move forward ARG - 1 lines first.
5224 If point reaches the beginning or end of buffer, it stops there.
5226 To ignore the effects of the `intangible' text or overlay
5227 property, bind `inhibit-point-motion-hooks' to t.
5228 If there is an image in the current line, this function
5229 disregards newlines that are part of the text on which the image
5230 rests."
5231 (interactive "^p")
5232 (or arg (setq arg 1))
5233 (let (done)
5234 (while (not done)
5235 (let ((newpos
5236 (save-excursion
5237 (let ((goal-column 0)
5238 (line-move-visual nil))
5239 (and (line-move arg t)
5240 ;; With bidi reordering, we may not be at bol,
5241 ;; so make sure we are.
5242 (skip-chars-backward "^\n")
5243 (not (bobp))
5244 (progn
5245 (while (and (not (bobp)) (invisible-p (1- (point))))
5246 (goto-char (previous-single-char-property-change
5247 (point) 'invisible)))
5248 (backward-char 1)))
5249 (point)))))
5250 (goto-char newpos)
5251 (if (and (> (point) newpos)
5252 (eq (preceding-char) ?\n))
5253 (backward-char 1)
5254 (if (and (> (point) newpos) (not (eobp))
5255 (not (eq (following-char) ?\n)))
5256 ;; If we skipped something intangible and now we're not
5257 ;; really at eol, keep going.
5258 (setq arg 1)
5259 (setq done t)))))))
5261 (defun move-beginning-of-line (arg)
5262 "Move point to beginning of current line as displayed.
5263 \(If there's an image in the line, this disregards newlines
5264 which are part of the text that the image rests on.)
5266 With argument ARG not nil or 1, move forward ARG - 1 lines first.
5267 If point reaches the beginning or end of buffer, it stops there.
5268 To ignore intangibility, bind `inhibit-point-motion-hooks' to t."
5269 (interactive "^p")
5270 (or arg (setq arg 1))
5272 (let ((orig (point))
5273 first-vis first-vis-field-value)
5275 ;; Move by lines, if ARG is not 1 (the default).
5276 (if (/= arg 1)
5277 (let ((line-move-visual nil))
5278 (line-move (1- arg) t)))
5280 ;; Move to beginning-of-line, ignoring fields and invisible text.
5281 (skip-chars-backward "^\n")
5282 (while (and (not (bobp)) (invisible-p (1- (point))))
5283 (goto-char (previous-char-property-change (point)))
5284 (skip-chars-backward "^\n"))
5286 ;; Now find first visible char in the line
5287 (while (and (not (eobp)) (invisible-p (point)))
5288 (goto-char (next-char-property-change (point))))
5289 (setq first-vis (point))
5291 ;; See if fields would stop us from reaching FIRST-VIS.
5292 (setq first-vis-field-value
5293 (constrain-to-field first-vis orig (/= arg 1) t nil))
5295 (goto-char (if (/= first-vis-field-value first-vis)
5296 ;; If yes, obey them.
5297 first-vis-field-value
5298 ;; Otherwise, move to START with attention to fields.
5299 ;; (It is possible that fields never matter in this case.)
5300 (constrain-to-field (point) orig
5301 (/= arg 1) t nil)))))
5304 ;; Many people have said they rarely use this feature, and often type
5305 ;; it by accident. Maybe it shouldn't even be on a key.
5306 (put 'set-goal-column 'disabled t)
5308 (defun set-goal-column (arg)
5309 "Set the current horizontal position as a goal for \\[next-line] and \\[previous-line].
5310 Those commands will move to this position in the line moved to
5311 rather than trying to keep the same horizontal position.
5312 With a non-nil argument ARG, clears out the goal column
5313 so that \\[next-line] and \\[previous-line] resume vertical motion.
5314 The goal column is stored in the variable `goal-column'."
5315 (interactive "P")
5316 (if arg
5317 (progn
5318 (setq goal-column nil)
5319 (message "No goal column"))
5320 (setq goal-column (current-column))
5321 ;; The older method below can be erroneous if `set-goal-column' is bound
5322 ;; to a sequence containing %
5323 ;;(message (substitute-command-keys
5324 ;;"Goal column %d (use \\[set-goal-column] with an arg to unset it)")
5325 ;;goal-column)
5326 (message "%s"
5327 (concat
5328 (format "Goal column %d " goal-column)
5329 (substitute-command-keys
5330 "(use \\[set-goal-column] with an arg to unset it)")))
5333 nil)
5335 ;;; Editing based on visual lines, as opposed to logical lines.
5337 (defun end-of-visual-line (&optional n)
5338 "Move point to end of current visual line.
5339 With argument N not nil or 1, move forward N - 1 visual lines first.
5340 If point reaches the beginning or end of buffer, it stops there.
5341 To ignore intangibility, bind `inhibit-point-motion-hooks' to t."
5342 (interactive "^p")
5343 (or n (setq n 1))
5344 (if (/= n 1)
5345 (let ((line-move-visual t))
5346 (line-move (1- n) t)))
5347 ;; Unlike `move-beginning-of-line', `move-end-of-line' doesn't
5348 ;; constrain to field boundaries, so we don't either.
5349 (vertical-motion (cons (window-width) 0)))
5351 (defun beginning-of-visual-line (&optional n)
5352 "Move point to beginning of current visual line.
5353 With argument N not nil or 1, move forward N - 1 visual lines first.
5354 If point reaches the beginning or end of buffer, it stops there.
5355 To ignore intangibility, bind `inhibit-point-motion-hooks' to t."
5356 (interactive "^p")
5357 (or n (setq n 1))
5358 (let ((opoint (point)))
5359 (if (/= n 1)
5360 (let ((line-move-visual t))
5361 (line-move (1- n) t)))
5362 (vertical-motion 0)
5363 ;; Constrain to field boundaries, like `move-beginning-of-line'.
5364 (goto-char (constrain-to-field (point) opoint (/= n 1)))))
5366 (defun kill-visual-line (&optional arg)
5367 "Kill the rest of the visual line.
5368 With prefix argument ARG, kill that many visual lines from point.
5369 If ARG is negative, kill visual lines backward.
5370 If ARG is zero, kill the text before point on the current visual
5371 line.
5373 If you want to append the killed line to the last killed text,
5374 use \\[append-next-kill] before \\[kill-line].
5376 If the buffer is read-only, Emacs will beep and refrain from deleting
5377 the line, but put the line in the kill ring anyway. This means that
5378 you can use this command to copy text from a read-only buffer.
5379 \(If the variable `kill-read-only-ok' is non-nil, then this won't
5380 even beep.)"
5381 (interactive "P")
5382 ;; Like in `kill-line', it's better to move point to the other end
5383 ;; of the kill before killing.
5384 (let ((opoint (point))
5385 (kill-whole-line (and kill-whole-line (bolp))))
5386 (if arg
5387 (vertical-motion (prefix-numeric-value arg))
5388 (end-of-visual-line 1)
5389 (if (= (point) opoint)
5390 (vertical-motion 1)
5391 ;; Skip any trailing whitespace at the end of the visual line.
5392 ;; We used to do this only if `show-trailing-whitespace' is
5393 ;; nil, but that's wrong; the correct thing would be to check
5394 ;; whether the trailing whitespace is highlighted. But, it's
5395 ;; OK to just do this unconditionally.
5396 (skip-chars-forward " \t")))
5397 (kill-region opoint (if (and kill-whole-line (looking-at "\n"))
5398 (1+ (point))
5399 (point)))))
5401 (defun next-logical-line (&optional arg try-vscroll)
5402 "Move cursor vertically down ARG lines.
5403 This is identical to `next-line', except that it always moves
5404 by logical lines instead of visual lines, ignoring the value of
5405 the variable `line-move-visual'."
5406 (interactive "^p\np")
5407 (let ((line-move-visual nil))
5408 (with-no-warnings
5409 (next-line arg try-vscroll))))
5411 (defun previous-logical-line (&optional arg try-vscroll)
5412 "Move cursor vertically up ARG lines.
5413 This is identical to `previous-line', except that it always moves
5414 by logical lines instead of visual lines, ignoring the value of
5415 the variable `line-move-visual'."
5416 (interactive "^p\np")
5417 (let ((line-move-visual nil))
5418 (with-no-warnings
5419 (previous-line arg try-vscroll))))
5421 (defgroup visual-line nil
5422 "Editing based on visual lines."
5423 :group 'convenience
5424 :version "23.1")
5426 (defvar visual-line-mode-map
5427 (let ((map (make-sparse-keymap)))
5428 (define-key map [remap kill-line] 'kill-visual-line)
5429 (define-key map [remap move-beginning-of-line] 'beginning-of-visual-line)
5430 (define-key map [remap move-end-of-line] 'end-of-visual-line)
5431 ;; These keybindings interfere with xterm function keys. Are
5432 ;; there any other suitable bindings?
5433 ;; (define-key map "\M-[" 'previous-logical-line)
5434 ;; (define-key map "\M-]" 'next-logical-line)
5435 map))
5437 (defcustom visual-line-fringe-indicators '(nil nil)
5438 "How fringe indicators are shown for wrapped lines in `visual-line-mode'.
5439 The value should be a list of the form (LEFT RIGHT), where LEFT
5440 and RIGHT are symbols representing the bitmaps to display, to
5441 indicate wrapped lines, in the left and right fringes respectively.
5442 See also `fringe-indicator-alist'.
5443 The default is not to display fringe indicators for wrapped lines.
5444 This variable does not affect fringe indicators displayed for
5445 other purposes."
5446 :type '(list (choice (const :tag "Hide left indicator" nil)
5447 (const :tag "Left curly arrow" left-curly-arrow)
5448 (symbol :tag "Other bitmap"))
5449 (choice (const :tag "Hide right indicator" nil)
5450 (const :tag "Right curly arrow" right-curly-arrow)
5451 (symbol :tag "Other bitmap")))
5452 :set (lambda (symbol value)
5453 (dolist (buf (buffer-list))
5454 (with-current-buffer buf
5455 (when (and (boundp 'visual-line-mode)
5456 (symbol-value 'visual-line-mode))
5457 (setq fringe-indicator-alist
5458 (cons (cons 'continuation value)
5459 (assq-delete-all
5460 'continuation
5461 (copy-tree fringe-indicator-alist)))))))
5462 (set-default symbol value)))
5464 (defvar visual-line--saved-state nil)
5466 (define-minor-mode visual-line-mode
5467 "Toggle visual line based editing (Visual Line mode).
5468 With a prefix argument ARG, enable Visual Line mode if ARG is
5469 positive, and disable it otherwise. If called from Lisp, enable
5470 the mode if ARG is omitted or nil.
5472 When Visual Line mode is enabled, `word-wrap' is turned on in
5473 this buffer, and simple editing commands are redefined to act on
5474 visual lines, not logical lines. See Info node `Visual Line
5475 Mode' for details."
5476 :keymap visual-line-mode-map
5477 :group 'visual-line
5478 :lighter " Wrap"
5479 (if visual-line-mode
5480 (progn
5481 (set (make-local-variable 'visual-line--saved-state) nil)
5482 ;; Save the local values of some variables, to be restored if
5483 ;; visual-line-mode is turned off.
5484 (dolist (var '(line-move-visual truncate-lines
5485 truncate-partial-width-windows
5486 word-wrap fringe-indicator-alist))
5487 (if (local-variable-p var)
5488 (push (cons var (symbol-value var))
5489 visual-line--saved-state)))
5490 (set (make-local-variable 'line-move-visual) t)
5491 (set (make-local-variable 'truncate-partial-width-windows) nil)
5492 (setq truncate-lines nil
5493 word-wrap t
5494 fringe-indicator-alist
5495 (cons (cons 'continuation visual-line-fringe-indicators)
5496 fringe-indicator-alist)))
5497 (kill-local-variable 'line-move-visual)
5498 (kill-local-variable 'word-wrap)
5499 (kill-local-variable 'truncate-lines)
5500 (kill-local-variable 'truncate-partial-width-windows)
5501 (kill-local-variable 'fringe-indicator-alist)
5502 (dolist (saved visual-line--saved-state)
5503 (set (make-local-variable (car saved)) (cdr saved)))
5504 (kill-local-variable 'visual-line--saved-state)))
5506 (defun turn-on-visual-line-mode ()
5507 (visual-line-mode 1))
5509 (define-globalized-minor-mode global-visual-line-mode
5510 visual-line-mode turn-on-visual-line-mode)
5513 (defun transpose-chars (arg)
5514 "Interchange characters around point, moving forward one character.
5515 With prefix arg ARG, effect is to take character before point
5516 and drag it forward past ARG other characters (backward if ARG negative).
5517 If no argument and at end of line, the previous two chars are exchanged."
5518 (interactive "*P")
5519 (and (null arg) (eolp) (forward-char -1))
5520 (transpose-subr 'forward-char (prefix-numeric-value arg)))
5522 (defun transpose-words (arg)
5523 "Interchange words around point, leaving point at end of them.
5524 With prefix arg ARG, effect is to take word before or around point
5525 and drag it forward past ARG other words (backward if ARG negative).
5526 If ARG is zero, the words around or after point and around or after mark
5527 are interchanged."
5528 ;; FIXME: `foo a!nd bar' should transpose into `bar and foo'.
5529 (interactive "*p")
5530 (transpose-subr 'forward-word arg))
5532 (defun transpose-sexps (arg)
5533 "Like \\[transpose-words] but applies to sexps.
5534 Does not work on a sexp that point is in the middle of
5535 if it is a list or string."
5536 (interactive "*p")
5537 (transpose-subr
5538 (lambda (arg)
5539 ;; Here we should try to simulate the behavior of
5540 ;; (cons (progn (forward-sexp x) (point))
5541 ;; (progn (forward-sexp (- x)) (point)))
5542 ;; Except that we don't want to rely on the second forward-sexp
5543 ;; putting us back to where we want to be, since forward-sexp-function
5544 ;; might do funny things like infix-precedence.
5545 (if (if (> arg 0)
5546 (looking-at "\\sw\\|\\s_")
5547 (and (not (bobp))
5548 (save-excursion (forward-char -1) (looking-at "\\sw\\|\\s_"))))
5549 ;; Jumping over a symbol. We might be inside it, mind you.
5550 (progn (funcall (if (> arg 0)
5551 'skip-syntax-backward 'skip-syntax-forward)
5552 "w_")
5553 (cons (save-excursion (forward-sexp arg) (point)) (point)))
5554 ;; Otherwise, we're between sexps. Take a step back before jumping
5555 ;; to make sure we'll obey the same precedence no matter which direction
5556 ;; we're going.
5557 (funcall (if (> arg 0) 'skip-syntax-backward 'skip-syntax-forward) " .")
5558 (cons (save-excursion (forward-sexp arg) (point))
5559 (progn (while (or (forward-comment (if (> arg 0) 1 -1))
5560 (not (zerop (funcall (if (> arg 0)
5561 'skip-syntax-forward
5562 'skip-syntax-backward)
5563 ".")))))
5564 (point)))))
5565 arg 'special))
5567 (defun transpose-lines (arg)
5568 "Exchange current line and previous line, leaving point after both.
5569 With argument ARG, takes previous line and moves it past ARG lines.
5570 With argument 0, interchanges line point is in with line mark is in."
5571 (interactive "*p")
5572 (transpose-subr (function
5573 (lambda (arg)
5574 (if (> arg 0)
5575 (progn
5576 ;; Move forward over ARG lines,
5577 ;; but create newlines if necessary.
5578 (setq arg (forward-line arg))
5579 (if (/= (preceding-char) ?\n)
5580 (setq arg (1+ arg)))
5581 (if (> arg 0)
5582 (newline arg)))
5583 (forward-line arg))))
5584 arg))
5586 ;; FIXME seems to leave point BEFORE the current object when ARG = 0,
5587 ;; which seems inconsistent with the ARG /= 0 case.
5588 ;; FIXME document SPECIAL.
5589 (defun transpose-subr (mover arg &optional special)
5590 "Subroutine to do the work of transposing objects.
5591 Works for lines, sentences, paragraphs, etc. MOVER is a function that
5592 moves forward by units of the given object (e.g. forward-sentence,
5593 forward-paragraph). If ARG is zero, exchanges the current object
5594 with the one containing mark. If ARG is an integer, moves the
5595 current object past ARG following (if ARG is positive) or
5596 preceding (if ARG is negative) objects, leaving point after the
5597 current object."
5598 (let ((aux (if special mover
5599 (lambda (x)
5600 (cons (progn (funcall mover x) (point))
5601 (progn (funcall mover (- x)) (point))))))
5602 pos1 pos2)
5603 (cond
5604 ((= arg 0)
5605 (save-excursion
5606 (setq pos1 (funcall aux 1))
5607 (goto-char (or (mark) (error "No mark set in this buffer")))
5608 (setq pos2 (funcall aux 1))
5609 (transpose-subr-1 pos1 pos2))
5610 (exchange-point-and-mark))
5611 ((> arg 0)
5612 (setq pos1 (funcall aux -1))
5613 (setq pos2 (funcall aux arg))
5614 (transpose-subr-1 pos1 pos2)
5615 (goto-char (car pos2)))
5617 (setq pos1 (funcall aux -1))
5618 (goto-char (car pos1))
5619 (setq pos2 (funcall aux arg))
5620 (transpose-subr-1 pos1 pos2)))))
5622 (defun transpose-subr-1 (pos1 pos2)
5623 (when (> (car pos1) (cdr pos1)) (setq pos1 (cons (cdr pos1) (car pos1))))
5624 (when (> (car pos2) (cdr pos2)) (setq pos2 (cons (cdr pos2) (car pos2))))
5625 (when (> (car pos1) (car pos2))
5626 (let ((swap pos1))
5627 (setq pos1 pos2 pos2 swap)))
5628 (if (> (cdr pos1) (car pos2)) (error "Don't have two things to transpose"))
5629 (atomic-change-group
5630 ;; This sequence of insertions attempts to preserve marker
5631 ;; positions at the start and end of the transposed objects.
5632 (let* ((word (buffer-substring (car pos2) (cdr pos2)))
5633 (len1 (- (cdr pos1) (car pos1)))
5634 (len2 (length word))
5635 (boundary (make-marker)))
5636 (set-marker boundary (car pos2))
5637 (goto-char (cdr pos1))
5638 (insert-before-markers word)
5639 (setq word (delete-and-extract-region (car pos1) (+ (car pos1) len1)))
5640 (goto-char boundary)
5641 (insert word)
5642 (goto-char (+ boundary len1))
5643 (delete-region (point) (+ (point) len2))
5644 (set-marker boundary nil))))
5646 (defun backward-word (&optional arg)
5647 "Move backward until encountering the beginning of a word.
5648 With argument ARG, do this that many times.
5649 If ARG is omitted or nil, move point backward one word."
5650 (interactive "^p")
5651 (forward-word (- (or arg 1))))
5653 (defun mark-word (&optional arg allow-extend)
5654 "Set mark ARG words away from point.
5655 The place mark goes is the same place \\[forward-word] would
5656 move to with the same argument.
5657 Interactively, if this command is repeated
5658 or (in Transient Mark mode) if the mark is active,
5659 it marks the next ARG words after the ones already marked."
5660 (interactive "P\np")
5661 (cond ((and allow-extend
5662 (or (and (eq last-command this-command) (mark t))
5663 (region-active-p)))
5664 (setq arg (if arg (prefix-numeric-value arg)
5665 (if (< (mark) (point)) -1 1)))
5666 (set-mark
5667 (save-excursion
5668 (goto-char (mark))
5669 (forward-word arg)
5670 (point))))
5672 (push-mark
5673 (save-excursion
5674 (forward-word (prefix-numeric-value arg))
5675 (point))
5676 nil t))))
5678 (defun kill-word (arg)
5679 "Kill characters forward until encountering the end of a word.
5680 With argument ARG, do this that many times."
5681 (interactive "p")
5682 (kill-region (point) (progn (forward-word arg) (point))))
5684 (defun backward-kill-word (arg)
5685 "Kill characters backward until encountering the beginning of a word.
5686 With argument ARG, do this that many times."
5687 (interactive "p")
5688 (kill-word (- arg)))
5690 (defun current-word (&optional strict really-word)
5691 "Return the symbol or word that point is on (or a nearby one) as a string.
5692 The return value includes no text properties.
5693 If optional arg STRICT is non-nil, return nil unless point is within
5694 or adjacent to a symbol or word. In all cases the value can be nil
5695 if there is no word nearby.
5696 The function, belying its name, normally finds a symbol.
5697 If optional arg REALLY-WORD is non-nil, it finds just a word."
5698 (save-excursion
5699 (let* ((oldpoint (point)) (start (point)) (end (point))
5700 (syntaxes (if really-word "w" "w_"))
5701 (not-syntaxes (concat "^" syntaxes)))
5702 (skip-syntax-backward syntaxes) (setq start (point))
5703 (goto-char oldpoint)
5704 (skip-syntax-forward syntaxes) (setq end (point))
5705 (when (and (eq start oldpoint) (eq end oldpoint)
5706 ;; Point is neither within nor adjacent to a word.
5707 (not strict))
5708 ;; Look for preceding word in same line.
5709 (skip-syntax-backward not-syntaxes (line-beginning-position))
5710 (if (bolp)
5711 ;; No preceding word in same line.
5712 ;; Look for following word in same line.
5713 (progn
5714 (skip-syntax-forward not-syntaxes (line-end-position))
5715 (setq start (point))
5716 (skip-syntax-forward syntaxes)
5717 (setq end (point)))
5718 (setq end (point))
5719 (skip-syntax-backward syntaxes)
5720 (setq start (point))))
5721 ;; If we found something nonempty, return it as a string.
5722 (unless (= start end)
5723 (buffer-substring-no-properties start end)))))
5725 (defcustom fill-prefix nil
5726 "String for filling to insert at front of new line, or nil for none."
5727 :type '(choice (const :tag "None" nil)
5728 string)
5729 :group 'fill)
5730 (make-variable-buffer-local 'fill-prefix)
5731 (put 'fill-prefix 'safe-local-variable 'string-or-null-p)
5733 (defcustom auto-fill-inhibit-regexp nil
5734 "Regexp to match lines which should not be auto-filled."
5735 :type '(choice (const :tag "None" nil)
5736 regexp)
5737 :group 'fill)
5739 (defun do-auto-fill ()
5740 "The default value for `normal-auto-fill-function'.
5741 This is the default auto-fill function, some major modes use a different one.
5742 Returns t if it really did any work."
5743 (let (fc justify give-up
5744 (fill-prefix fill-prefix))
5745 (if (or (not (setq justify (current-justification)))
5746 (null (setq fc (current-fill-column)))
5747 (and (eq justify 'left)
5748 (<= (current-column) fc))
5749 (and auto-fill-inhibit-regexp
5750 (save-excursion (beginning-of-line)
5751 (looking-at auto-fill-inhibit-regexp))))
5752 nil ;; Auto-filling not required
5753 (if (memq justify '(full center right))
5754 (save-excursion (unjustify-current-line)))
5756 ;; Choose a fill-prefix automatically.
5757 (when (and adaptive-fill-mode
5758 (or (null fill-prefix) (string= fill-prefix "")))
5759 (let ((prefix
5760 (fill-context-prefix
5761 (save-excursion (fill-forward-paragraph -1) (point))
5762 (save-excursion (fill-forward-paragraph 1) (point)))))
5763 (and prefix (not (equal prefix ""))
5764 ;; Use auto-indentation rather than a guessed empty prefix.
5765 (not (and fill-indent-according-to-mode
5766 (string-match "\\`[ \t]*\\'" prefix)))
5767 (setq fill-prefix prefix))))
5769 (while (and (not give-up) (> (current-column) fc))
5770 ;; Determine where to split the line.
5771 (let* (after-prefix
5772 (fill-point
5773 (save-excursion
5774 (beginning-of-line)
5775 (setq after-prefix (point))
5776 (and fill-prefix
5777 (looking-at (regexp-quote fill-prefix))
5778 (setq after-prefix (match-end 0)))
5779 (move-to-column (1+ fc))
5780 (fill-move-to-break-point after-prefix)
5781 (point))))
5783 ;; See whether the place we found is any good.
5784 (if (save-excursion
5785 (goto-char fill-point)
5786 (or (bolp)
5787 ;; There is no use breaking at end of line.
5788 (save-excursion (skip-chars-forward " ") (eolp))
5789 ;; It is futile to split at the end of the prefix
5790 ;; since we would just insert the prefix again.
5791 (and after-prefix (<= (point) after-prefix))
5792 ;; Don't split right after a comment starter
5793 ;; since we would just make another comment starter.
5794 (and comment-start-skip
5795 (let ((limit (point)))
5796 (beginning-of-line)
5797 (and (re-search-forward comment-start-skip
5798 limit t)
5799 (eq (point) limit))))))
5800 ;; No good place to break => stop trying.
5801 (setq give-up t)
5802 ;; Ok, we have a useful place to break the line. Do it.
5803 (let ((prev-column (current-column)))
5804 ;; If point is at the fill-point, do not `save-excursion'.
5805 ;; Otherwise, if a comment prefix or fill-prefix is inserted,
5806 ;; point will end up before it rather than after it.
5807 (if (save-excursion
5808 (skip-chars-backward " \t")
5809 (= (point) fill-point))
5810 (default-indent-new-line t)
5811 (save-excursion
5812 (goto-char fill-point)
5813 (default-indent-new-line t)))
5814 ;; Now do justification, if required
5815 (if (not (eq justify 'left))
5816 (save-excursion
5817 (end-of-line 0)
5818 (justify-current-line justify nil t)))
5819 ;; If making the new line didn't reduce the hpos of
5820 ;; the end of the line, then give up now;
5821 ;; trying again will not help.
5822 (if (>= (current-column) prev-column)
5823 (setq give-up t))))))
5824 ;; Justify last line.
5825 (justify-current-line justify t t)
5826 t)))
5828 (defvar comment-line-break-function 'comment-indent-new-line
5829 "Mode-specific function which line breaks and continues a comment.
5830 This function is called during auto-filling when a comment syntax
5831 is defined.
5832 The function should take a single optional argument, which is a flag
5833 indicating whether it should use soft newlines.")
5835 (defun default-indent-new-line (&optional soft)
5836 "Break line at point and indent.
5837 If a comment syntax is defined, call `comment-indent-new-line'.
5839 The inserted newline is marked hard if variable `use-hard-newlines' is true,
5840 unless optional argument SOFT is non-nil."
5841 (interactive)
5842 (if comment-start
5843 (funcall comment-line-break-function soft)
5844 ;; Insert the newline before removing empty space so that markers
5845 ;; get preserved better.
5846 (if soft (insert-and-inherit ?\n) (newline 1))
5847 (save-excursion (forward-char -1) (delete-horizontal-space))
5848 (delete-horizontal-space)
5850 (if (and fill-prefix (not adaptive-fill-mode))
5851 ;; Blindly trust a non-adaptive fill-prefix.
5852 (progn
5853 (indent-to-left-margin)
5854 (insert-before-markers-and-inherit fill-prefix))
5856 (cond
5857 ;; If there's an adaptive prefix, use it unless we're inside
5858 ;; a comment and the prefix is not a comment starter.
5859 (fill-prefix
5860 (indent-to-left-margin)
5861 (insert-and-inherit fill-prefix))
5862 ;; If we're not inside a comment, just try to indent.
5863 (t (indent-according-to-mode))))))
5865 (defvar normal-auto-fill-function 'do-auto-fill
5866 "The function to use for `auto-fill-function' if Auto Fill mode is turned on.
5867 Some major modes set this.")
5869 (put 'auto-fill-function :minor-mode-function 'auto-fill-mode)
5870 ;; `functions' and `hooks' are usually unsafe to set, but setting
5871 ;; auto-fill-function to nil in a file-local setting is safe and
5872 ;; can be useful to prevent auto-filling.
5873 (put 'auto-fill-function 'safe-local-variable 'null)
5875 (define-minor-mode auto-fill-mode
5876 "Toggle automatic line breaking (Auto Fill mode).
5877 With a prefix argument ARG, enable Auto Fill mode if ARG is
5878 positive, and disable it otherwise. If called from Lisp, enable
5879 the mode if ARG is omitted or nil.
5881 When Auto Fill mode is enabled, inserting a space at a column
5882 beyond `current-fill-column' automatically breaks the line at a
5883 previous space.
5885 When `auto-fill-mode' is on, the `auto-fill-function' variable is
5886 non-`nil'.
5888 The value of `normal-auto-fill-function' specifies the function to use
5889 for `auto-fill-function' when turning Auto Fill mode on."
5890 :variable (auto-fill-function
5891 . (lambda (v) (setq auto-fill-function
5892 (if v normal-auto-fill-function)))))
5894 ;; This holds a document string used to document auto-fill-mode.
5895 (defun auto-fill-function ()
5896 "Automatically break line at a previous space, in insertion of text."
5897 nil)
5899 (defun turn-on-auto-fill ()
5900 "Unconditionally turn on Auto Fill mode."
5901 (auto-fill-mode 1))
5903 (defun turn-off-auto-fill ()
5904 "Unconditionally turn off Auto Fill mode."
5905 (auto-fill-mode -1))
5907 (custom-add-option 'text-mode-hook 'turn-on-auto-fill)
5909 (defun set-fill-column (arg)
5910 "Set `fill-column' to specified argument.
5911 Use \\[universal-argument] followed by a number to specify a column.
5912 Just \\[universal-argument] as argument means to use the current column."
5913 (interactive
5914 (list (or current-prefix-arg
5915 ;; We used to use current-column silently, but C-x f is too easily
5916 ;; typed as a typo for C-x C-f, so we turned it into an error and
5917 ;; now an interactive prompt.
5918 (read-number "Set fill-column to: " (current-column)))))
5919 (if (consp arg)
5920 (setq arg (current-column)))
5921 (if (not (integerp arg))
5922 ;; Disallow missing argument; it's probably a typo for C-x C-f.
5923 (error "set-fill-column requires an explicit argument")
5924 (message "Fill column set to %d (was %d)" arg fill-column)
5925 (setq fill-column arg)))
5927 (defun set-selective-display (arg)
5928 "Set `selective-display' to ARG; clear it if no arg.
5929 When the value of `selective-display' is a number > 0,
5930 lines whose indentation is >= that value are not displayed.
5931 The variable `selective-display' has a separate value for each buffer."
5932 (interactive "P")
5933 (if (eq selective-display t)
5934 (error "selective-display already in use for marked lines"))
5935 (let ((current-vpos
5936 (save-restriction
5937 (narrow-to-region (point-min) (point))
5938 (goto-char (window-start))
5939 (vertical-motion (window-height)))))
5940 (setq selective-display
5941 (and arg (prefix-numeric-value arg)))
5942 (recenter current-vpos))
5943 (set-window-start (selected-window) (window-start))
5944 (princ "selective-display set to " t)
5945 (prin1 selective-display t)
5946 (princ "." t))
5948 (defvaralias 'indicate-unused-lines 'indicate-empty-lines)
5950 (defun toggle-truncate-lines (&optional arg)
5951 "Toggle truncating of long lines for the current buffer.
5952 When truncating is off, long lines are folded.
5953 With prefix argument ARG, truncate long lines if ARG is positive,
5954 otherwise fold them. Note that in side-by-side windows, this
5955 command has no effect if `truncate-partial-width-windows' is
5956 non-nil."
5957 (interactive "P")
5958 (setq truncate-lines
5959 (if (null arg)
5960 (not truncate-lines)
5961 (> (prefix-numeric-value arg) 0)))
5962 (force-mode-line-update)
5963 (unless truncate-lines
5964 (let ((buffer (current-buffer)))
5965 (walk-windows (lambda (window)
5966 (if (eq buffer (window-buffer window))
5967 (set-window-hscroll window 0)))
5968 nil t)))
5969 (message "Truncate long lines %s"
5970 (if truncate-lines "enabled" "disabled")))
5972 (defun toggle-word-wrap (&optional arg)
5973 "Toggle whether to use word-wrapping for continuation lines.
5974 With prefix argument ARG, wrap continuation lines at word boundaries
5975 if ARG is positive, otherwise wrap them at the right screen edge.
5976 This command toggles the value of `word-wrap'. It has no effect
5977 if long lines are truncated."
5978 (interactive "P")
5979 (setq word-wrap
5980 (if (null arg)
5981 (not word-wrap)
5982 (> (prefix-numeric-value arg) 0)))
5983 (force-mode-line-update)
5984 (message "Word wrapping %s"
5985 (if word-wrap "enabled" "disabled")))
5987 (defvar overwrite-mode-textual (purecopy " Ovwrt")
5988 "The string displayed in the mode line when in overwrite mode.")
5989 (defvar overwrite-mode-binary (purecopy " Bin Ovwrt")
5990 "The string displayed in the mode line when in binary overwrite mode.")
5992 (define-minor-mode overwrite-mode
5993 "Toggle Overwrite mode.
5994 With a prefix argument ARG, enable Overwrite mode if ARG is
5995 positive, and disable it otherwise. If called from Lisp, enable
5996 the mode if ARG is omitted or nil.
5998 When Overwrite mode is enabled, printing characters typed in
5999 replace existing text on a one-for-one basis, rather than pushing
6000 it to the right. At the end of a line, such characters extend
6001 the line. Before a tab, such characters insert until the tab is
6002 filled in. \\[quoted-insert] still inserts characters in
6003 overwrite mode; this is supposed to make it easier to insert
6004 characters when necessary."
6005 :variable (overwrite-mode
6006 . (lambda (v) (setq overwrite-mode (if v 'overwrite-mode-textual)))))
6008 (define-minor-mode binary-overwrite-mode
6009 "Toggle Binary Overwrite mode.
6010 With a prefix argument ARG, enable Binary Overwrite mode if ARG
6011 is positive, and disable it otherwise. If called from Lisp,
6012 enable the mode if ARG is omitted or nil.
6014 When Binary Overwrite mode is enabled, printing characters typed
6015 in replace existing text. Newlines are not treated specially, so
6016 typing at the end of a line joins the line to the next, with the
6017 typed character between them. Typing before a tab character
6018 simply replaces the tab with the character typed.
6019 \\[quoted-insert] replaces the text at the cursor, just as
6020 ordinary typing characters do.
6022 Note that Binary Overwrite mode is not its own minor mode; it is
6023 a specialization of overwrite mode, entered by setting the
6024 `overwrite-mode' variable to `overwrite-mode-binary'."
6025 :variable (overwrite-mode
6026 . (lambda (v) (setq overwrite-mode (if v 'overwrite-mode-binary)))))
6028 (define-minor-mode line-number-mode
6029 "Toggle line number display in the mode line (Line Number mode).
6030 With a prefix argument ARG, enable Line Number mode if ARG is
6031 positive, and disable it otherwise. If called from Lisp, enable
6032 the mode if ARG is omitted or nil.
6034 Line numbers do not appear for very large buffers and buffers
6035 with very long lines; see variables `line-number-display-limit'
6036 and `line-number-display-limit-width'."
6037 :init-value t :global t :group 'mode-line)
6039 (define-minor-mode column-number-mode
6040 "Toggle column number display in the mode line (Column Number mode).
6041 With a prefix argument ARG, enable Column Number mode if ARG is
6042 positive, and disable it otherwise.
6044 If called from Lisp, enable the mode if ARG is omitted or nil."
6045 :global t :group 'mode-line)
6047 (define-minor-mode size-indication-mode
6048 "Toggle buffer size display in the mode line (Size Indication mode).
6049 With a prefix argument ARG, enable Size Indication mode if ARG is
6050 positive, and disable it otherwise.
6052 If called from Lisp, enable the mode if ARG is omitted or nil."
6053 :global t :group 'mode-line)
6055 (define-minor-mode auto-save-mode
6056 "Toggle auto-saving in the current buffer (Auto Save mode).
6057 With a prefix argument ARG, enable Auto Save mode if ARG is
6058 positive, and disable it otherwise.
6060 If called from Lisp, enable the mode if ARG is omitted or nil."
6061 :variable ((and buffer-auto-save-file-name
6062 ;; If auto-save is off because buffer has shrunk,
6063 ;; then toggling should turn it on.
6064 (>= buffer-saved-size 0))
6065 . (lambda (val)
6066 (setq buffer-auto-save-file-name
6067 (cond
6068 ((null val) nil)
6069 ((and buffer-file-name auto-save-visited-file-name
6070 (not buffer-read-only))
6071 buffer-file-name)
6072 (t (make-auto-save-file-name))))))
6073 ;; If -1 was stored here, to temporarily turn off saving,
6074 ;; turn it back on.
6075 (and (< buffer-saved-size 0)
6076 (setq buffer-saved-size 0)))
6078 (defgroup paren-blinking nil
6079 "Blinking matching of parens and expressions."
6080 :prefix "blink-matching-"
6081 :group 'paren-matching)
6083 (defcustom blink-matching-paren t
6084 "Non-nil means show matching open-paren when close-paren is inserted."
6085 :type 'boolean
6086 :group 'paren-blinking)
6088 (defcustom blink-matching-paren-on-screen t
6089 "Non-nil means show matching open-paren when it is on screen.
6090 If nil, don't show it (but the open-paren can still be shown
6091 when it is off screen).
6093 This variable has no effect if `blink-matching-paren' is nil.
6094 \(In that case, the open-paren is never shown.)
6095 It is also ignored if `show-paren-mode' is enabled."
6096 :type 'boolean
6097 :group 'paren-blinking)
6099 (defcustom blink-matching-paren-distance (* 100 1024)
6100 "If non-nil, maximum distance to search backwards for matching open-paren.
6101 If nil, search stops at the beginning of the accessible portion of the buffer."
6102 :version "23.2" ; 25->100k
6103 :type '(choice (const nil) integer)
6104 :group 'paren-blinking)
6106 (defcustom blink-matching-delay 1
6107 "Time in seconds to delay after showing a matching paren."
6108 :type 'number
6109 :group 'paren-blinking)
6111 (defcustom blink-matching-paren-dont-ignore-comments nil
6112 "If nil, `blink-matching-paren' ignores comments.
6113 More precisely, when looking for the matching parenthesis,
6114 it skips the contents of comments that end before point."
6115 :type 'boolean
6116 :group 'paren-blinking)
6118 (defun blink-matching-check-mismatch (start end)
6119 "Return whether or not START...END are matching parens.
6120 END is the current point and START is the blink position.
6121 START might be nil if no matching starter was found.
6122 Returns non-nil if we find there is a mismatch."
6123 (let* ((end-syntax (syntax-after (1- end)))
6124 (matching-paren (and (consp end-syntax)
6125 (eq (syntax-class end-syntax) 5)
6126 (cdr end-syntax))))
6127 ;; For self-matched chars like " and $, we can't know when they're
6128 ;; mismatched or unmatched, so we can only do it for parens.
6129 (when matching-paren
6130 (not (and start
6132 (eq (char-after start) matching-paren)
6133 ;; The cdr might hold a new paren-class info rather than
6134 ;; a matching-char info, in which case the two CDRs
6135 ;; should match.
6136 (eq matching-paren (cdr-safe (syntax-after start)))))))))
6138 (defvar blink-matching-check-function #'blink-matching-check-mismatch
6139 "Function to check parentheses mismatches.
6140 The function takes two arguments (START and END) where START is the
6141 position just before the opening token and END is the position right after.
6142 START can be nil, if it was not found.
6143 The function should return non-nil if the two tokens do not match.")
6145 (defun blink-matching-open ()
6146 "Move cursor momentarily to the beginning of the sexp before point."
6147 (interactive)
6148 (when (and (not (bobp))
6149 blink-matching-paren)
6150 (let* ((oldpos (point))
6151 (message-log-max nil) ; Don't log messages about paren matching.
6152 (blinkpos
6153 (save-excursion
6154 (save-restriction
6155 (if blink-matching-paren-distance
6156 (narrow-to-region
6157 (max (minibuffer-prompt-end) ;(point-min) unless minibuf.
6158 (- (point) blink-matching-paren-distance))
6159 oldpos))
6160 (let ((parse-sexp-ignore-comments
6161 (and parse-sexp-ignore-comments
6162 (not blink-matching-paren-dont-ignore-comments))))
6163 (condition-case ()
6164 (progn
6165 (forward-sexp -1)
6166 ;; backward-sexp skips backward over prefix chars,
6167 ;; so move back to the matching paren.
6168 (while (and (< (point) (1- oldpos))
6169 (let ((code (syntax-after (point))))
6170 (or (eq (syntax-class code) 6)
6171 (eq (logand 1048576 (car code))
6172 1048576))))
6173 (forward-char 1))
6174 (point))
6175 (error nil))))))
6176 (mismatch (funcall blink-matching-check-function blinkpos oldpos)))
6177 (cond
6178 (mismatch
6179 (if blinkpos
6180 (if (minibufferp)
6181 (minibuffer-message "Mismatched parentheses")
6182 (message "Mismatched parentheses"))
6183 (if (minibufferp)
6184 (minibuffer-message "No matching parenthesis found")
6185 (message "No matching parenthesis found"))))
6186 ((not blinkpos) nil)
6187 ((pos-visible-in-window-p blinkpos)
6188 ;; Matching open within window, temporarily move to blinkpos but only
6189 ;; if `blink-matching-paren-on-screen' is non-nil.
6190 (and blink-matching-paren-on-screen
6191 (not show-paren-mode)
6192 (save-excursion
6193 (goto-char blinkpos)
6194 (sit-for blink-matching-delay))))
6196 (save-excursion
6197 (goto-char blinkpos)
6198 (let ((open-paren-line-string
6199 ;; Show what precedes the open in its line, if anything.
6200 (cond
6201 ((save-excursion (skip-chars-backward " \t") (not (bolp)))
6202 (buffer-substring (line-beginning-position)
6203 (1+ blinkpos)))
6204 ;; Show what follows the open in its line, if anything.
6205 ((save-excursion
6206 (forward-char 1)
6207 (skip-chars-forward " \t")
6208 (not (eolp)))
6209 (buffer-substring blinkpos
6210 (line-end-position)))
6211 ;; Otherwise show the previous nonblank line,
6212 ;; if there is one.
6213 ((save-excursion (skip-chars-backward "\n \t") (not (bobp)))
6214 (concat
6215 (buffer-substring (progn
6216 (skip-chars-backward "\n \t")
6217 (line-beginning-position))
6218 (progn (end-of-line)
6219 (skip-chars-backward " \t")
6220 (point)))
6221 ;; Replace the newline and other whitespace with `...'.
6222 "..."
6223 (buffer-substring blinkpos (1+ blinkpos))))
6224 ;; There is nothing to show except the char itself.
6225 (t (buffer-substring blinkpos (1+ blinkpos))))))
6226 (message "Matches %s"
6227 (substring-no-properties open-paren-line-string)))))))))
6229 (defvar blink-paren-function 'blink-matching-open
6230 "Function called, if non-nil, whenever a close parenthesis is inserted.
6231 More precisely, a char with closeparen syntax is self-inserted.")
6233 (defun blink-paren-post-self-insert-function ()
6234 (when (and (eq (char-before) last-command-event) ; Sanity check.
6235 (memq (char-syntax last-command-event) '(?\) ?\$))
6236 blink-paren-function
6237 (not executing-kbd-macro)
6238 (not noninteractive)
6239 ;; Verify an even number of quoting characters precede the close.
6240 (= 1 (logand 1 (- (point)
6241 (save-excursion
6242 (forward-char -1)
6243 (skip-syntax-backward "/\\")
6244 (point))))))
6245 (funcall blink-paren-function)))
6247 (add-hook 'post-self-insert-hook #'blink-paren-post-self-insert-function
6248 ;; Most likely, this hook is nil, so this arg doesn't matter,
6249 ;; but I use it as a reminder that this function usually
6250 ;; likes to be run after others since it does `sit-for'.
6251 'append)
6253 ;; This executes C-g typed while Emacs is waiting for a command.
6254 ;; Quitting out of a program does not go through here;
6255 ;; that happens in the QUIT macro at the C code level.
6256 (defun keyboard-quit ()
6257 "Signal a `quit' condition.
6258 During execution of Lisp code, this character causes a quit directly.
6259 At top-level, as an editor command, this simply beeps."
6260 (interactive)
6261 ;; Avoid adding the region to the window selection.
6262 (setq saved-region-selection nil)
6263 (let (select-active-regions)
6264 (deactivate-mark))
6265 (if (fboundp 'kmacro-keyboard-quit)
6266 (kmacro-keyboard-quit))
6267 (setq defining-kbd-macro nil)
6268 (let ((debug-on-quit nil))
6269 (signal 'quit nil)))
6271 (defvar buffer-quit-function nil
6272 "Function to call to \"quit\" the current buffer, or nil if none.
6273 \\[keyboard-escape-quit] calls this function when its more local actions
6274 \(such as canceling a prefix argument, minibuffer or region) do not apply.")
6276 (defun keyboard-escape-quit ()
6277 "Exit the current \"mode\" (in a generalized sense of the word).
6278 This command can exit an interactive command such as `query-replace',
6279 can clear out a prefix argument or a region,
6280 can get out of the minibuffer or other recursive edit,
6281 cancel the use of the current buffer (for special-purpose buffers),
6282 or go back to just one window (by deleting all but the selected window)."
6283 (interactive)
6284 (cond ((eq last-command 'mode-exited) nil)
6285 ((region-active-p)
6286 (deactivate-mark))
6287 ((> (minibuffer-depth) 0)
6288 (abort-recursive-edit))
6289 (current-prefix-arg
6290 nil)
6291 ((> (recursion-depth) 0)
6292 (exit-recursive-edit))
6293 (buffer-quit-function
6294 (funcall buffer-quit-function))
6295 ((not (one-window-p t))
6296 (delete-other-windows))
6297 ((string-match "^ \\*" (buffer-name (current-buffer)))
6298 (bury-buffer))))
6300 (defun play-sound-file (file &optional volume device)
6301 "Play sound stored in FILE.
6302 VOLUME and DEVICE correspond to the keywords of the sound
6303 specification for `play-sound'."
6304 (interactive "fPlay sound file: ")
6305 (let ((sound (list :file file)))
6306 (if volume
6307 (plist-put sound :volume volume))
6308 (if device
6309 (plist-put sound :device device))
6310 (push 'sound sound)
6311 (play-sound sound)))
6314 (defcustom read-mail-command 'rmail
6315 "Your preference for a mail reading package.
6316 This is used by some keybindings which support reading mail.
6317 See also `mail-user-agent' concerning sending mail."
6318 :type '(radio (function-item :tag "Rmail" :format "%t\n" rmail)
6319 (function-item :tag "Gnus" :format "%t\n" gnus)
6320 (function-item :tag "Emacs interface to MH"
6321 :format "%t\n" mh-rmail)
6322 (function :tag "Other"))
6323 :version "21.1"
6324 :group 'mail)
6326 (defcustom mail-user-agent 'message-user-agent
6327 "Your preference for a mail composition package.
6328 Various Emacs Lisp packages (e.g. Reporter) require you to compose an
6329 outgoing email message. This variable lets you specify which
6330 mail-sending package you prefer.
6332 Valid values include:
6334 `message-user-agent' -- use the Message package.
6335 See Info node `(message)'.
6336 `sendmail-user-agent' -- use the Mail package.
6337 See Info node `(emacs)Sending Mail'.
6338 `mh-e-user-agent' -- use the Emacs interface to the MH mail system.
6339 See Info node `(mh-e)'.
6340 `gnus-user-agent' -- like `message-user-agent', but with Gnus
6341 paraphernalia if Gnus is running, particularly
6342 the Gcc: header for archiving.
6344 Additional valid symbols may be available; check with the author of
6345 your package for details. The function should return non-nil if it
6346 succeeds.
6348 See also `read-mail-command' concerning reading mail."
6349 :type '(radio (function-item :tag "Message package"
6350 :format "%t\n"
6351 message-user-agent)
6352 (function-item :tag "Mail package"
6353 :format "%t\n"
6354 sendmail-user-agent)
6355 (function-item :tag "Emacs interface to MH"
6356 :format "%t\n"
6357 mh-e-user-agent)
6358 (function-item :tag "Message with full Gnus features"
6359 :format "%t\n"
6360 gnus-user-agent)
6361 (function :tag "Other"))
6362 :version "23.2" ; sendmail->message
6363 :group 'mail)
6365 (defcustom compose-mail-user-agent-warnings t
6366 "If non-nil, `compose-mail' warns about changes in `mail-user-agent'.
6367 If the value of `mail-user-agent' is the default, and the user
6368 appears to have customizations applying to the old default,
6369 `compose-mail' issues a warning."
6370 :type 'boolean
6371 :version "23.2"
6372 :group 'mail)
6374 (defun rfc822-goto-eoh ()
6375 "If the buffer starts with a mail header, move point to the header's end.
6376 Otherwise, moves to `point-min'.
6377 The end of the header is the start of the next line, if there is one,
6378 else the end of the last line. This function obeys RFC822."
6379 (goto-char (point-min))
6380 (when (re-search-forward
6381 "^\\([:\n]\\|[^: \t\n]+[ \t\n]\\)" nil 'move)
6382 (goto-char (match-beginning 0))))
6384 ;; Used by Rmail (e.g., rmail-forward).
6385 (defvar mail-encode-mml nil
6386 "If non-nil, mail-user-agent's `sendfunc' command should mml-encode
6387 the outgoing message before sending it.")
6389 (defun compose-mail (&optional to subject other-headers continue
6390 switch-function yank-action send-actions
6391 return-action)
6392 "Start composing a mail message to send.
6393 This uses the user's chosen mail composition package
6394 as selected with the variable `mail-user-agent'.
6395 The optional arguments TO and SUBJECT specify recipients
6396 and the initial Subject field, respectively.
6398 OTHER-HEADERS is an alist specifying additional
6399 header fields. Elements look like (HEADER . VALUE) where both
6400 HEADER and VALUE are strings.
6402 CONTINUE, if non-nil, says to continue editing a message already
6403 being composed. Interactively, CONTINUE is the prefix argument.
6405 SWITCH-FUNCTION, if non-nil, is a function to use to
6406 switch to and display the buffer used for mail composition.
6408 YANK-ACTION, if non-nil, is an action to perform, if and when necessary,
6409 to insert the raw text of the message being replied to.
6410 It has the form (FUNCTION . ARGS). The user agent will apply
6411 FUNCTION to ARGS, to insert the raw text of the original message.
6412 \(The user agent will also run `mail-citation-hook', *after* the
6413 original text has been inserted in this way.)
6415 SEND-ACTIONS is a list of actions to call when the message is sent.
6416 Each action has the form (FUNCTION . ARGS).
6418 RETURN-ACTION, if non-nil, is an action for returning to the
6419 caller. It has the form (FUNCTION . ARGS). The function is
6420 called after the mail has been sent or put aside, and the mail
6421 buffer buried."
6422 (interactive
6423 (list nil nil nil current-prefix-arg))
6425 ;; In Emacs 23.2, the default value of `mail-user-agent' changed
6426 ;; from sendmail-user-agent to message-user-agent. Some users may
6427 ;; encounter incompatibilities. This hack tries to detect problems
6428 ;; and warn about them.
6429 (and compose-mail-user-agent-warnings
6430 (eq mail-user-agent 'message-user-agent)
6431 (let (warn-vars)
6432 (dolist (var '(mail-mode-hook mail-send-hook mail-setup-hook
6433 mail-yank-hooks mail-archive-file-name
6434 mail-default-reply-to mail-mailing-lists
6435 mail-self-blind))
6436 (and (boundp var)
6437 (symbol-value var)
6438 (push var warn-vars)))
6439 (when warn-vars
6440 (display-warning 'mail
6441 (format "\
6442 The default mail mode is now Message mode.
6443 You have the following Mail mode variable%s customized:
6444 \n %s\n\nTo use Mail mode, set `mail-user-agent' to sendmail-user-agent.
6445 To disable this warning, set `compose-mail-user-agent-warnings' to nil."
6446 (if (> (length warn-vars) 1) "s" "")
6447 (mapconcat 'symbol-name
6448 warn-vars " "))))))
6450 (let ((function (get mail-user-agent 'composefunc)))
6451 (funcall function to subject other-headers continue switch-function
6452 yank-action send-actions return-action)))
6454 (defun compose-mail-other-window (&optional to subject other-headers continue
6455 yank-action send-actions
6456 return-action)
6457 "Like \\[compose-mail], but edit the outgoing message in another window."
6458 (interactive (list nil nil nil current-prefix-arg))
6459 (compose-mail to subject other-headers continue
6460 'switch-to-buffer-other-window yank-action send-actions
6461 return-action))
6463 (defun compose-mail-other-frame (&optional to subject other-headers continue
6464 yank-action send-actions
6465 return-action)
6466 "Like \\[compose-mail], but edit the outgoing message in another frame."
6467 (interactive (list nil nil nil current-prefix-arg))
6468 (compose-mail to subject other-headers continue
6469 'switch-to-buffer-other-frame yank-action send-actions
6470 return-action))
6473 (defvar set-variable-value-history nil
6474 "History of values entered with `set-variable'.
6476 Maximum length of the history list is determined by the value
6477 of `history-length', which see.")
6479 (defun set-variable (variable value &optional make-local)
6480 "Set VARIABLE to VALUE. VALUE is a Lisp object.
6481 VARIABLE should be a user option variable name, a Lisp variable
6482 meant to be customized by users. You should enter VALUE in Lisp syntax,
6483 so if you want VALUE to be a string, you must surround it with doublequotes.
6484 VALUE is used literally, not evaluated.
6486 If VARIABLE has a `variable-interactive' property, that is used as if
6487 it were the arg to `interactive' (which see) to interactively read VALUE.
6489 If VARIABLE has been defined with `defcustom', then the type information
6490 in the definition is used to check that VALUE is valid.
6492 With a prefix argument, set VARIABLE to VALUE buffer-locally."
6493 (interactive
6494 (let* ((default-var (variable-at-point))
6495 (var (if (custom-variable-p default-var)
6496 (read-variable (format "Set variable (default %s): " default-var)
6497 default-var)
6498 (read-variable "Set variable: ")))
6499 (minibuffer-help-form '(describe-variable var))
6500 (prop (get var 'variable-interactive))
6501 (obsolete (car (get var 'byte-obsolete-variable)))
6502 (prompt (format "Set %s %s to value: " var
6503 (cond ((local-variable-p var)
6504 "(buffer-local)")
6505 ((or current-prefix-arg
6506 (local-variable-if-set-p var))
6507 "buffer-locally")
6508 (t "globally"))))
6509 (val (progn
6510 (when obsolete
6511 (message (concat "`%S' is obsolete; "
6512 (if (symbolp obsolete) "use `%S' instead" "%s"))
6513 var obsolete)
6514 (sit-for 3))
6515 (if prop
6516 ;; Use VAR's `variable-interactive' property
6517 ;; as an interactive spec for prompting.
6518 (call-interactively `(lambda (arg)
6519 (interactive ,prop)
6520 arg))
6521 (read-from-minibuffer prompt nil
6522 read-expression-map t
6523 'set-variable-value-history
6524 (format "%S" (symbol-value var)))))))
6525 (list var val current-prefix-arg)))
6527 (and (custom-variable-p variable)
6528 (not (get variable 'custom-type))
6529 (custom-load-symbol variable))
6530 (let ((type (get variable 'custom-type)))
6531 (when type
6532 ;; Match with custom type.
6533 (require 'cus-edit)
6534 (setq type (widget-convert type))
6535 (unless (widget-apply type :match value)
6536 (error "Value `%S' does not match type %S of %S"
6537 value (car type) variable))))
6539 (if make-local
6540 (make-local-variable variable))
6542 (set variable value)
6544 ;; Force a thorough redisplay for the case that the variable
6545 ;; has an effect on the display, like `tab-width' has.
6546 (force-mode-line-update))
6548 ;; Define the major mode for lists of completions.
6550 (defvar completion-list-mode-map
6551 (let ((map (make-sparse-keymap)))
6552 (define-key map [mouse-2] 'mouse-choose-completion)
6553 (define-key map [follow-link] 'mouse-face)
6554 (define-key map [down-mouse-2] nil)
6555 (define-key map "\C-m" 'choose-completion)
6556 (define-key map "\e\e\e" 'delete-completion-window)
6557 (define-key map [left] 'previous-completion)
6558 (define-key map [right] 'next-completion)
6559 (define-key map "q" 'quit-window)
6560 (define-key map "z" 'kill-this-buffer)
6561 map)
6562 "Local map for completion list buffers.")
6564 ;; Completion mode is suitable only for specially formatted data.
6565 (put 'completion-list-mode 'mode-class 'special)
6567 (defvar completion-reference-buffer nil
6568 "Record the buffer that was current when the completion list was requested.
6569 This is a local variable in the completion list buffer.
6570 Initial value is nil to avoid some compiler warnings.")
6572 (defvar completion-no-auto-exit nil
6573 "Non-nil means `choose-completion-string' should never exit the minibuffer.
6574 This also applies to other functions such as `choose-completion'.")
6576 (defvar completion-base-position nil
6577 "Position of the base of the text corresponding to the shown completions.
6578 This variable is used in the *Completions* buffers.
6579 Its value is a list of the form (START END) where START is the place
6580 where the completion should be inserted and END (if non-nil) is the end
6581 of the text to replace. If END is nil, point is used instead.")
6583 (defvar completion-list-insert-choice-function #'completion--replace
6584 "Function to use to insert the text chosen in *Completions*.
6585 Called with three arguments (BEG END TEXT), it should replace the text
6586 between BEG and END with TEXT. Expected to be set buffer-locally
6587 in the *Completions* buffer.")
6589 (defvar completion-base-size nil
6590 "Number of chars before point not involved in completion.
6591 This is a local variable in the completion list buffer.
6592 It refers to the chars in the minibuffer if completing in the
6593 minibuffer, or in `completion-reference-buffer' otherwise.
6594 Only characters in the field at point are included.
6596 If nil, Emacs determines which part of the tail end of the
6597 buffer's text is involved in completion by comparing the text
6598 directly.")
6599 (make-obsolete-variable 'completion-base-size 'completion-base-position "23.2")
6601 (defun delete-completion-window ()
6602 "Delete the completion list window.
6603 Go to the window from which completion was requested."
6604 (interactive)
6605 (let ((buf completion-reference-buffer))
6606 (if (one-window-p t)
6607 (if (window-dedicated-p) (delete-frame))
6608 (delete-window (selected-window))
6609 (if (get-buffer-window buf)
6610 (select-window (get-buffer-window buf))))))
6612 (defun previous-completion (n)
6613 "Move to the previous item in the completion list."
6614 (interactive "p")
6615 (next-completion (- n)))
6617 (defun next-completion (n)
6618 "Move to the next item in the completion list.
6619 With prefix argument N, move N items (negative N means move backward)."
6620 (interactive "p")
6621 (let ((beg (point-min)) (end (point-max)))
6622 (while (and (> n 0) (not (eobp)))
6623 ;; If in a completion, move to the end of it.
6624 (when (get-text-property (point) 'mouse-face)
6625 (goto-char (next-single-property-change (point) 'mouse-face nil end)))
6626 ;; Move to start of next one.
6627 (unless (get-text-property (point) 'mouse-face)
6628 (goto-char (next-single-property-change (point) 'mouse-face nil end)))
6629 (setq n (1- n)))
6630 (while (and (< n 0) (not (bobp)))
6631 (let ((prop (get-text-property (1- (point)) 'mouse-face)))
6632 ;; If in a completion, move to the start of it.
6633 (when (and prop (eq prop (get-text-property (point) 'mouse-face)))
6634 (goto-char (previous-single-property-change
6635 (point) 'mouse-face nil beg)))
6636 ;; Move to end of the previous completion.
6637 (unless (or (bobp) (get-text-property (1- (point)) 'mouse-face))
6638 (goto-char (previous-single-property-change
6639 (point) 'mouse-face nil beg)))
6640 ;; Move to the start of that one.
6641 (goto-char (previous-single-property-change
6642 (point) 'mouse-face nil beg))
6643 (setq n (1+ n))))))
6645 (defun choose-completion (&optional event)
6646 "Choose the completion at point."
6647 (interactive (list last-nonmenu-event))
6648 ;; In case this is run via the mouse, give temporary modes such as
6649 ;; isearch a chance to turn off.
6650 (run-hooks 'mouse-leave-buffer-hook)
6651 (with-current-buffer (window-buffer (posn-window (event-start event)))
6652 (let ((buffer completion-reference-buffer)
6653 (base-size completion-base-size)
6654 (base-position completion-base-position)
6655 (insert-function completion-list-insert-choice-function)
6656 (choice
6657 (save-excursion
6658 (goto-char (posn-point (event-start event)))
6659 (let (beg end)
6660 (cond
6661 ((and (not (eobp)) (get-text-property (point) 'mouse-face))
6662 (setq end (point) beg (1+ (point))))
6663 ((and (not (bobp))
6664 (get-text-property (1- (point)) 'mouse-face))
6665 (setq end (1- (point)) beg (point)))
6666 (t (error "No completion here")))
6667 (setq beg (previous-single-property-change beg 'mouse-face))
6668 (setq end (or (next-single-property-change end 'mouse-face)
6669 (point-max)))
6670 (buffer-substring-no-properties beg end)))))
6672 (unless (buffer-live-p buffer)
6673 (error "Destination buffer is dead"))
6674 (quit-window nil (posn-window (event-start event)))
6676 (with-current-buffer buffer
6677 (choose-completion-string
6678 choice buffer
6679 (or base-position
6680 (when base-size
6681 ;; Someone's using old completion code that doesn't know
6682 ;; about base-position yet.
6683 (list (+ base-size (field-beginning))))
6684 ;; If all else fails, just guess.
6685 (list (choose-completion-guess-base-position choice)))
6686 insert-function)))))
6688 ;; Delete the longest partial match for STRING
6689 ;; that can be found before POINT.
6690 (defun choose-completion-guess-base-position (string)
6691 (save-excursion
6692 (let ((opoint (point))
6693 len)
6694 ;; Try moving back by the length of the string.
6695 (goto-char (max (- (point) (length string))
6696 (minibuffer-prompt-end)))
6697 ;; See how far back we were actually able to move. That is the
6698 ;; upper bound on how much we can match and delete.
6699 (setq len (- opoint (point)))
6700 (if completion-ignore-case
6701 (setq string (downcase string)))
6702 (while (and (> len 0)
6703 (let ((tail (buffer-substring (point) opoint)))
6704 (if completion-ignore-case
6705 (setq tail (downcase tail)))
6706 (not (string= tail (substring string 0 len)))))
6707 (setq len (1- len))
6708 (forward-char 1))
6709 (point))))
6711 (defun choose-completion-delete-max-match (string)
6712 (declare (obsolete choose-completion-guess-base-position "23.2"))
6713 (delete-region (choose-completion-guess-base-position string) (point)))
6715 (defvar choose-completion-string-functions nil
6716 "Functions that may override the normal insertion of a completion choice.
6717 These functions are called in order with four arguments:
6718 CHOICE - the string to insert in the buffer,
6719 BUFFER - the buffer in which the choice should be inserted,
6720 MINI-P - non-nil if BUFFER is a minibuffer, and
6721 BASE-SIZE - the number of characters in BUFFER before
6722 the string being completed.
6724 If a function in the list returns non-nil, that function is supposed
6725 to have inserted the CHOICE in the BUFFER, and possibly exited
6726 the minibuffer; no further functions will be called.
6728 If all functions in the list return nil, that means to use
6729 the default method of inserting the completion in BUFFER.")
6731 (defun choose-completion-string (choice &optional
6732 buffer base-position insert-function)
6733 "Switch to BUFFER and insert the completion choice CHOICE.
6734 BASE-POSITION says where to insert the completion.
6735 INSERT-FUNCTION says how to insert the completion and falls
6736 back on `completion-list-insert-choice-function' when nil."
6738 ;; If BUFFER is the minibuffer, exit the minibuffer
6739 ;; unless it is reading a file name and CHOICE is a directory,
6740 ;; or completion-no-auto-exit is non-nil.
6742 ;; Some older code may call us passing `base-size' instead of
6743 ;; `base-position'. It's difficult to make any use of `base-size',
6744 ;; so we just ignore it.
6745 (unless (consp base-position)
6746 (message "Obsolete `base-size' passed to choose-completion-string")
6747 (setq base-position nil))
6749 (let* ((buffer (or buffer completion-reference-buffer))
6750 (mini-p (minibufferp buffer)))
6751 ;; If BUFFER is a minibuffer, barf unless it's the currently
6752 ;; active minibuffer.
6753 (if (and mini-p
6754 (not (and (active-minibuffer-window)
6755 (equal buffer
6756 (window-buffer (active-minibuffer-window))))))
6757 (error "Minibuffer is not active for completion")
6758 ;; Set buffer so buffer-local choose-completion-string-functions works.
6759 (set-buffer buffer)
6760 (unless (run-hook-with-args-until-success
6761 'choose-completion-string-functions
6762 ;; The fourth arg used to be `mini-p' but was useless
6763 ;; (since minibufferp can be used on the `buffer' arg)
6764 ;; and indeed unused. The last used to be `base-size', so we
6765 ;; keep it to try and avoid breaking old code.
6766 choice buffer base-position nil)
6767 ;; This remove-text-properties should be unnecessary since `choice'
6768 ;; comes from buffer-substring-no-properties.
6769 ;;(remove-text-properties 0 (length choice) '(mouse-face nil) choice)
6770 ;; Insert the completion into the buffer where it was requested.
6771 (funcall (or insert-function completion-list-insert-choice-function)
6772 (or (car base-position) (point))
6773 (or (cadr base-position) (point))
6774 choice)
6775 ;; Update point in the window that BUFFER is showing in.
6776 (let ((window (get-buffer-window buffer t)))
6777 (set-window-point window (point)))
6778 ;; If completing for the minibuffer, exit it with this choice.
6779 (and (not completion-no-auto-exit)
6780 (minibufferp buffer)
6781 minibuffer-completion-table
6782 ;; If this is reading a file name, and the file name chosen
6783 ;; is a directory, don't exit the minibuffer.
6784 (let* ((result (buffer-substring (field-beginning) (point)))
6785 (bounds
6786 (completion-boundaries result minibuffer-completion-table
6787 minibuffer-completion-predicate
6788 "")))
6789 (if (eq (car bounds) (length result))
6790 ;; The completion chosen leads to a new set of completions
6791 ;; (e.g. it's a directory): don't exit the minibuffer yet.
6792 (let ((mini (active-minibuffer-window)))
6793 (select-window mini)
6794 (when minibuffer-auto-raise
6795 (raise-frame (window-frame mini))))
6796 (exit-minibuffer))))))))
6798 (define-derived-mode completion-list-mode nil "Completion List"
6799 "Major mode for buffers showing lists of possible completions.
6800 Type \\<completion-list-mode-map>\\[choose-completion] in the completion list\
6801 to select the completion near point.
6802 Use \\<completion-list-mode-map>\\[mouse-choose-completion] to select one\
6803 with the mouse.
6805 \\{completion-list-mode-map}"
6806 (set (make-local-variable 'completion-base-size) nil))
6808 (defun completion-list-mode-finish ()
6809 "Finish setup of the completions buffer.
6810 Called from `temp-buffer-show-hook'."
6811 (when (eq major-mode 'completion-list-mode)
6812 (setq buffer-read-only t)))
6814 (add-hook 'temp-buffer-show-hook 'completion-list-mode-finish)
6817 ;; Variables and faces used in `completion-setup-function'.
6819 (defcustom completion-show-help t
6820 "Non-nil means show help message in *Completions* buffer."
6821 :type 'boolean
6822 :version "22.1"
6823 :group 'completion)
6825 ;; This function goes in completion-setup-hook, so that it is called
6826 ;; after the text of the completion list buffer is written.
6827 (defun completion-setup-function ()
6828 (let* ((mainbuf (current-buffer))
6829 (base-dir
6830 ;; FIXME: This is a bad hack. We try to set the default-directory
6831 ;; in the *Completions* buffer so that the relative file names
6832 ;; displayed there can be treated as valid file names, independently
6833 ;; from the completion context. But this suffers from many problems:
6834 ;; - It's not clear when the completions are file names. With some
6835 ;; completion tables (e.g. bzr revision specs), the listed
6836 ;; completions can mix file names and other things.
6837 ;; - It doesn't pay attention to possible quoting.
6838 ;; - With fancy completion styles, the code below will not always
6839 ;; find the right base directory.
6840 (if minibuffer-completing-file-name
6841 (file-name-as-directory
6842 (expand-file-name
6843 (buffer-substring (minibuffer-prompt-end)
6844 (- (point) (or completion-base-size 0))))))))
6845 (with-current-buffer standard-output
6846 (let ((base-size completion-base-size) ;Read before killing localvars.
6847 (base-position completion-base-position)
6848 (insert-fun completion-list-insert-choice-function))
6849 (completion-list-mode)
6850 (set (make-local-variable 'completion-base-size) base-size)
6851 (set (make-local-variable 'completion-base-position) base-position)
6852 (set (make-local-variable 'completion-list-insert-choice-function)
6853 insert-fun))
6854 (set (make-local-variable 'completion-reference-buffer) mainbuf)
6855 (if base-dir (setq default-directory base-dir))
6856 ;; Maybe insert help string.
6857 (when completion-show-help
6858 (goto-char (point-min))
6859 (if (display-mouse-p)
6860 (insert (substitute-command-keys
6861 "Click \\[mouse-choose-completion] on a completion to select it.\n")))
6862 (insert (substitute-command-keys
6863 "In this buffer, type \\[choose-completion] to \
6864 select the completion near point.\n\n"))))))
6866 (add-hook 'completion-setup-hook 'completion-setup-function)
6868 (define-key minibuffer-local-completion-map [prior] 'switch-to-completions)
6869 (define-key minibuffer-local-completion-map "\M-v" 'switch-to-completions)
6871 (defun switch-to-completions ()
6872 "Select the completion list window."
6873 (interactive)
6874 (let ((window (or (get-buffer-window "*Completions*" 0)
6875 ;; Make sure we have a completions window.
6876 (progn (minibuffer-completion-help)
6877 (get-buffer-window "*Completions*" 0)))))
6878 (when window
6879 (select-window window)
6880 ;; In the new buffer, go to the first completion.
6881 ;; FIXME: Perhaps this should be done in `minibuffer-completion-help'.
6882 (when (bobp)
6883 (next-completion 1)))))
6885 ;;; Support keyboard commands to turn on various modifiers.
6887 ;; These functions -- which are not commands -- each add one modifier
6888 ;; to the following event.
6890 (defun event-apply-alt-modifier (_ignore-prompt)
6891 "\\<function-key-map>Add the Alt modifier to the following event.
6892 For example, type \\[event-apply-alt-modifier] & to enter Alt-&."
6893 (vector (event-apply-modifier (read-event) 'alt 22 "A-")))
6894 (defun event-apply-super-modifier (_ignore-prompt)
6895 "\\<function-key-map>Add the Super modifier to the following event.
6896 For example, type \\[event-apply-super-modifier] & to enter Super-&."
6897 (vector (event-apply-modifier (read-event) 'super 23 "s-")))
6898 (defun event-apply-hyper-modifier (_ignore-prompt)
6899 "\\<function-key-map>Add the Hyper modifier to the following event.
6900 For example, type \\[event-apply-hyper-modifier] & to enter Hyper-&."
6901 (vector (event-apply-modifier (read-event) 'hyper 24 "H-")))
6902 (defun event-apply-shift-modifier (_ignore-prompt)
6903 "\\<function-key-map>Add the Shift modifier to the following event.
6904 For example, type \\[event-apply-shift-modifier] & to enter Shift-&."
6905 (vector (event-apply-modifier (read-event) 'shift 25 "S-")))
6906 (defun event-apply-control-modifier (_ignore-prompt)
6907 "\\<function-key-map>Add the Ctrl modifier to the following event.
6908 For example, type \\[event-apply-control-modifier] & to enter Ctrl-&."
6909 (vector (event-apply-modifier (read-event) 'control 26 "C-")))
6910 (defun event-apply-meta-modifier (_ignore-prompt)
6911 "\\<function-key-map>Add the Meta modifier to the following event.
6912 For example, type \\[event-apply-meta-modifier] & to enter Meta-&."
6913 (vector (event-apply-modifier (read-event) 'meta 27 "M-")))
6915 (defun event-apply-modifier (event symbol lshiftby prefix)
6916 "Apply a modifier flag to event EVENT.
6917 SYMBOL is the name of this modifier, as a symbol.
6918 LSHIFTBY is the numeric value of this modifier, in keyboard events.
6919 PREFIX is the string that represents this modifier in an event type symbol."
6920 (if (numberp event)
6921 (cond ((eq symbol 'control)
6922 (if (and (<= (downcase event) ?z)
6923 (>= (downcase event) ?a))
6924 (- (downcase event) ?a -1)
6925 (if (and (<= (downcase event) ?Z)
6926 (>= (downcase event) ?A))
6927 (- (downcase event) ?A -1)
6928 (logior (lsh 1 lshiftby) event))))
6929 ((eq symbol 'shift)
6930 (if (and (<= (downcase event) ?z)
6931 (>= (downcase event) ?a))
6932 (upcase event)
6933 (logior (lsh 1 lshiftby) event)))
6935 (logior (lsh 1 lshiftby) event)))
6936 (if (memq symbol (event-modifiers event))
6937 event
6938 (let ((event-type (if (symbolp event) event (car event))))
6939 (setq event-type (intern (concat prefix (symbol-name event-type))))
6940 (if (symbolp event)
6941 event-type
6942 (cons event-type (cdr event)))))))
6944 (define-key function-key-map [?\C-x ?@ ?h] 'event-apply-hyper-modifier)
6945 (define-key function-key-map [?\C-x ?@ ?s] 'event-apply-super-modifier)
6946 (define-key function-key-map [?\C-x ?@ ?m] 'event-apply-meta-modifier)
6947 (define-key function-key-map [?\C-x ?@ ?a] 'event-apply-alt-modifier)
6948 (define-key function-key-map [?\C-x ?@ ?S] 'event-apply-shift-modifier)
6949 (define-key function-key-map [?\C-x ?@ ?c] 'event-apply-control-modifier)
6951 ;;;; Keypad support.
6953 ;; Make the keypad keys act like ordinary typing keys. If people add
6954 ;; bindings for the function key symbols, then those bindings will
6955 ;; override these, so this shouldn't interfere with any existing
6956 ;; bindings.
6958 ;; Also tell read-char how to handle these keys.
6959 (mapc
6960 (lambda (keypad-normal)
6961 (let ((keypad (nth 0 keypad-normal))
6962 (normal (nth 1 keypad-normal)))
6963 (put keypad 'ascii-character normal)
6964 (define-key function-key-map (vector keypad) (vector normal))))
6965 '((kp-0 ?0) (kp-1 ?1) (kp-2 ?2) (kp-3 ?3) (kp-4 ?4)
6966 (kp-5 ?5) (kp-6 ?6) (kp-7 ?7) (kp-8 ?8) (kp-9 ?9)
6967 (kp-space ?\s)
6968 (kp-tab ?\t)
6969 (kp-enter ?\r)
6970 (kp-multiply ?*)
6971 (kp-add ?+)
6972 (kp-separator ?,)
6973 (kp-subtract ?-)
6974 (kp-decimal ?.)
6975 (kp-divide ?/)
6976 (kp-equal ?=)
6977 ;; Do the same for various keys that are represented as symbols under
6978 ;; GUIs but naturally correspond to characters.
6979 (backspace 127)
6980 (delete 127)
6981 (tab ?\t)
6982 (linefeed ?\n)
6983 (clear ?\C-l)
6984 (return ?\C-m)
6985 (escape ?\e)
6988 ;;;;
6989 ;;;; forking a twin copy of a buffer.
6990 ;;;;
6992 (defvar clone-buffer-hook nil
6993 "Normal hook to run in the new buffer at the end of `clone-buffer'.")
6995 (defvar clone-indirect-buffer-hook nil
6996 "Normal hook to run in the new buffer at the end of `clone-indirect-buffer'.")
6998 (defun clone-process (process &optional newname)
6999 "Create a twin copy of PROCESS.
7000 If NEWNAME is nil, it defaults to PROCESS' name;
7001 NEWNAME is modified by adding or incrementing <N> at the end as necessary.
7002 If PROCESS is associated with a buffer, the new process will be associated
7003 with the current buffer instead.
7004 Returns nil if PROCESS has already terminated."
7005 (setq newname (or newname (process-name process)))
7006 (if (string-match "<[0-9]+>\\'" newname)
7007 (setq newname (substring newname 0 (match-beginning 0))))
7008 (when (memq (process-status process) '(run stop open))
7009 (let* ((process-connection-type (process-tty-name process))
7010 (new-process
7011 (if (memq (process-status process) '(open))
7012 (let ((args (process-contact process t)))
7013 (setq args (plist-put args :name newname))
7014 (setq args (plist-put args :buffer
7015 (if (process-buffer process)
7016 (current-buffer))))
7017 (apply 'make-network-process args))
7018 (apply 'start-process newname
7019 (if (process-buffer process) (current-buffer))
7020 (process-command process)))))
7021 (set-process-query-on-exit-flag
7022 new-process (process-query-on-exit-flag process))
7023 (set-process-inherit-coding-system-flag
7024 new-process (process-inherit-coding-system-flag process))
7025 (set-process-filter new-process (process-filter process))
7026 (set-process-sentinel new-process (process-sentinel process))
7027 (set-process-plist new-process (copy-sequence (process-plist process)))
7028 new-process)))
7030 ;; things to maybe add (currently partly covered by `funcall mode'):
7031 ;; - syntax-table
7032 ;; - overlays
7033 (defun clone-buffer (&optional newname display-flag)
7034 "Create and return a twin copy of the current buffer.
7035 Unlike an indirect buffer, the new buffer can be edited
7036 independently of the old one (if it is not read-only).
7037 NEWNAME is the name of the new buffer. It may be modified by
7038 adding or incrementing <N> at the end as necessary to create a
7039 unique buffer name. If nil, it defaults to the name of the
7040 current buffer, with the proper suffix. If DISPLAY-FLAG is
7041 non-nil, the new buffer is shown with `pop-to-buffer'. Trying to
7042 clone a file-visiting buffer, or a buffer whose major mode symbol
7043 has a non-nil `no-clone' property, results in an error.
7045 Interactively, DISPLAY-FLAG is t and NEWNAME is the name of the
7046 current buffer with appropriate suffix. However, if a prefix
7047 argument is given, then the command prompts for NEWNAME in the
7048 minibuffer.
7050 This runs the normal hook `clone-buffer-hook' in the new buffer
7051 after it has been set up properly in other respects."
7052 (interactive
7053 (progn
7054 (if buffer-file-name
7055 (error "Cannot clone a file-visiting buffer"))
7056 (if (get major-mode 'no-clone)
7057 (error "Cannot clone a buffer in %s mode" mode-name))
7058 (list (if current-prefix-arg
7059 (read-buffer "Name of new cloned buffer: " (current-buffer)))
7060 t)))
7061 (if buffer-file-name
7062 (error "Cannot clone a file-visiting buffer"))
7063 (if (get major-mode 'no-clone)
7064 (error "Cannot clone a buffer in %s mode" mode-name))
7065 (setq newname (or newname (buffer-name)))
7066 (if (string-match "<[0-9]+>\\'" newname)
7067 (setq newname (substring newname 0 (match-beginning 0))))
7068 (let ((buf (current-buffer))
7069 (ptmin (point-min))
7070 (ptmax (point-max))
7071 (pt (point))
7072 (mk (if mark-active (mark t)))
7073 (modified (buffer-modified-p))
7074 (mode major-mode)
7075 (lvars (buffer-local-variables))
7076 (process (get-buffer-process (current-buffer)))
7077 (new (generate-new-buffer (or newname (buffer-name)))))
7078 (save-restriction
7079 (widen)
7080 (with-current-buffer new
7081 (insert-buffer-substring buf)))
7082 (with-current-buffer new
7083 (narrow-to-region ptmin ptmax)
7084 (goto-char pt)
7085 (if mk (set-mark mk))
7086 (set-buffer-modified-p modified)
7088 ;; Clone the old buffer's process, if any.
7089 (when process (clone-process process))
7091 ;; Now set up the major mode.
7092 (funcall mode)
7094 ;; Set up other local variables.
7095 (mapc (lambda (v)
7096 (condition-case () ;in case var is read-only
7097 (if (symbolp v)
7098 (makunbound v)
7099 (set (make-local-variable (car v)) (cdr v)))
7100 (error nil)))
7101 lvars)
7103 ;; Run any hooks (typically set up by the major mode
7104 ;; for cloning to work properly).
7105 (run-hooks 'clone-buffer-hook))
7106 (if display-flag
7107 ;; Presumably the current buffer is shown in the selected frame, so
7108 ;; we want to display the clone elsewhere.
7109 (let ((same-window-regexps nil)
7110 (same-window-buffer-names))
7111 (pop-to-buffer new)))
7112 new))
7115 (defun clone-indirect-buffer (newname display-flag &optional norecord)
7116 "Create an indirect buffer that is a twin copy of the current buffer.
7118 Give the indirect buffer name NEWNAME. Interactively, read NEWNAME
7119 from the minibuffer when invoked with a prefix arg. If NEWNAME is nil
7120 or if not called with a prefix arg, NEWNAME defaults to the current
7121 buffer's name. The name is modified by adding a `<N>' suffix to it
7122 or by incrementing the N in an existing suffix. Trying to clone a
7123 buffer whose major mode symbol has a non-nil `no-clone-indirect'
7124 property results in an error.
7126 DISPLAY-FLAG non-nil means show the new buffer with `pop-to-buffer'.
7127 This is always done when called interactively.
7129 Optional third arg NORECORD non-nil means do not put this buffer at the
7130 front of the list of recently selected ones."
7131 (interactive
7132 (progn
7133 (if (get major-mode 'no-clone-indirect)
7134 (error "Cannot indirectly clone a buffer in %s mode" mode-name))
7135 (list (if current-prefix-arg
7136 (read-buffer "Name of indirect buffer: " (current-buffer)))
7137 t)))
7138 (if (get major-mode 'no-clone-indirect)
7139 (error "Cannot indirectly clone a buffer in %s mode" mode-name))
7140 (setq newname (or newname (buffer-name)))
7141 (if (string-match "<[0-9]+>\\'" newname)
7142 (setq newname (substring newname 0 (match-beginning 0))))
7143 (let* ((name (generate-new-buffer-name newname))
7144 (buffer (make-indirect-buffer (current-buffer) name t)))
7145 (with-current-buffer buffer
7146 (run-hooks 'clone-indirect-buffer-hook))
7147 (when display-flag
7148 (pop-to-buffer buffer norecord))
7149 buffer))
7152 (defun clone-indirect-buffer-other-window (newname display-flag &optional norecord)
7153 "Like `clone-indirect-buffer' but display in another window."
7154 (interactive
7155 (progn
7156 (if (get major-mode 'no-clone-indirect)
7157 (error "Cannot indirectly clone a buffer in %s mode" mode-name))
7158 (list (if current-prefix-arg
7159 (read-buffer "Name of indirect buffer: " (current-buffer)))
7160 t)))
7161 (let ((pop-up-windows t))
7162 (clone-indirect-buffer newname display-flag norecord)))
7165 ;;; Handling of Backspace and Delete keys.
7167 (defcustom normal-erase-is-backspace 'maybe
7168 "Set the default behavior of the Delete and Backspace keys.
7170 If set to t, Delete key deletes forward and Backspace key deletes
7171 backward.
7173 If set to nil, both Delete and Backspace keys delete backward.
7175 If set to 'maybe (which is the default), Emacs automatically
7176 selects a behavior. On window systems, the behavior depends on
7177 the keyboard used. If the keyboard has both a Backspace key and
7178 a Delete key, and both are mapped to their usual meanings, the
7179 option's default value is set to t, so that Backspace can be used
7180 to delete backward, and Delete can be used to delete forward.
7182 If not running under a window system, customizing this option
7183 accomplishes a similar effect by mapping C-h, which is usually
7184 generated by the Backspace key, to DEL, and by mapping DEL to C-d
7185 via `keyboard-translate'. The former functionality of C-h is
7186 available on the F1 key. You should probably not use this
7187 setting if you don't have both Backspace, Delete and F1 keys.
7189 Setting this variable with setq doesn't take effect. Programmatically,
7190 call `normal-erase-is-backspace-mode' (which see) instead."
7191 :type '(choice (const :tag "Off" nil)
7192 (const :tag "Maybe" maybe)
7193 (other :tag "On" t))
7194 :group 'editing-basics
7195 :version "21.1"
7196 :set (lambda (symbol value)
7197 ;; The fboundp is because of a problem with :set when
7198 ;; dumping Emacs. It doesn't really matter.
7199 (if (fboundp 'normal-erase-is-backspace-mode)
7200 (normal-erase-is-backspace-mode (or value 0))
7201 (set-default symbol value))))
7203 (defun normal-erase-is-backspace-setup-frame (&optional frame)
7204 "Set up `normal-erase-is-backspace-mode' on FRAME, if necessary."
7205 (unless frame (setq frame (selected-frame)))
7206 (with-selected-frame frame
7207 (unless (terminal-parameter nil 'normal-erase-is-backspace)
7208 (normal-erase-is-backspace-mode
7209 (if (if (eq normal-erase-is-backspace 'maybe)
7210 (and (not noninteractive)
7211 (or (memq system-type '(ms-dos windows-nt))
7212 (memq window-system '(w32 ns))
7213 (and (memq window-system '(x))
7214 (fboundp 'x-backspace-delete-keys-p)
7215 (x-backspace-delete-keys-p))
7216 ;; If the terminal Emacs is running on has erase char
7217 ;; set to ^H, use the Backspace key for deleting
7218 ;; backward, and the Delete key for deleting forward.
7219 (and (null window-system)
7220 (eq tty-erase-char ?\^H))))
7221 normal-erase-is-backspace)
7222 1 0)))))
7224 (define-minor-mode normal-erase-is-backspace-mode
7225 "Toggle the Erase and Delete mode of the Backspace and Delete keys.
7226 With a prefix argument ARG, enable this feature if ARG is
7227 positive, and disable it otherwise. If called from Lisp, enable
7228 the mode if ARG is omitted or nil.
7230 On window systems, when this mode is on, Delete is mapped to C-d
7231 and Backspace is mapped to DEL; when this mode is off, both
7232 Delete and Backspace are mapped to DEL. (The remapping goes via
7233 `local-function-key-map', so binding Delete or Backspace in the
7234 global or local keymap will override that.)
7236 In addition, on window systems, the bindings of C-Delete, M-Delete,
7237 C-M-Delete, C-Backspace, M-Backspace, and C-M-Backspace are changed in
7238 the global keymap in accordance with the functionality of Delete and
7239 Backspace. For example, if Delete is remapped to C-d, which deletes
7240 forward, C-Delete is bound to `kill-word', but if Delete is remapped
7241 to DEL, which deletes backward, C-Delete is bound to
7242 `backward-kill-word'.
7244 If not running on a window system, a similar effect is accomplished by
7245 remapping C-h (normally produced by the Backspace key) and DEL via
7246 `keyboard-translate': if this mode is on, C-h is mapped to DEL and DEL
7247 to C-d; if it's off, the keys are not remapped.
7249 When not running on a window system, and this mode is turned on, the
7250 former functionality of C-h is available on the F1 key. You should
7251 probably not turn on this mode on a text-only terminal if you don't
7252 have both Backspace, Delete and F1 keys.
7254 See also `normal-erase-is-backspace'."
7255 :variable ((eq (terminal-parameter nil 'normal-erase-is-backspace) 1)
7256 . (lambda (v)
7257 (setf (terminal-parameter nil 'normal-erase-is-backspace)
7258 (if v 1 0))))
7259 (let ((enabled (eq 1 (terminal-parameter
7260 nil 'normal-erase-is-backspace))))
7262 (cond ((or (memq window-system '(x w32 ns pc))
7263 (memq system-type '(ms-dos windows-nt)))
7264 (let ((bindings
7265 `(([M-delete] [M-backspace])
7266 ([C-M-delete] [C-M-backspace])
7267 ([?\e C-delete] [?\e C-backspace]))))
7269 (if enabled
7270 (progn
7271 (define-key local-function-key-map [delete] [deletechar])
7272 (define-key local-function-key-map [kp-delete] [?\C-d])
7273 (define-key local-function-key-map [backspace] [?\C-?])
7274 (dolist (b bindings)
7275 ;; Not sure if input-decode-map is really right, but
7276 ;; keyboard-translate-table (used below) only works
7277 ;; for integer events, and key-translation-table is
7278 ;; global (like the global-map, used earlier).
7279 (define-key input-decode-map (car b) nil)
7280 (define-key input-decode-map (cadr b) nil)))
7281 (define-key local-function-key-map [delete] [?\C-?])
7282 (define-key local-function-key-map [kp-delete] [?\C-?])
7283 (define-key local-function-key-map [backspace] [?\C-?])
7284 (dolist (b bindings)
7285 (define-key input-decode-map (car b) (cadr b))
7286 (define-key input-decode-map (cadr b) (car b))))))
7288 (if enabled
7289 (progn
7290 (keyboard-translate ?\C-h ?\C-?)
7291 (keyboard-translate ?\C-? ?\C-d))
7292 (keyboard-translate ?\C-h ?\C-h)
7293 (keyboard-translate ?\C-? ?\C-?))))
7295 (if (called-interactively-p 'interactive)
7296 (message "Delete key deletes %s"
7297 (if (eq 1 (terminal-parameter nil 'normal-erase-is-backspace))
7298 "forward" "backward")))))
7300 (defvar vis-mode-saved-buffer-invisibility-spec nil
7301 "Saved value of `buffer-invisibility-spec' when Visible mode is on.")
7303 (define-minor-mode read-only-mode
7304 "Change whether the current buffer is read-only.
7305 With prefix argument ARG, make the buffer read-only if ARG is
7306 positive, otherwise make it writable. If buffer is read-only
7307 and `view-read-only' is non-nil, enter view mode.
7309 Do not call this from a Lisp program unless you really intend to
7310 do the same thing as the \\[read-only-mode] command, including
7311 possibly enabling or disabling View mode. Also, note that this
7312 command works by setting the variable `buffer-read-only', which
7313 does not affect read-only regions caused by text properties. To
7314 ignore read-only status in a Lisp program (whether due to text
7315 properties or buffer state), bind `inhibit-read-only' temporarily
7316 to a non-nil value."
7317 :variable buffer-read-only
7318 (cond
7319 ((and (not buffer-read-only) view-mode)
7320 (View-exit-and-edit)
7321 (make-local-variable 'view-read-only)
7322 (setq view-read-only t)) ; Must leave view mode.
7323 ((and buffer-read-only view-read-only
7324 ;; If view-mode is already active, `view-mode-enter' is a nop.
7325 (not view-mode)
7326 (not (eq (get major-mode 'mode-class) 'special)))
7327 (view-mode-enter))))
7329 (define-minor-mode visible-mode
7330 "Toggle making all invisible text temporarily visible (Visible mode).
7331 With a prefix argument ARG, enable Visible mode if ARG is
7332 positive, and disable it otherwise. If called from Lisp, enable
7333 the mode if ARG is omitted or nil.
7335 This mode works by saving the value of `buffer-invisibility-spec'
7336 and setting it to nil."
7337 :lighter " Vis"
7338 :group 'editing-basics
7339 (when (local-variable-p 'vis-mode-saved-buffer-invisibility-spec)
7340 (setq buffer-invisibility-spec vis-mode-saved-buffer-invisibility-spec)
7341 (kill-local-variable 'vis-mode-saved-buffer-invisibility-spec))
7342 (when visible-mode
7343 (set (make-local-variable 'vis-mode-saved-buffer-invisibility-spec)
7344 buffer-invisibility-spec)
7345 (setq buffer-invisibility-spec nil)))
7347 ;; Minibuffer prompt stuff.
7349 ;;(defun minibuffer-prompt-modification (start end)
7350 ;; (error "You cannot modify the prompt"))
7353 ;;(defun minibuffer-prompt-insertion (start end)
7354 ;; (let ((inhibit-modification-hooks t))
7355 ;; (delete-region start end)
7356 ;; ;; Discard undo information for the text insertion itself
7357 ;; ;; and for the text deletion.above.
7358 ;; (when (consp buffer-undo-list)
7359 ;; (setq buffer-undo-list (cddr buffer-undo-list)))
7360 ;; (message "You cannot modify the prompt")))
7363 ;;(setq minibuffer-prompt-properties
7364 ;; (list 'modification-hooks '(minibuffer-prompt-modification)
7365 ;; 'insert-in-front-hooks '(minibuffer-prompt-insertion)))
7368 ;;;; Problematic external packages.
7370 ;; rms says this should be done by specifying symbols that define
7371 ;; versions together with bad values. This is therefore not as
7372 ;; flexible as it could be. See the thread:
7373 ;; http://lists.gnu.org/archive/html/emacs-devel/2007-08/msg00300.html
7374 (defconst bad-packages-alist
7375 ;; Not sure exactly which semantic versions have problems.
7376 ;; Definitely 2.0pre3, probably all 2.0pre's before this.
7377 '((semantic semantic-version "\\`2\\.0pre[1-3]\\'"
7378 "The version of `semantic' loaded does not work in Emacs 22.
7379 It can cause constant high CPU load.
7380 Upgrade to at least Semantic 2.0pre4 (distributed with CEDET 1.0pre4).")
7381 ;; CUA-mode does not work with GNU Emacs version 22.1 and newer.
7382 ;; Except for version 1.2, all of the 1.x and 2.x version of cua-mode
7383 ;; provided the `CUA-mode' feature. Since this is no longer true,
7384 ;; we can warn the user if the `CUA-mode' feature is ever provided.
7385 (CUA-mode t nil
7386 "CUA-mode is now part of the standard GNU Emacs distribution,
7387 so you can now enable CUA via the Options menu or by customizing `cua-mode'.
7389 You have loaded an older version of CUA-mode which does not work
7390 correctly with this version of Emacs. You should remove the old
7391 version and use the one distributed with Emacs."))
7392 "Alist of packages known to cause problems in this version of Emacs.
7393 Each element has the form (PACKAGE SYMBOL REGEXP STRING).
7394 PACKAGE is either a regular expression to match file names, or a
7395 symbol (a feature name), like for `with-eval-after-load'.
7396 SYMBOL is either the name of a string variable, or `t'. Upon
7397 loading PACKAGE, if SYMBOL is t or matches REGEXP, display a
7398 warning using STRING as the message.")
7400 (defun bad-package-check (package)
7401 "Run a check using the element from `bad-packages-alist' matching PACKAGE."
7402 (condition-case nil
7403 (let* ((list (assoc package bad-packages-alist))
7404 (symbol (nth 1 list)))
7405 (and list
7406 (boundp symbol)
7407 (or (eq symbol t)
7408 (and (stringp (setq symbol (eval symbol)))
7409 (string-match-p (nth 2 list) symbol)))
7410 (display-warning package (nth 3 list) :warning)))
7411 (error nil)))
7413 (dolist (elem bad-packages-alist)
7414 (let ((pkg (car elem)))
7415 (with-eval-after-load pkg
7416 (bad-package-check pkg))))
7419 ;;; Generic dispatcher commands
7421 ;; Macro `define-alternatives' is used to create generic commands.
7422 ;; Generic commands are these (like web, mail, news, encrypt, irc, etc.)
7423 ;; that can have different alternative implementations where choosing
7424 ;; among them is exclusively a matter of user preference.
7426 ;; (define-alternatives COMMAND) creates a new interactive command
7427 ;; M-x COMMAND and a customizable variable COMMAND-alternatives.
7428 ;; Typically, the user will not need to customize this variable; packages
7429 ;; wanting to add alternative implementations should use
7431 ;; ;;;###autoload (push '("My impl name" . my-impl-symbol) COMMAND-alternatives
7433 (defmacro define-alternatives (command &rest customizations)
7434 "Define new command `COMMAND'.
7435 The variable `COMMAND-alternatives' will contain alternative
7436 implementations of COMMAND, so that running `C-u M-x COMMAND'
7437 will allow the user to chose among them.
7438 CUSTOMIZATIONS, if non-nil, should be composed of alternating
7439 `defcustom' keywords and values to add to the declaration of
7440 `COMMAND-alternatives' (typically :group and :version)."
7441 (let* ((command-name (symbol-name command))
7442 (varalt-name (concat command-name "-alternatives"))
7443 (varalt-sym (intern varalt-name))
7444 (varimp-sym (intern (concat command-name "--implementation"))))
7445 `(progn
7447 (defcustom ,varalt-sym nil
7448 ,(format "Alist of alternative implementations for the `%s' command.
7450 Each entry must be a pair (ALTNAME . ALTFUN), where:
7451 ALTNAME - The name shown at user to describe the alternative implementation.
7452 ALTFUN - The function called to implement this alternative."
7453 command-name)
7454 :type '(alist :key-type string :value-type function)
7455 ,@customizations)
7457 (defvar ,varimp-sym nil "Internal use only.")
7459 (defun ,command (&optional arg)
7460 ,(format "Run generic command `%s'.
7461 If used for the first time, or with interactive ARG, ask the user which
7462 implementation to use for `%s'. The variable `%s'
7463 contains the list of implementations currently supported for this command."
7464 command-name command-name varalt-name)
7465 (interactive "P")
7466 (when (or arg (null ,varimp-sym))
7467 (let ((val (completing-read
7468 ,(format "Select implementation for command `%s': " command-name)
7469 ,varalt-sym nil t)))
7470 (unless (string-equal val "")
7471 (customize-save-variable ',varimp-sym
7472 (cdr (assoc-string val ,varalt-sym))))))
7473 (if ,varimp-sym
7474 (funcall ,varimp-sym)
7475 (message ,(format "No implementation selected for command `%s'"
7476 command-name)))))))
7478 (provide 'simple)
7480 ;;; simple.el ends here