Merge from trunk after a lot of time.
[bpt/emacs.git] / lisp / simple.el
1 ;;; simple.el --- basic editing commands for Emacs -*- lexical-binding: t -*-
2
3 ;; Copyright (C) 1985-1987, 1993-2013 Free Software Foundation, Inc.
4
5 ;; Maintainer: FSF
6 ;; Keywords: internal
7 ;; Package: emacs
8
9 ;; This file is part of GNU Emacs.
10
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.
15
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.
20
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/>.
23
24 ;;; Commentary:
25
26 ;; A grab-bag of basic Emacs commands not specifically related to some
27 ;; major mode or to file-handling.
28
29 ;;; Code:
30
31 (declare-function widget-convert "wid-edit" (type &rest args))
32 (declare-function shell-mode "shell" ())
33
34 ;;; From compile.el
35 (defvar compilation-current-error)
36 (defvar compilation-context-lines)
37
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")
45
46 (defgroup killing nil
47 "Killing and yanking commands."
48 :group 'editing)
49
50 (defgroup paren-matching nil
51 "Highlight (un)matching of parens and expressions."
52 :group 'matching)
53 \f
54 ;;; next-error support framework
55
56 (defgroup next-error nil
57 "`next-error' support framework."
58 :group 'compilation
59 :version "22.1")
60
61 (defface next-error
62 '((t (:inherit region)))
63 "Face used to highlight next error locus."
64 :group 'next-error
65 :version "22.1")
66
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")
82
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")
96
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")
105
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)
110
111 (defvar next-error-highlight-timer nil)
112
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)
116
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].")
122
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)
133
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)
141
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.
147
148 If AVOID-CURRENT is non-nil, treat the current buffer
149 as an absolute last resort only.
150
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.
154
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)
165 t)
166 ;; Optionally accept some other buffers.
167 (and extra-test-inclusive
168 (funcall extra-test-inclusive))))))
169
170 (defun next-error-find-buffer (&optional avoid-current
171 extra-test-inclusive
172 extra-test-exclusive)
173 "Return a `next-error' capable buffer.
174
175 If AVOID-CURRENT is non-nil, treat the current buffer
176 as an absolute last resort only.
177
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.
181
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."
185 (or
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")))
225
226 (defun next-error (&optional arg reset)
227 "Visit next `next-error' message and corresponding source code.
228
229 If all the error messages parsed so far have been processed already,
230 the message buffer is checked for new ones.
231
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.
236
237 The RESET argument specifies that we should restart from the beginning.
238
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.
248
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.
253
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))))
265
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)))
275
276 (defalias 'goto-next-locus 'next-error)
277 (defalias 'next-match 'next-error)
278
279 (defun previous-error (&optional n)
280 "Visit previous `next-error' message and corresponding source code.
281
282 Prefix arg N says how many error messages to move backwards (or
283 forwards, if negative).
284
285 This operates on the output from the \\[compile] and \\[grep] commands."
286 (interactive "p")
287 (next-error (- (or n 1))))
288
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))
296
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))
307
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))))
316
317 ;; Internal variable for `next-error-follow-mode-post-command-hook'.
318 (defvar next-error-follow-last-line nil)
319
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)))
332
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))))
343
344 \f
345 ;;;
346
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))
353
354 ;; Special major modes to view specially formatted data rather than files.
355
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))
369
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))
374
375 ;; Making and deleting lines.
376
377 (defvar hard-newline (propertize "\n" 'hard t 'rear-nonsticky '(hard))
378 "Propertized string representing a hard newline character.")
379
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)
427
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)))))
435
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)))
457
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.
462
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)))
481
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))))
501
502 (defalias 'join-line #'delete-indentation) ; easier to find
503
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)))))
543
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")
551
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.
557
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.
561
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)
593
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))
604
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)))
631
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.
636
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.
643
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.
648
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)))))
675
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"))
681
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"))
687
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))
695
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'")))
705 nil
706 (insert ?\s))))
707
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)))))
722
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))
728
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.")
734
735 (defun cycle-spacing (&optional n preserve-nl-back single-shot)
736 "Manipulate spaces around the point in a smart way.
737
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:
742
743 When run for the second time in a sequence, deletes all the
744 spaces it has previously inserted.
745
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.
748
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.
754
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.
758
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))))
787
788 ;; Command run for the second time.
789 ((not (equal orig-pos (point)))
790 (delete-region (point) orig-pos))
791
792 ;; Command run for the third time.
793 (t
794 (insert (cdr cycle-spacing--context))
795 (goto-char (car cycle-spacing--context))
796 (setq cycle-spacing--context nil)))))
797 \f
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.
803
804 If Transient Mark mode is disabled, leave mark at previous
805 position, unless a \\[universal-argument] prefix is supplied.
806
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)))
823
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.
829
830 If Transient Mark mode is disabled, leave mark at previous
831 position, unless a \\[universal-argument] prefix is supplied.
832
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))))
855
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'.
861
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")
869
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.
875
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.
879
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))))
905
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.
911
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))))
927
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)))
938 \f
939
940 ;; Counting lines, one way or another.
941
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.
947
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.
951
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.
955
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)))))
1001
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.
1008
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))
1018 (t
1019 (count-words--message "Region" start end))))
1020
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.
1027
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))
1042 (t
1043 (count-words--buffer-message))))
1044
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)))
1049
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."
1055 str
1056 lines (if (= lines 1) "" "s")
1057 words (if (= words 1) "" "s")
1058 chars (if (= chars 1) "" "s"))))
1059
1060 (define-obsolete-function-alias 'count-lines-region 'count-words-region "24.1")
1061
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))))))
1074
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)))))))
1097
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))))))
1110
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.
1115
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.
1121
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))
1141 (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)
1152 ""
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))))))
1215 \f
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)
1224 m))
1225
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))
1235
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)))
1244
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)
1248
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.")
1253
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")
1260
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")
1267
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")
1274
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)))))
1291
1292 (defvar eval-expression-minibuffer-setup-hook nil
1293 "Hook run by `eval-expression' when entering the minibuffer.")
1294
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))))
1305
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'.
1318
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))
1324
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))))
1337
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)))))))
1349
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)))))))
1366
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)))
1372
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))
1396
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))))))
1402
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")))))
1419
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)))
1424 1))
1425
1426 (defvar extended-command-history nil)
1427
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)))
1460
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")))
1469
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.
1474
1475 To pass a numeric argument to the command you are invoking, specify
1476 the numeric argument to this command.
1477
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))))))))
1517
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))
1555 (t
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")))))))))
1564 \f
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.
1569
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)
1581
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.")
1586
1587 (add-hook 'minibuffer-setup-hook 'minibuffer-history-initialize)
1588
1589 (defun minibuffer-history-initialize ()
1590 (setq minibuffer-text-before-history nil))
1591
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)))
1595
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)
1603
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): "
1616 nil
1617 minibuffer-local-map
1618 nil
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)
1639 t
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))))
1675
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): "
1687 nil
1688 minibuffer-local-map
1689 nil
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)))
1700
1701 (defvar minibuffer-temporary-goal-position nil)
1702
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'.")
1712
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'.")
1718
1719 (make-variable-buffer-local 'minibuffer-default-add-done)
1720
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)))))
1732
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)
1747 1))
1748 0))
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)))))
1787
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))))
1794
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))))
1801
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))))
1811 n)
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)))
1816
1817 (defun previous-complete-history-element (n)
1818 "\
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)))
1824
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)))
1832 \f
1833 ;; isearch minibuffer history
1834 (add-hook 'minibuffer-setup-hook 'minibuffer-history-isearch-setup)
1835
1836 (defvar minibuffer-history-isearch-message-overlay)
1837 (make-variable-buffer-local 'minibuffer-history-isearch-message-overlay)
1838
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))
1851
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)))
1856
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)))
1869 (or
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)))
1885 (t
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)))))))
1903
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 "")))
1928
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))))
1941
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))))
1949
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))
1954
1955 \f
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")
1958
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.")
1963
1964 (defvar undo-in-region nil
1965 "Non-nil if `pending-undo-list' is not just a tail of `buffer-undo-list'.")
1966
1967 (defvar undo-no-redo nil
1968 "If t, `undo' doesn't go through redo entries.")
1969
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.")
1973
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.
1978
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)
2000
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)
2037 1))
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))))
2078
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)))
2085
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)))
2093
2094 (defvar undo-in-progress nil
2095 "Non-nil while performing an undo.
2096 Some change-hooks test this variable to do something different.")
2097
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))))
2112
2113 (defun primitive-undo (n list)
2114 "Undo N records from the front of the list LIST.
2115 Return what remains of the list."
2116
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))))
2123
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)
2223
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))
2228
2229 (defun undo-copy-list-1 (elt)
2230 (if (consp elt)
2231 (cons (car elt) (undo-copy-list-1 (cdr elt)))
2232 elt))
2233
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)))
2246
2247 (defvar undo-adjusted-markers)
2248
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))
2267 (t
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))
2281
2282 (when (/= (cdr delta) 0)
2283 (let ((position (car delta))
2284 (offset (cdr delta)))
2285
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
2292
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)))
2320
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)
2328 t)
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)))))
2356
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)))))
2371
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))))
2383 (t
2384 '(0 . 0)))
2385 '(0 . 0)))
2386
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.
2394
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")
2403
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.
2408
2409 This variable only matters if `undo-ask-before-discard' is non-nil.")
2410 (make-variable-buffer-local 'undo-extra-outer-limit)
2411
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)
2433 t)
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'.
2441
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.
2448
2449 If you did not execute any such command, the situation is
2450 probably due to a bug and you should report it.
2451
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)
2457 t))
2458 \f
2459 (defvar shell-command-history nil
2460 "History list for some commands that read shell commands.
2461
2462 Maximum length of the history list is determined by the value
2463 of `history-length', which see.")
2464
2465 (defvar shell-command-switch (purecopy "-c")
2466 "Switch used to have the shell execute its command line argument.")
2467
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.")
2473
2474 (declare-function mailcap-file-default-commands "mailcap" (files))
2475 (declare-function dired-get-filename "dired" (&optional localp no-error-if-not-filep))
2476
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))))
2493
2494 (declare-function shell-completion-vars "shell" ())
2495
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.")
2502
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
2516 nil
2517 (or hist 'shell-command-history)
2518 args)))
2519
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.
2525
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")
2546
2547 (defun async-shell-command (command &optional output-buffer error-buffer)
2548 "Execute string COMMAND asynchronously in background.
2549
2550 Like `shell-command', but adds `&' at the end of COMMAND
2551 to execute it asynchronously.
2552
2553 The output appears in the buffer `*Async Shell Command*'.
2554 That buffer is in shell mode.
2555
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))
2573
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.
2577
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 `&'.
2582
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.
2589
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.
2593
2594 Noninteractive callers can specify coding systems by binding
2595 `coding-system-for-read' and `coding-system-for-write'.
2596
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).
2604
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.
2612
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.
2616
2617 If there is no output, or if output is inserted in the current buffer,
2618 then `*Shell Command Output*' is deleted.
2619
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.
2625
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)."
2629
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)
2667 t)
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)
2752 ))
2753 ;; Otherwise, command is executed synchronously.
2754 (shell-command-on-region (point) (point) command
2755 output-buffer nil error-buffer)))))))
2756
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.
2761
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.
2765
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.
2768
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.
2774
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)))))
2784 (t
2785 ;; General case
2786 (with-current-buffer
2787 (if (bufferp message)
2788 message
2789 (get-buffer-create (or buffer-name "*Message*")))
2790
2791 (unless (bufferp message)
2792 (erase-buffer)
2793 (insert message))
2794
2795 (let ((lines
2796 (if (= (buffer-size) 0)
2797 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)
2808 (t
2809 1))
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))))
2819 (t
2820 ;; Buffer
2821 (goto-char (point-min))
2822 (display-buffer (current-buffer)
2823 not-this-window frame))))))))
2824
2825
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))))
2833
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.
2841
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'.
2848
2849 Noninteractive callers can specify coding systems by binding
2850 `coding-system-for-read' and `coding-system-for-write'.
2851
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.
2859
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.
2864
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).
2871
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.
2875
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.
2881
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)
2920 t)
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)
2945 t)
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))
2992 (t
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 ))))
2998
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))
3015
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))))
3022
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'.
3028
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.\)
3034
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)))))
3053
3054 (defvar process-file-side-effects t
3055 "Whether a call of `process-file' changes remote files.
3056
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.
3061
3062 You should only ever change this variable with a let-binding;
3063 never with `setq'.")
3064
3065 (defun start-file-process (name buffer program &rest program-args)
3066 "Start a program in a subprocess. Return the process object for it.
3067
3068 Similar to `start-process', but may invoke a file handler based on
3069 `default-directory'. See Info node `(elisp)Magic File Names'.
3070
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.
3075
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))))
3082 \f
3083 ;;;; Process menu
3084
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))
3091
3092 (defvar process-menu-query-only nil)
3093
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))
3105
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"
3139 (or
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))))))
3153
3154 (defun process-menu-visit-buffer (button)
3155 (display-buffer (button-get button 'process-buffer)))
3156
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.
3166
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)
3181 \f
3182 (defvar universal-argument-map
3183 (let ((map (make-sparse-keymap)))
3184 (define-key map [t] 'universal-argument-other-key)
3185 (define-key map (vector meta-prefix-char t) 'universal-argument-other-key)
3186 (define-key map [switch-frame] nil)
3187 (define-key map [?\C-u] 'universal-argument-more)
3188 (define-key map [?-] 'universal-argument-minus)
3189 (define-key map [?0] 'digit-argument)
3190 (define-key map [?1] 'digit-argument)
3191 (define-key map [?2] 'digit-argument)
3192 (define-key map [?3] 'digit-argument)
3193 (define-key map [?4] 'digit-argument)
3194 (define-key map [?5] 'digit-argument)
3195 (define-key map [?6] 'digit-argument)
3196 (define-key map [?7] 'digit-argument)
3197 (define-key map [?8] 'digit-argument)
3198 (define-key map [?9] 'digit-argument)
3199 (define-key map [kp-0] 'digit-argument)
3200 (define-key map [kp-1] 'digit-argument)
3201 (define-key map [kp-2] 'digit-argument)
3202 (define-key map [kp-3] 'digit-argument)
3203 (define-key map [kp-4] 'digit-argument)
3204 (define-key map [kp-5] 'digit-argument)
3205 (define-key map [kp-6] 'digit-argument)
3206 (define-key map [kp-7] 'digit-argument)
3207 (define-key map [kp-8] 'digit-argument)
3208 (define-key map [kp-9] 'digit-argument)
3209 (define-key map [kp-subtract] 'universal-argument-minus)
3210 map)
3211 "Keymap used while processing \\[universal-argument].")
3212
3213 (defvar universal-argument-num-events nil
3214 "Number of argument-specifying events read by `universal-argument'.
3215 `universal-argument-other-key' uses this to discard those events
3216 from (this-command-keys), and reread only the final command.")
3217
3218 (defvar saved-overriding-map t
3219 "The saved value of `overriding-terminal-local-map'.
3220 That variable gets restored to this value on exiting \"universal
3221 argument mode\".")
3222
3223 (defun save&set-overriding-map (map)
3224 "Set `overriding-terminal-local-map' to MAP."
3225 (when (eq saved-overriding-map t)
3226 (setq saved-overriding-map overriding-terminal-local-map)
3227 (setq overriding-terminal-local-map map)))
3228
3229 (defun restore-overriding-map ()
3230 "Restore `overriding-terminal-local-map' to its saved value."
3231 (setq overriding-terminal-local-map saved-overriding-map)
3232 (setq saved-overriding-map t))
3233
3234 (defun universal-argument ()
3235 "Begin a numeric argument for the following command.
3236 Digits or minus sign following \\[universal-argument] make up the numeric argument.
3237 \\[universal-argument] following the digits or minus sign ends the argument.
3238 \\[universal-argument] without digits or minus sign provides 4 as argument.
3239 Repeating \\[universal-argument] without digits or minus sign
3240 multiplies the argument by 4 each time.
3241 For some commands, just \\[universal-argument] by itself serves as a flag
3242 which is different in effect from any particular numeric argument.
3243 These commands include \\[set-mark-command] and \\[start-kbd-macro]."
3244 (interactive)
3245 (setq prefix-arg (list 4))
3246 (setq universal-argument-num-events (length (this-command-keys)))
3247 (save&set-overriding-map universal-argument-map))
3248
3249 ;; A subsequent C-u means to multiply the factor by 4 if we've typed
3250 ;; nothing but C-u's; otherwise it means to terminate the prefix arg.
3251 (defun universal-argument-more (arg)
3252 (interactive "P")
3253 (if (consp arg)
3254 (setq prefix-arg (list (* 4 (car arg))))
3255 (if (eq arg '-)
3256 (setq prefix-arg (list -4))
3257 (setq prefix-arg arg)
3258 (restore-overriding-map)))
3259 (setq universal-argument-num-events (length (this-command-keys))))
3260
3261 (defun negative-argument (arg)
3262 "Begin a negative numeric argument for the next command.
3263 \\[universal-argument] following digits or minus sign ends the argument."
3264 (interactive "P")
3265 (cond ((integerp arg)
3266 (setq prefix-arg (- arg)))
3267 ((eq arg '-)
3268 (setq prefix-arg nil))
3269 (t
3270 (setq prefix-arg '-)))
3271 (setq universal-argument-num-events (length (this-command-keys)))
3272 (save&set-overriding-map universal-argument-map))
3273
3274 (defun digit-argument (arg)
3275 "Part of the numeric argument for the next command.
3276 \\[universal-argument] following digits or minus sign ends the argument."
3277 (interactive "P")
3278 (let* ((char (if (integerp last-command-event)
3279 last-command-event
3280 (get last-command-event 'ascii-character)))
3281 (digit (- (logand char ?\177) ?0)))
3282 (cond ((integerp arg)
3283 (setq prefix-arg (+ (* arg 10)
3284 (if (< arg 0) (- digit) digit))))
3285 ((eq arg '-)
3286 ;; Treat -0 as just -, so that -01 will work.
3287 (setq prefix-arg (if (zerop digit) '- (- digit))))
3288 (t
3289 (setq prefix-arg digit))))
3290 (setq universal-argument-num-events (length (this-command-keys)))
3291 (save&set-overriding-map universal-argument-map))
3292
3293 ;; For backward compatibility, minus with no modifiers is an ordinary
3294 ;; command if digits have already been entered.
3295 (defun universal-argument-minus (arg)
3296 (interactive "P")
3297 (if (integerp arg)
3298 (universal-argument-other-key arg)
3299 (negative-argument arg)))
3300
3301 ;; Anything else terminates the argument and is left in the queue to be
3302 ;; executed as a command.
3303 (defun universal-argument-other-key (arg)
3304 (interactive "P")
3305 (setq prefix-arg arg)
3306 (let* ((key (this-command-keys))
3307 (keylist (listify-key-sequence key)))
3308 (setq unread-command-events
3309 (append (nthcdr universal-argument-num-events keylist)
3310 unread-command-events)))
3311 (reset-this-command-lengths)
3312 (restore-overriding-map))
3313 \f
3314
3315 (defvar filter-buffer-substring-functions nil
3316 "This variable is a wrapper hook around `filter-buffer-substring'.")
3317 (make-obsolete-variable 'filter-buffer-substring-functions
3318 'filter-buffer-substring-function "24.4")
3319
3320 (defvar filter-buffer-substring-function #'buffer-substring--filter
3321 "Function to perform the filtering in `filter-buffer-substring'.
3322 The function is called with 3 arguments:
3323 \(BEG END DELETE). The arguments BEG, END, and DELETE are the same
3324 as those of `filter-buffer-substring' in each case.
3325 It should return the buffer substring between BEG and END, after filtering.")
3326
3327 (defvar buffer-substring-filters nil
3328 "List of filter functions for `filter-buffer-substring'.
3329 Each function must accept a single argument, a string, and return
3330 a string. The buffer substring is passed to the first function
3331 in the list, and the return value of each function is passed to
3332 the next.
3333 As a special convention, point is set to the start of the buffer text
3334 being operated on (i.e., the first argument of `filter-buffer-substring')
3335 before these functions are called.")
3336 (make-obsolete-variable 'buffer-substring-filters
3337 'filter-buffer-substring-function "24.1")
3338
3339 (defun filter-buffer-substring (beg end &optional delete)
3340 "Return the buffer substring between BEG and END, after filtering.
3341 The hook `filter-buffer-substring-function' performs the actual filtering.
3342 By default, no filtering is done.
3343
3344 If DELETE is non-nil, the text between BEG and END is deleted
3345 from the buffer.
3346
3347 This function should be used instead of `buffer-substring',
3348 `buffer-substring-no-properties', or `delete-and-extract-region'
3349 when you want to allow filtering to take place. For example,
3350 major or minor modes can use `filter-buffer-substring-function' to
3351 extract characters that are special to a buffer, and should not
3352 be copied into other buffers."
3353 (funcall filter-buffer-substring-function beg end delete))
3354
3355 ;; FIXME: `with-wrapper-hook' is obsolete
3356 (defun buffer-substring--filter (beg end &optional delete)
3357 (with-wrapper-hook filter-buffer-substring-functions (beg end delete)
3358 (cond
3359 ((or delete buffer-substring-filters)
3360 (save-excursion
3361 (goto-char beg)
3362 (let ((string (if delete (delete-and-extract-region beg end)
3363 (buffer-substring beg end))))
3364 (dolist (filter buffer-substring-filters)
3365 (setq string (funcall filter string)))
3366 string)))
3367 (t
3368 (buffer-substring beg end)))))
3369
3370
3371 ;;;; Window system cut and paste hooks.
3372
3373 (defvar interprogram-cut-function nil
3374 "Function to call to make a killed region available to other programs.
3375 Most window systems provide a facility for cutting and pasting
3376 text between different programs, such as the clipboard on X and
3377 MS-Windows, or the pasteboard on Nextstep/Mac OS.
3378
3379 This variable holds a function that Emacs calls whenever text is
3380 put in the kill ring, to make the new kill available to other
3381 programs. The function takes one argument, TEXT, which is a
3382 string containing the text which should be made available.")
3383
3384 (defvar interprogram-paste-function nil
3385 "Function to call to get text cut from other programs.
3386 Most window systems provide a facility for cutting and pasting
3387 text between different programs, such as the clipboard on X and
3388 MS-Windows, or the pasteboard on Nextstep/Mac OS.
3389
3390 This variable holds a function that Emacs calls to obtain text
3391 that other programs have provided for pasting. The function is
3392 called with no arguments. If no other program has provided text
3393 to paste, the function should return nil (in which case the
3394 caller, usually `current-kill', should use the top of the Emacs
3395 kill ring). If another program has provided text to paste, the
3396 function should return that text as a string (in which case the
3397 caller should put this string in the kill ring as the latest
3398 kill).
3399
3400 The function may also return a list of strings if the window
3401 system supports multiple selections. The first string will be
3402 used as the pasted text, but the other will be placed in the kill
3403 ring for easy access via `yank-pop'.
3404
3405 Note that the function should return a string only if a program
3406 other than Emacs has provided a string for pasting; if Emacs
3407 provided the most recent string, the function should return nil.
3408 If it is difficult to tell whether Emacs or some other program
3409 provided the current string, it is probably good enough to return
3410 nil if the string is equal (according to `string=') to the last
3411 text Emacs provided.")
3412 \f
3413
3414
3415 ;;;; The kill ring data structure.
3416
3417 (defvar kill-ring nil
3418 "List of killed text sequences.
3419 Since the kill ring is supposed to interact nicely with cut-and-paste
3420 facilities offered by window systems, use of this variable should
3421 interact nicely with `interprogram-cut-function' and
3422 `interprogram-paste-function'. The functions `kill-new',
3423 `kill-append', and `current-kill' are supposed to implement this
3424 interaction; you may want to use them instead of manipulating the kill
3425 ring directly.")
3426
3427 (defcustom kill-ring-max 60
3428 "Maximum length of kill ring before oldest elements are thrown away."
3429 :type 'integer
3430 :group 'killing)
3431
3432 (defvar kill-ring-yank-pointer nil
3433 "The tail of the kill ring whose car is the last thing yanked.")
3434
3435 (defcustom save-interprogram-paste-before-kill nil
3436 "Save clipboard strings into kill ring before replacing them.
3437 When one selects something in another program to paste it into Emacs,
3438 but kills something in Emacs before actually pasting it,
3439 this selection is gone unless this variable is non-nil,
3440 in which case the other program's selection is saved in the `kill-ring'
3441 before the Emacs kill and one can still paste it using \\[yank] \\[yank-pop]."
3442 :type 'boolean
3443 :group 'killing
3444 :version "23.2")
3445
3446 (defcustom kill-do-not-save-duplicates nil
3447 "Do not add a new string to `kill-ring' if it duplicates the last one.
3448 The comparison is done using `equal-including-properties'."
3449 :type 'boolean
3450 :group 'killing
3451 :version "23.2")
3452
3453 (defun kill-new (string &optional replace yank-handler)
3454 "Make STRING the latest kill in the kill ring.
3455 Set `kill-ring-yank-pointer' to point to it.
3456 If `interprogram-cut-function' is non-nil, apply it to STRING.
3457 Optional second argument REPLACE non-nil means that STRING will replace
3458 the front of the kill ring, rather than being added to the list.
3459
3460 When `save-interprogram-paste-before-kill' and `interprogram-paste-function'
3461 are non-nil, saves the interprogram paste string(s) into `kill-ring' before
3462 STRING.
3463
3464 When the yank handler has a non-nil PARAM element, the original STRING
3465 argument is not used by `insert-for-yank'. However, since Lisp code
3466 may access and use elements from the kill ring directly, the STRING
3467 argument should still be a \"useful\" string for such uses."
3468 (if (> (length string) 0)
3469 (if yank-handler
3470 (put-text-property 0 (length string)
3471 'yank-handler yank-handler string))
3472 (if yank-handler
3473 (signal 'args-out-of-range
3474 (list string "yank-handler specified for empty string"))))
3475 (unless (and kill-do-not-save-duplicates
3476 ;; Due to text properties such as 'yank-handler that
3477 ;; can alter the contents to yank, comparison using
3478 ;; `equal' is unsafe.
3479 (equal-including-properties string (car kill-ring)))
3480 (if (fboundp 'menu-bar-update-yank-menu)
3481 (menu-bar-update-yank-menu string (and replace (car kill-ring)))))
3482 (when save-interprogram-paste-before-kill
3483 (let ((interprogram-paste (and interprogram-paste-function
3484 (funcall interprogram-paste-function))))
3485 (when interprogram-paste
3486 (dolist (s (if (listp interprogram-paste)
3487 (nreverse interprogram-paste)
3488 (list interprogram-paste)))
3489 (unless (and kill-do-not-save-duplicates
3490 (equal-including-properties s (car kill-ring)))
3491 (push s kill-ring))))))
3492 (unless (and kill-do-not-save-duplicates
3493 (equal-including-properties string (car kill-ring)))
3494 (if (and replace kill-ring)
3495 (setcar kill-ring string)
3496 (push string kill-ring)
3497 (if (> (length kill-ring) kill-ring-max)
3498 (setcdr (nthcdr (1- kill-ring-max) kill-ring) nil))))
3499 (setq kill-ring-yank-pointer kill-ring)
3500 (if interprogram-cut-function
3501 (funcall interprogram-cut-function string)))
3502 (set-advertised-calling-convention
3503 'kill-new '(string &optional replace) "23.3")
3504
3505 (defun kill-append (string before-p &optional yank-handler)
3506 "Append STRING to the end of the latest kill in the kill ring.
3507 If BEFORE-P is non-nil, prepend STRING to the kill.
3508 If `interprogram-cut-function' is set, pass the resulting kill to it."
3509 (let* ((cur (car kill-ring)))
3510 (kill-new (if before-p (concat string cur) (concat cur string))
3511 (or (= (length cur) 0)
3512 (equal yank-handler (get-text-property 0 'yank-handler cur)))
3513 yank-handler)))
3514 (set-advertised-calling-convention 'kill-append '(string before-p) "23.3")
3515
3516 (defcustom yank-pop-change-selection nil
3517 "Whether rotating the kill ring changes the window system selection.
3518 If non-nil, whenever the kill ring is rotated (usually via the
3519 `yank-pop' command), Emacs also calls `interprogram-cut-function'
3520 to copy the new kill to the window system selection."
3521 :type 'boolean
3522 :group 'killing
3523 :version "23.1")
3524
3525 (defun current-kill (n &optional do-not-move)
3526 "Rotate the yanking point by N places, and then return that kill.
3527 If N is zero and `interprogram-paste-function' is set to a
3528 function that returns a string or a list of strings, and if that
3529 function doesn't return nil, then that string (or list) is added
3530 to the front of the kill ring and the string (or first string in
3531 the list) is returned as the latest kill.
3532
3533 If N is not zero, and if `yank-pop-change-selection' is
3534 non-nil, use `interprogram-cut-function' to transfer the
3535 kill at the new yank point into the window system selection.
3536
3537 If optional arg DO-NOT-MOVE is non-nil, then don't actually
3538 move the yanking point; just return the Nth kill forward."
3539
3540 (let ((interprogram-paste (and (= n 0)
3541 interprogram-paste-function
3542 (funcall interprogram-paste-function))))
3543 (if interprogram-paste
3544 (progn
3545 ;; Disable the interprogram cut function when we add the new
3546 ;; text to the kill ring, so Emacs doesn't try to own the
3547 ;; selection, with identical text.
3548 (let ((interprogram-cut-function nil))
3549 (if (listp interprogram-paste)
3550 (mapc 'kill-new (nreverse interprogram-paste))
3551 (kill-new interprogram-paste)))
3552 (car kill-ring))
3553 (or kill-ring (error "Kill ring is empty"))
3554 (let ((ARGth-kill-element
3555 (nthcdr (mod (- n (length kill-ring-yank-pointer))
3556 (length kill-ring))
3557 kill-ring)))
3558 (unless do-not-move
3559 (setq kill-ring-yank-pointer ARGth-kill-element)
3560 (when (and yank-pop-change-selection
3561 (> n 0)
3562 interprogram-cut-function)
3563 (funcall interprogram-cut-function (car ARGth-kill-element))))
3564 (car ARGth-kill-element)))))
3565
3566
3567
3568 ;;;; Commands for manipulating the kill ring.
3569
3570 (defcustom kill-read-only-ok nil
3571 "Non-nil means don't signal an error for killing read-only text."
3572 :type 'boolean
3573 :group 'killing)
3574
3575 (defun kill-region (beg end &optional yank-handler)
3576 "Kill (\"cut\") text between point and mark.
3577 This deletes the text from the buffer and saves it in the kill ring.
3578 The command \\[yank] can retrieve it from there.
3579 \(If you want to save the region without killing it, use \\[kill-ring-save].)
3580
3581 If you want to append the killed region to the last killed text,
3582 use \\[append-next-kill] before \\[kill-region].
3583
3584 If the buffer is read-only, Emacs will beep and refrain from deleting
3585 the text, but put the text in the kill ring anyway. This means that
3586 you can use the killing commands to copy text from a read-only buffer.
3587
3588 Lisp programs should use this function for killing text.
3589 (To delete text, use `delete-region'.)
3590 Supply two arguments, character positions indicating the stretch of text
3591 to be killed.
3592 Any command that calls this function is a \"kill command\".
3593 If the previous command was also a kill command,
3594 the text killed this time appends to the text killed last time
3595 to make one entry in the kill ring."
3596 ;; Pass point first, then mark, because the order matters
3597 ;; when calling kill-append.
3598 (interactive (list (point) (mark)))
3599 (unless (and beg end)
3600 (error "The mark is not set now, so there is no region"))
3601 (condition-case nil
3602 (let ((string (filter-buffer-substring beg end t)))
3603 (when string ;STRING is nil if BEG = END
3604 ;; Add that string to the kill ring, one way or another.
3605 (if (eq last-command 'kill-region)
3606 (kill-append string (< end beg) yank-handler)
3607 (kill-new string nil yank-handler)))
3608 (when (or string (eq last-command 'kill-region))
3609 (setq this-command 'kill-region))
3610 (setq deactivate-mark t)
3611 nil)
3612 ((buffer-read-only text-read-only)
3613 ;; The code above failed because the buffer, or some of the characters
3614 ;; in the region, are read-only.
3615 ;; We should beep, in case the user just isn't aware of this.
3616 ;; However, there's no harm in putting
3617 ;; the region's text in the kill ring, anyway.
3618 (copy-region-as-kill beg end)
3619 ;; Set this-command now, so it will be set even if we get an error.
3620 (setq this-command 'kill-region)
3621 ;; This should barf, if appropriate, and give us the correct error.
3622 (if kill-read-only-ok
3623 (progn (message "Read only text copied to kill ring") nil)
3624 ;; Signal an error if the buffer is read-only.
3625 (barf-if-buffer-read-only)
3626 ;; If the buffer isn't read-only, the text is.
3627 (signal 'text-read-only (list (current-buffer)))))))
3628 (set-advertised-calling-convention 'kill-region '(beg end) "23.3")
3629
3630 ;; copy-region-as-kill no longer sets this-command, because it's confusing
3631 ;; to get two copies of the text when the user accidentally types M-w and
3632 ;; then corrects it with the intended C-w.
3633 (defun copy-region-as-kill (beg end)
3634 "Save the region as if killed, but don't kill it.
3635 In Transient Mark mode, deactivate the mark.
3636 If `interprogram-cut-function' is non-nil, also save the text for a window
3637 system cut and paste.
3638
3639 This command's old key binding has been given to `kill-ring-save'."
3640 (interactive "r")
3641 (if (eq last-command 'kill-region)
3642 (kill-append (filter-buffer-substring beg end) (< end beg))
3643 (kill-new (filter-buffer-substring beg end)))
3644 (setq deactivate-mark t)
3645 nil)
3646
3647 (defun kill-ring-save (beg end)
3648 "Save the region as if killed, but don't kill it.
3649 In Transient Mark mode, deactivate the mark.
3650 If `interprogram-cut-function' is non-nil, also save the text for a window
3651 system cut and paste.
3652
3653 If you want to append the killed line to the last killed text,
3654 use \\[append-next-kill] before \\[kill-ring-save].
3655
3656 This command is similar to `copy-region-as-kill', except that it gives
3657 visual feedback indicating the extent of the region being copied."
3658 (interactive "r")
3659 (copy-region-as-kill beg end)
3660 ;; This use of called-interactively-p is correct because the code it
3661 ;; controls just gives the user visual feedback.
3662 (if (called-interactively-p 'interactive)
3663 (indicate-copied-region)))
3664
3665 (defun indicate-copied-region (&optional message-len)
3666 "Indicate that the region text has been copied interactively.
3667 If the mark is visible in the selected window, blink the cursor
3668 between point and mark if there is currently no active region
3669 highlighting.
3670
3671 If the mark lies outside the selected window, display an
3672 informative message containing a sample of the copied text. The
3673 optional argument MESSAGE-LEN, if non-nil, specifies the length
3674 of this sample text; it defaults to 40."
3675 (let ((mark (mark t))
3676 (point (point))
3677 ;; Inhibit quitting so we can make a quit here
3678 ;; look like a C-g typed as a command.
3679 (inhibit-quit t))
3680 (if (pos-visible-in-window-p mark (selected-window))
3681 ;; Swap point-and-mark quickly so as to show the region that
3682 ;; was selected. Don't do it if the region is highlighted.
3683 (unless (and (region-active-p)
3684 (face-background 'region))
3685 ;; Swap point and mark.
3686 (set-marker (mark-marker) (point) (current-buffer))
3687 (goto-char mark)
3688 (sit-for blink-matching-delay)
3689 ;; Swap back.
3690 (set-marker (mark-marker) mark (current-buffer))
3691 (goto-char point)
3692 ;; If user quit, deactivate the mark
3693 ;; as C-g would as a command.
3694 (and quit-flag mark-active
3695 (deactivate-mark)))
3696 (let ((len (min (abs (- mark point))
3697 (or message-len 40))))
3698 (if (< point mark)
3699 ;; Don't say "killed"; that is misleading.
3700 (message "Saved text until \"%s\""
3701 (buffer-substring-no-properties (- mark len) mark))
3702 (message "Saved text from \"%s\""
3703 (buffer-substring-no-properties mark (+ mark len))))))))
3704
3705 (defun append-next-kill (&optional interactive)
3706 "Cause following command, if it kills, to append to previous kill.
3707 The argument is used for internal purposes; do not supply one."
3708 (interactive "p")
3709 ;; We don't use (interactive-p), since that breaks kbd macros.
3710 (if interactive
3711 (progn
3712 (setq this-command 'kill-region)
3713 (message "If the next command is a kill, it will append"))
3714 (setq last-command 'kill-region)))
3715 \f
3716 ;; Yanking.
3717
3718 (defcustom yank-handled-properties
3719 '((font-lock-face . yank-handle-font-lock-face-property)
3720 (category . yank-handle-category-property))
3721 "List of special text property handling conditions for yanking.
3722 Each element should have the form (PROP . FUN), where PROP is a
3723 property symbol and FUN is a function. When the `yank' command
3724 inserts text into the buffer, it scans the inserted text for
3725 stretches of text that have `eq' values of the text property
3726 PROP; for each such stretch of text, FUN is called with three
3727 arguments: the property's value in that text, and the start and
3728 end positions of the text.
3729
3730 This is done prior to removing the properties specified by
3731 `yank-excluded-properties'."
3732 :group 'killing
3733 :version "24.3")
3734
3735 ;; This is actually used in subr.el but defcustom does not work there.
3736 (defcustom yank-excluded-properties
3737 '(category field follow-link fontified font-lock-face help-echo
3738 intangible invisible keymap local-map mouse-face read-only
3739 yank-handler)
3740 "Text properties to discard when yanking.
3741 The value should be a list of text properties to discard or t,
3742 which means to discard all text properties.
3743
3744 See also `yank-handled-properties'."
3745 :type '(choice (const :tag "All" t) (repeat symbol))
3746 :group 'killing
3747 :version "24.3")
3748
3749 (defvar yank-window-start nil)
3750 (defvar yank-undo-function nil
3751 "If non-nil, function used by `yank-pop' to delete last stretch of yanked text.
3752 Function is called with two parameters, START and END corresponding to
3753 the value of the mark and point; it is guaranteed that START <= END.
3754 Normally set from the UNDO element of a yank-handler; see `insert-for-yank'.")
3755
3756 (defun yank-pop (&optional arg)
3757 "Replace just-yanked stretch of killed text with a different stretch.
3758 This command is allowed only immediately after a `yank' or a `yank-pop'.
3759 At such a time, the region contains a stretch of reinserted
3760 previously-killed text. `yank-pop' deletes that text and inserts in its
3761 place a different stretch of killed text.
3762
3763 With no argument, the previous kill is inserted.
3764 With argument N, insert the Nth previous kill.
3765 If N is negative, this is a more recent kill.
3766
3767 The sequence of kills wraps around, so that after the oldest one
3768 comes the newest one.
3769
3770 When this command inserts killed text into the buffer, it honors
3771 `yank-excluded-properties' and `yank-handler' as described in the
3772 doc string for `insert-for-yank-1', which see."
3773 (interactive "*p")
3774 (if (not (eq last-command 'yank))
3775 (error "Previous command was not a yank"))
3776 (setq this-command 'yank)
3777 (unless arg (setq arg 1))
3778 (let ((inhibit-read-only t)
3779 (before (< (point) (mark t))))
3780 (if before
3781 (funcall (or yank-undo-function 'delete-region) (point) (mark t))
3782 (funcall (or yank-undo-function 'delete-region) (mark t) (point)))
3783 (setq yank-undo-function nil)
3784 (set-marker (mark-marker) (point) (current-buffer))
3785 (insert-for-yank (current-kill arg))
3786 ;; Set the window start back where it was in the yank command,
3787 ;; if possible.
3788 (set-window-start (selected-window) yank-window-start t)
3789 (if before
3790 ;; This is like exchange-point-and-mark, but doesn't activate the mark.
3791 ;; It is cleaner to avoid activation, even though the command
3792 ;; loop would deactivate the mark because we inserted text.
3793 (goto-char (prog1 (mark t)
3794 (set-marker (mark-marker) (point) (current-buffer))))))
3795 nil)
3796
3797 (defun yank (&optional arg)
3798 "Reinsert (\"paste\") the last stretch of killed text.
3799 More precisely, reinsert the most recent kill, which is the
3800 stretch of killed text most recently killed OR yanked. Put point
3801 at the end, and set mark at the beginning without activating it.
3802 With just \\[universal-argument] as argument, put point at beginning, and mark at end.
3803 With argument N, reinsert the Nth most recent kill.
3804
3805 When this command inserts text into the buffer, it honors the
3806 `yank-handled-properties' and `yank-excluded-properties'
3807 variables, and the `yank-handler' text property. See
3808 `insert-for-yank-1' for details.
3809
3810 See also the command `yank-pop' (\\[yank-pop])."
3811 (interactive "*P")
3812 (setq yank-window-start (window-start))
3813 ;; If we don't get all the way thru, make last-command indicate that
3814 ;; for the following command.
3815 (setq this-command t)
3816 (push-mark (point))
3817 (insert-for-yank (current-kill (cond
3818 ((listp arg) 0)
3819 ((eq arg '-) -2)
3820 (t (1- arg)))))
3821 (if (consp arg)
3822 ;; This is like exchange-point-and-mark, but doesn't activate the mark.
3823 ;; It is cleaner to avoid activation, even though the command
3824 ;; loop would deactivate the mark because we inserted text.
3825 (goto-char (prog1 (mark t)
3826 (set-marker (mark-marker) (point) (current-buffer)))))
3827 ;; If we do get all the way thru, make this-command indicate that.
3828 (if (eq this-command t)
3829 (setq this-command 'yank))
3830 nil)
3831
3832 (defun rotate-yank-pointer (arg)
3833 "Rotate the yanking point in the kill ring.
3834 With ARG, rotate that many kills forward (or backward, if negative)."
3835 (interactive "p")
3836 (current-kill arg))
3837 \f
3838 ;; Some kill commands.
3839
3840 ;; Internal subroutine of delete-char
3841 (defun kill-forward-chars (arg)
3842 (if (listp arg) (setq arg (car arg)))
3843 (if (eq arg '-) (setq arg -1))
3844 (kill-region (point) (+ (point) arg)))
3845
3846 ;; Internal subroutine of backward-delete-char
3847 (defun kill-backward-chars (arg)
3848 (if (listp arg) (setq arg (car arg)))
3849 (if (eq arg '-) (setq arg -1))
3850 (kill-region (point) (- (point) arg)))
3851
3852 (defcustom backward-delete-char-untabify-method 'untabify
3853 "The method for untabifying when deleting backward.
3854 Can be `untabify' -- turn a tab to many spaces, then delete one space;
3855 `hungry' -- delete all whitespace, both tabs and spaces;
3856 `all' -- delete all whitespace, including tabs, spaces and newlines;
3857 nil -- just delete one character."
3858 :type '(choice (const untabify) (const hungry) (const all) (const nil))
3859 :version "20.3"
3860 :group 'killing)
3861
3862 (defun backward-delete-char-untabify (arg &optional killp)
3863 "Delete characters backward, changing tabs into spaces.
3864 The exact behavior depends on `backward-delete-char-untabify-method'.
3865 Delete ARG chars, and kill (save in kill ring) if KILLP is non-nil.
3866 Interactively, ARG is the prefix arg (default 1)
3867 and KILLP is t if a prefix arg was specified."
3868 (interactive "*p\nP")
3869 (when (eq backward-delete-char-untabify-method 'untabify)
3870 (let ((count arg))
3871 (save-excursion
3872 (while (and (> count 0) (not (bobp)))
3873 (if (= (preceding-char) ?\t)
3874 (let ((col (current-column)))
3875 (forward-char -1)
3876 (setq col (- col (current-column)))
3877 (insert-char ?\s col)
3878 (delete-char 1)))
3879 (forward-char -1)
3880 (setq count (1- count))))))
3881 (let* ((skip (cond ((eq backward-delete-char-untabify-method 'hungry) " \t")
3882 ((eq backward-delete-char-untabify-method 'all)
3883 " \t\n\r")))
3884 (n (if skip
3885 (let* ((oldpt (point))
3886 (wh (- oldpt (save-excursion
3887 (skip-chars-backward skip)
3888 (constrain-to-field nil oldpt)))))
3889 (+ arg (if (zerop wh) 0 (1- wh))))
3890 arg)))
3891 ;; Avoid warning about delete-backward-char
3892 (with-no-warnings (delete-backward-char n killp))))
3893
3894 (defun zap-to-char (arg char)
3895 "Kill up to and including ARGth occurrence of CHAR.
3896 Case is ignored if `case-fold-search' is non-nil in the current buffer.
3897 Goes backward if ARG is negative; error if CHAR not found."
3898 (interactive (list (prefix-numeric-value current-prefix-arg)
3899 (read-char "Zap to char: " t)))
3900 ;; Avoid "obsolete" warnings for translation-table-for-input.
3901 (with-no-warnings
3902 (if (char-table-p translation-table-for-input)
3903 (setq char (or (aref translation-table-for-input char) char))))
3904 (kill-region (point) (progn
3905 (search-forward (char-to-string char) nil nil arg)
3906 (point))))
3907
3908 ;; kill-line and its subroutines.
3909
3910 (defcustom kill-whole-line nil
3911 "If non-nil, `kill-line' with no arg at start of line kills the whole line."
3912 :type 'boolean
3913 :group 'killing)
3914
3915 (defun kill-line (&optional arg)
3916 "Kill the rest of the current line; if no nonblanks there, kill thru newline.
3917 With prefix argument ARG, kill that many lines from point.
3918 Negative arguments kill lines backward.
3919 With zero argument, kills the text before point on the current line.
3920
3921 When calling from a program, nil means \"no arg\",
3922 a number counts as a prefix arg.
3923
3924 To kill a whole line, when point is not at the beginning, type \
3925 \\[move-beginning-of-line] \\[kill-line] \\[kill-line].
3926
3927 If `show-trailing-whitespace' is non-nil, this command will just
3928 kill the rest of the current line, even if there are only
3929 nonblanks there.
3930
3931 If option `kill-whole-line' is non-nil, then this command kills the whole line
3932 including its terminating newline, when used at the beginning of a line
3933 with no argument. As a consequence, you can always kill a whole line
3934 by typing \\[move-beginning-of-line] \\[kill-line].
3935
3936 If you want to append the killed line to the last killed text,
3937 use \\[append-next-kill] before \\[kill-line].
3938
3939 If the buffer is read-only, Emacs will beep and refrain from deleting
3940 the line, but put the line in the kill ring anyway. This means that
3941 you can use this command to copy text from a read-only buffer.
3942 \(If the variable `kill-read-only-ok' is non-nil, then this won't
3943 even beep.)"
3944 (interactive "P")
3945 (kill-region (point)
3946 ;; It is better to move point to the other end of the kill
3947 ;; before killing. That way, in a read-only buffer, point
3948 ;; moves across the text that is copied to the kill ring.
3949 ;; The choice has no effect on undo now that undo records
3950 ;; the value of point from before the command was run.
3951 (progn
3952 (if arg
3953 (forward-visible-line (prefix-numeric-value arg))
3954 (if (eobp)
3955 (signal 'end-of-buffer nil))
3956 (let ((end
3957 (save-excursion
3958 (end-of-visible-line) (point))))
3959 (if (or (save-excursion
3960 ;; If trailing whitespace is visible,
3961 ;; don't treat it as nothing.
3962 (unless show-trailing-whitespace
3963 (skip-chars-forward " \t" end))
3964 (= (point) end))
3965 (and kill-whole-line (bolp)))
3966 (forward-visible-line 1)
3967 (goto-char end))))
3968 (point))))
3969
3970 (defun kill-whole-line (&optional arg)
3971 "Kill current line.
3972 With prefix ARG, kill that many lines starting from the current line.
3973 If ARG is negative, kill backward. Also kill the preceding newline.
3974 \(This is meant to make \\[repeat] work well with negative arguments.\)
3975 If ARG is zero, kill current line but exclude the trailing newline."
3976 (interactive "p")
3977 (or arg (setq arg 1))
3978 (if (and (> arg 0) (eobp) (save-excursion (forward-visible-line 0) (eobp)))
3979 (signal 'end-of-buffer nil))
3980 (if (and (< arg 0) (bobp) (save-excursion (end-of-visible-line) (bobp)))
3981 (signal 'beginning-of-buffer nil))
3982 (unless (eq last-command 'kill-region)
3983 (kill-new "")
3984 (setq last-command 'kill-region))
3985 (cond ((zerop arg)
3986 ;; We need to kill in two steps, because the previous command
3987 ;; could have been a kill command, in which case the text
3988 ;; before point needs to be prepended to the current kill
3989 ;; ring entry and the text after point appended. Also, we
3990 ;; need to use save-excursion to avoid copying the same text
3991 ;; twice to the kill ring in read-only buffers.
3992 (save-excursion
3993 (kill-region (point) (progn (forward-visible-line 0) (point))))
3994 (kill-region (point) (progn (end-of-visible-line) (point))))
3995 ((< arg 0)
3996 (save-excursion
3997 (kill-region (point) (progn (end-of-visible-line) (point))))
3998 (kill-region (point)
3999 (progn (forward-visible-line (1+ arg))
4000 (unless (bobp) (backward-char))
4001 (point))))
4002 (t
4003 (save-excursion
4004 (kill-region (point) (progn (forward-visible-line 0) (point))))
4005 (kill-region (point)
4006 (progn (forward-visible-line arg) (point))))))
4007
4008 (defun forward-visible-line (arg)
4009 "Move forward by ARG lines, ignoring currently invisible newlines only.
4010 If ARG is negative, move backward -ARG lines.
4011 If ARG is zero, move to the beginning of the current line."
4012 (condition-case nil
4013 (if (> arg 0)
4014 (progn
4015 (while (> arg 0)
4016 (or (zerop (forward-line 1))
4017 (signal 'end-of-buffer nil))
4018 ;; If the newline we just skipped is invisible,
4019 ;; don't count it.
4020 (let ((prop
4021 (get-char-property (1- (point)) 'invisible)))
4022 (if (if (eq buffer-invisibility-spec t)
4023 prop
4024 (or (memq prop buffer-invisibility-spec)
4025 (assq prop buffer-invisibility-spec)))
4026 (setq arg (1+ arg))))
4027 (setq arg (1- arg)))
4028 ;; If invisible text follows, and it is a number of complete lines,
4029 ;; skip it.
4030 (let ((opoint (point)))
4031 (while (and (not (eobp))
4032 (let ((prop
4033 (get-char-property (point) 'invisible)))
4034 (if (eq buffer-invisibility-spec t)
4035 prop
4036 (or (memq prop buffer-invisibility-spec)
4037 (assq prop buffer-invisibility-spec)))))
4038 (goto-char
4039 (if (get-text-property (point) 'invisible)
4040 (or (next-single-property-change (point) 'invisible)
4041 (point-max))
4042 (next-overlay-change (point)))))
4043 (unless (bolp)
4044 (goto-char opoint))))
4045 (let ((first t))
4046 (while (or first (<= arg 0))
4047 (if first
4048 (beginning-of-line)
4049 (or (zerop (forward-line -1))
4050 (signal 'beginning-of-buffer nil)))
4051 ;; If the newline we just moved to is invisible,
4052 ;; don't count it.
4053 (unless (bobp)
4054 (let ((prop
4055 (get-char-property (1- (point)) 'invisible)))
4056 (unless (if (eq buffer-invisibility-spec t)
4057 prop
4058 (or (memq prop buffer-invisibility-spec)
4059 (assq prop buffer-invisibility-spec)))
4060 (setq arg (1+ arg)))))
4061 (setq first nil))
4062 ;; If invisible text follows, and it is a number of complete lines,
4063 ;; skip it.
4064 (let ((opoint (point)))
4065 (while (and (not (bobp))
4066 (let ((prop
4067 (get-char-property (1- (point)) 'invisible)))
4068 (if (eq buffer-invisibility-spec t)
4069 prop
4070 (or (memq prop buffer-invisibility-spec)
4071 (assq prop buffer-invisibility-spec)))))
4072 (goto-char
4073 (if (get-text-property (1- (point)) 'invisible)
4074 (or (previous-single-property-change (point) 'invisible)
4075 (point-min))
4076 (previous-overlay-change (point)))))
4077 (unless (bolp)
4078 (goto-char opoint)))))
4079 ((beginning-of-buffer end-of-buffer)
4080 nil)))
4081
4082 (defun end-of-visible-line ()
4083 "Move to end of current visible line."
4084 (end-of-line)
4085 ;; If the following character is currently invisible,
4086 ;; skip all characters with that same `invisible' property value,
4087 ;; then find the next newline.
4088 (while (and (not (eobp))
4089 (save-excursion
4090 (skip-chars-forward "^\n")
4091 (let ((prop
4092 (get-char-property (point) 'invisible)))
4093 (if (eq buffer-invisibility-spec t)
4094 prop
4095 (or (memq prop buffer-invisibility-spec)
4096 (assq prop buffer-invisibility-spec))))))
4097 (skip-chars-forward "^\n")
4098 (if (get-text-property (point) 'invisible)
4099 (goto-char (or (next-single-property-change (point) 'invisible)
4100 (point-max)))
4101 (goto-char (next-overlay-change (point))))
4102 (end-of-line)))
4103 \f
4104 (defun insert-buffer (buffer)
4105 "Insert after point the contents of BUFFER.
4106 Puts mark after the inserted text.
4107 BUFFER may be a buffer or a buffer name.
4108
4109 This function is meant for the user to run interactively.
4110 Don't call it from programs: use `insert-buffer-substring' instead!"
4111 (interactive
4112 (list
4113 (progn
4114 (barf-if-buffer-read-only)
4115 (read-buffer "Insert buffer: "
4116 (if (eq (selected-window) (next-window))
4117 (other-buffer (current-buffer))
4118 (window-buffer (next-window)))
4119 t))))
4120 (push-mark
4121 (save-excursion
4122 (insert-buffer-substring (get-buffer buffer))
4123 (point)))
4124 nil)
4125
4126 (defun append-to-buffer (buffer start end)
4127 "Append to specified buffer the text of the region.
4128 It is inserted into that buffer before its point.
4129
4130 When calling from a program, give three arguments:
4131 BUFFER (or buffer name), START and END.
4132 START and END specify the portion of the current buffer to be copied."
4133 (interactive
4134 (list (read-buffer "Append to buffer: " (other-buffer (current-buffer) t))
4135 (region-beginning) (region-end)))
4136 (let* ((oldbuf (current-buffer))
4137 (append-to (get-buffer-create buffer))
4138 (windows (get-buffer-window-list append-to t t))
4139 point)
4140 (save-excursion
4141 (with-current-buffer append-to
4142 (setq point (point))
4143 (barf-if-buffer-read-only)
4144 (insert-buffer-substring oldbuf start end)
4145 (dolist (window windows)
4146 (when (= (window-point window) point)
4147 (set-window-point window (point))))))))
4148
4149 (defun prepend-to-buffer (buffer start end)
4150 "Prepend to specified buffer the text of the region.
4151 It is inserted into that buffer after its point.
4152
4153 When calling from a program, give three arguments:
4154 BUFFER (or buffer name), START and END.
4155 START and END specify the portion of the current buffer to be copied."
4156 (interactive "BPrepend to buffer: \nr")
4157 (let ((oldbuf (current-buffer)))
4158 (with-current-buffer (get-buffer-create buffer)
4159 (barf-if-buffer-read-only)
4160 (save-excursion
4161 (insert-buffer-substring oldbuf start end)))))
4162
4163 (defun copy-to-buffer (buffer start end)
4164 "Copy to specified buffer the text of the region.
4165 It is inserted into that buffer, replacing existing text there.
4166
4167 When calling from a program, give three arguments:
4168 BUFFER (or buffer name), START and END.
4169 START and END specify the portion of the current buffer to be copied."
4170 (interactive "BCopy to buffer: \nr")
4171 (let ((oldbuf (current-buffer)))
4172 (with-current-buffer (get-buffer-create buffer)
4173 (barf-if-buffer-read-only)
4174 (erase-buffer)
4175 (save-excursion
4176 (insert-buffer-substring oldbuf start end)))))
4177 \f
4178 (define-error 'mark-inactive (purecopy "The mark is not active now"))
4179
4180 (defvar activate-mark-hook nil
4181 "Hook run when the mark becomes active.
4182 It is also run at the end of a command, if the mark is active and
4183 it is possible that the region may have changed.")
4184
4185 (defvar deactivate-mark-hook nil
4186 "Hook run when the mark becomes inactive.")
4187
4188 (defun mark (&optional force)
4189 "Return this buffer's mark value as integer, or nil if never set.
4190
4191 In Transient Mark mode, this function signals an error if
4192 the mark is not active. However, if `mark-even-if-inactive' is non-nil,
4193 or the argument FORCE is non-nil, it disregards whether the mark
4194 is active, and returns an integer or nil in the usual way.
4195
4196 If you are using this in an editing command, you are most likely making
4197 a mistake; see the documentation of `set-mark'."
4198 (if (or force (not transient-mark-mode) mark-active mark-even-if-inactive)
4199 (marker-position (mark-marker))
4200 (signal 'mark-inactive nil)))
4201
4202 (defun deactivate-mark (&optional force)
4203 "Deactivate the mark.
4204 If Transient Mark mode is disabled, this function normally does
4205 nothing; but if FORCE is non-nil, it deactivates the mark anyway.
4206
4207 Deactivating the mark sets `mark-active' to nil, updates the
4208 primary selection according to `select-active-regions', and runs
4209 `deactivate-mark-hook'.
4210
4211 If Transient Mark mode was temporarily enabled, reset the value
4212 of the variable `transient-mark-mode'; if this causes Transient
4213 Mark mode to be disabled, don't change `mark-active' to nil or
4214 run `deactivate-mark-hook'."
4215 (when (or transient-mark-mode force)
4216 (when (and (if (eq select-active-regions 'only)
4217 (eq (car-safe transient-mark-mode) 'only)
4218 select-active-regions)
4219 (region-active-p)
4220 (display-selections-p))
4221 ;; The var `saved-region-selection', if non-nil, is the text in
4222 ;; the region prior to the last command modifying the buffer.
4223 ;; Set the selection to that, or to the current region.
4224 (cond (saved-region-selection
4225 (x-set-selection 'PRIMARY saved-region-selection)
4226 (setq saved-region-selection nil))
4227 ;; If another program has acquired the selection, region
4228 ;; deactivation should not clobber it (Bug#11772).
4229 ((and (/= (region-beginning) (region-end))
4230 (or (x-selection-owner-p 'PRIMARY)
4231 (null (x-selection-exists-p 'PRIMARY))))
4232 (x-set-selection 'PRIMARY
4233 (buffer-substring (region-beginning)
4234 (region-end))))))
4235 (if (and (null force)
4236 (or (eq transient-mark-mode 'lambda)
4237 (and (eq (car-safe transient-mark-mode) 'only)
4238 (null (cdr transient-mark-mode)))))
4239 ;; When deactivating a temporary region, don't change
4240 ;; `mark-active' or run `deactivate-mark-hook'.
4241 (setq transient-mark-mode nil)
4242 (if (eq (car-safe transient-mark-mode) 'only)
4243 (setq transient-mark-mode (cdr transient-mark-mode)))
4244 (setq mark-active nil)
4245 (run-hooks 'deactivate-mark-hook))))
4246
4247 (defun activate-mark ()
4248 "Activate the mark."
4249 (when (mark t)
4250 (setq mark-active t)
4251 (unless transient-mark-mode
4252 (setq transient-mark-mode 'lambda))
4253 (run-hooks 'activate-mark-hook)))
4254
4255 (defun set-mark (pos)
4256 "Set this buffer's mark to POS. Don't use this function!
4257 That is to say, don't use this function unless you want
4258 the user to see that the mark has moved, and you want the previous
4259 mark position to be lost.
4260
4261 Normally, when a new mark is set, the old one should go on the stack.
4262 This is why most applications should use `push-mark', not `set-mark'.
4263
4264 Novice Emacs Lisp programmers often try to use the mark for the wrong
4265 purposes. The mark saves a location for the user's convenience.
4266 Most editing commands should not alter the mark.
4267 To remember a location for internal use in the Lisp program,
4268 store it in a Lisp variable. Example:
4269
4270 (let ((beg (point))) (forward-line 1) (delete-region beg (point)))."
4271
4272 (if pos
4273 (progn
4274 (setq mark-active t)
4275 (run-hooks 'activate-mark-hook)
4276 (set-marker (mark-marker) pos (current-buffer)))
4277 ;; Normally we never clear mark-active except in Transient Mark mode.
4278 ;; But when we actually clear out the mark value too, we must
4279 ;; clear mark-active in any mode.
4280 (deactivate-mark t)
4281 (set-marker (mark-marker) nil)))
4282
4283 (defcustom use-empty-active-region nil
4284 "Whether \"region-aware\" commands should act on empty regions.
4285 If nil, region-aware commands treat empty regions as inactive.
4286 If non-nil, region-aware commands treat the region as active as
4287 long as the mark is active, even if the region is empty.
4288
4289 Region-aware commands are those that act on the region if it is
4290 active and Transient Mark mode is enabled, and on the text near
4291 point otherwise."
4292 :type 'boolean
4293 :version "23.1"
4294 :group 'editing-basics)
4295
4296 (defun use-region-p ()
4297 "Return t if the region is active and it is appropriate to act on it.
4298 This is used by commands that act specially on the region under
4299 Transient Mark mode.
4300
4301 The return value is t if Transient Mark mode is enabled and the
4302 mark is active; furthermore, if `use-empty-active-region' is nil,
4303 the region must not be empty. Otherwise, the return value is nil.
4304
4305 For some commands, it may be appropriate to ignore the value of
4306 `use-empty-active-region'; in that case, use `region-active-p'."
4307 (and (region-active-p)
4308 (or use-empty-active-region (> (region-end) (region-beginning)))))
4309
4310 (defun region-active-p ()
4311 "Return t if Transient Mark mode is enabled and the mark is active.
4312
4313 Some commands act specially on the region when Transient Mark
4314 mode is enabled. Usually, such commands should use
4315 `use-region-p' instead of this function, because `use-region-p'
4316 also checks the value of `use-empty-active-region'."
4317 (and transient-mark-mode mark-active))
4318
4319 (defvar mark-ring nil
4320 "The list of former marks of the current buffer, most recent first.")
4321 (make-variable-buffer-local 'mark-ring)
4322 (put 'mark-ring 'permanent-local t)
4323
4324 (defcustom mark-ring-max 16
4325 "Maximum size of mark ring. Start discarding off end if gets this big."
4326 :type 'integer
4327 :group 'editing-basics)
4328
4329 (defvar global-mark-ring nil
4330 "The list of saved global marks, most recent first.")
4331
4332 (defcustom global-mark-ring-max 16
4333 "Maximum size of global mark ring. \
4334 Start discarding off end if gets this big."
4335 :type 'integer
4336 :group 'editing-basics)
4337
4338 (defun pop-to-mark-command ()
4339 "Jump to mark, and pop a new position for mark off the ring.
4340 \(Does not affect global mark ring\)."
4341 (interactive)
4342 (if (null (mark t))
4343 (error "No mark set in this buffer")
4344 (if (= (point) (mark t))
4345 (message "Mark popped"))
4346 (goto-char (mark t))
4347 (pop-mark)))
4348
4349 (defun push-mark-command (arg &optional nomsg)
4350 "Set mark at where point is.
4351 If no prefix ARG and mark is already set there, just activate it.
4352 Display `Mark set' unless the optional second arg NOMSG is non-nil."
4353 (interactive "P")
4354 (let ((mark (marker-position (mark-marker))))
4355 (if (or arg (null mark) (/= mark (point)))
4356 (push-mark nil nomsg t)
4357 (setq mark-active t)
4358 (run-hooks 'activate-mark-hook)
4359 (unless nomsg
4360 (message "Mark activated")))))
4361
4362 (defcustom set-mark-command-repeat-pop nil
4363 "Non-nil means repeating \\[set-mark-command] after popping mark pops it again.
4364 That means that C-u \\[set-mark-command] \\[set-mark-command]
4365 will pop the mark twice, and
4366 C-u \\[set-mark-command] \\[set-mark-command] \\[set-mark-command]
4367 will pop the mark three times.
4368
4369 A value of nil means \\[set-mark-command]'s behavior does not change
4370 after C-u \\[set-mark-command]."
4371 :type 'boolean
4372 :group 'editing-basics)
4373
4374 (defun set-mark-command (arg)
4375 "Set the mark where point is, or jump to the mark.
4376 Setting the mark also alters the region, which is the text
4377 between point and mark; this is the closest equivalent in
4378 Emacs to what some editors call the \"selection\".
4379
4380 With no prefix argument, set the mark at point, and push the
4381 old mark position on local mark ring. Also push the old mark on
4382 global mark ring, if the previous mark was set in another buffer.
4383
4384 When Transient Mark Mode is off, immediately repeating this
4385 command activates `transient-mark-mode' temporarily.
4386
4387 With prefix argument \(e.g., \\[universal-argument] \\[set-mark-command]\), \
4388 jump to the mark, and set the mark from
4389 position popped off the local mark ring \(this does not affect the global
4390 mark ring\). Use \\[pop-global-mark] to jump to a mark popped off the global
4391 mark ring \(see `pop-global-mark'\).
4392
4393 If `set-mark-command-repeat-pop' is non-nil, repeating
4394 the \\[set-mark-command] command with no prefix argument pops the next position
4395 off the local (or global) mark ring and jumps there.
4396
4397 With \\[universal-argument] \\[universal-argument] as prefix
4398 argument, unconditionally set mark where point is, even if
4399 `set-mark-command-repeat-pop' is non-nil.
4400
4401 Novice Emacs Lisp programmers often try to use the mark for the wrong
4402 purposes. See the documentation of `set-mark' for more information."
4403 (interactive "P")
4404 (cond ((eq transient-mark-mode 'lambda)
4405 (setq transient-mark-mode nil))
4406 ((eq (car-safe transient-mark-mode) 'only)
4407 (deactivate-mark)))
4408 (cond
4409 ((and (consp arg) (> (prefix-numeric-value arg) 4))
4410 (push-mark-command nil))
4411 ((not (eq this-command 'set-mark-command))
4412 (if arg
4413 (pop-to-mark-command)
4414 (push-mark-command t)))
4415 ((and set-mark-command-repeat-pop
4416 (eq last-command 'pop-to-mark-command))
4417 (setq this-command 'pop-to-mark-command)
4418 (pop-to-mark-command))
4419 ((and set-mark-command-repeat-pop
4420 (eq last-command 'pop-global-mark)
4421 (not arg))
4422 (setq this-command 'pop-global-mark)
4423 (pop-global-mark))
4424 (arg
4425 (setq this-command 'pop-to-mark-command)
4426 (pop-to-mark-command))
4427 ((eq last-command 'set-mark-command)
4428 (if (region-active-p)
4429 (progn
4430 (deactivate-mark)
4431 (message "Mark deactivated"))
4432 (activate-mark)
4433 (message "Mark activated")))
4434 (t
4435 (push-mark-command nil))))
4436
4437 (defun push-mark (&optional location nomsg activate)
4438 "Set mark at LOCATION (point, by default) and push old mark on mark ring.
4439 If the last global mark pushed was not in the current buffer,
4440 also push LOCATION on the global mark ring.
4441 Display `Mark set' unless the optional second arg NOMSG is non-nil.
4442
4443 Novice Emacs Lisp programmers often try to use the mark for the wrong
4444 purposes. See the documentation of `set-mark' for more information.
4445
4446 In Transient Mark mode, activate mark if optional third arg ACTIVATE non-nil."
4447 (unless (null (mark t))
4448 (setq mark-ring (cons (copy-marker (mark-marker)) mark-ring))
4449 (when (> (length mark-ring) mark-ring-max)
4450 (move-marker (car (nthcdr mark-ring-max mark-ring)) nil)
4451 (setcdr (nthcdr (1- mark-ring-max) mark-ring) nil)))
4452 (set-marker (mark-marker) (or location (point)) (current-buffer))
4453 ;; Now push the mark on the global mark ring.
4454 (if (and global-mark-ring
4455 (eq (marker-buffer (car global-mark-ring)) (current-buffer)))
4456 ;; The last global mark pushed was in this same buffer.
4457 ;; Don't push another one.
4458 nil
4459 (setq global-mark-ring (cons (copy-marker (mark-marker)) global-mark-ring))
4460 (when (> (length global-mark-ring) global-mark-ring-max)
4461 (move-marker (car (nthcdr global-mark-ring-max global-mark-ring)) nil)
4462 (setcdr (nthcdr (1- global-mark-ring-max) global-mark-ring) nil)))
4463 (or nomsg executing-kbd-macro (> (minibuffer-depth) 0)
4464 (message "Mark set"))
4465 (if (or activate (not transient-mark-mode))
4466 (set-mark (mark t)))
4467 nil)
4468
4469 (defun pop-mark ()
4470 "Pop off mark ring into the buffer's actual mark.
4471 Does not set point. Does nothing if mark ring is empty."
4472 (when mark-ring
4473 (setq mark-ring (nconc mark-ring (list (copy-marker (mark-marker)))))
4474 (set-marker (mark-marker) (+ 0 (car mark-ring)) (current-buffer))
4475 (move-marker (car mark-ring) nil)
4476 (if (null (mark t)) (ding))
4477 (setq mark-ring (cdr mark-ring)))
4478 (deactivate-mark))
4479
4480 (define-obsolete-function-alias
4481 'exchange-dot-and-mark 'exchange-point-and-mark "23.3")
4482 (defun exchange-point-and-mark (&optional arg)
4483 "Put the mark where point is now, and point where the mark is now.
4484 This command works even when the mark is not active,
4485 and it reactivates the mark.
4486
4487 If Transient Mark mode is on, a prefix ARG deactivates the mark
4488 if it is active, and otherwise avoids reactivating it. If
4489 Transient Mark mode is off, a prefix ARG enables Transient Mark
4490 mode temporarily."
4491 (interactive "P")
4492 (let ((omark (mark t))
4493 (temp-highlight (eq (car-safe transient-mark-mode) 'only)))
4494 (if (null omark)
4495 (error "No mark set in this buffer"))
4496 (deactivate-mark)
4497 (set-mark (point))
4498 (goto-char omark)
4499 (cond (temp-highlight
4500 (setq transient-mark-mode (cons 'only transient-mark-mode)))
4501 ((or (and arg (region-active-p)) ; (xor arg (not (region-active-p)))
4502 (not (or arg (region-active-p))))
4503 (deactivate-mark))
4504 (t (activate-mark)))
4505 nil))
4506
4507 (defcustom shift-select-mode t
4508 "When non-nil, shifted motion keys activate the mark momentarily.
4509
4510 While the mark is activated in this way, any shift-translated point
4511 motion key extends the region, and if Transient Mark mode was off, it
4512 is temporarily turned on. Furthermore, the mark will be deactivated
4513 by any subsequent point motion key that was not shift-translated, or
4514 by any action that normally deactivates the mark in Transient Mark mode.
4515
4516 See `this-command-keys-shift-translated' for the meaning of
4517 shift-translation."
4518 :type 'boolean
4519 :group 'editing-basics)
4520
4521 (defun handle-shift-selection ()
4522 "Activate/deactivate mark depending on invocation thru shift translation.
4523 This function is called by `call-interactively' when a command
4524 with a `^' character in its `interactive' spec is invoked, before
4525 running the command itself.
4526
4527 If `shift-select-mode' is enabled and the command was invoked
4528 through shift translation, set the mark and activate the region
4529 temporarily, unless it was already set in this way. See
4530 `this-command-keys-shift-translated' for the meaning of shift
4531 translation.
4532
4533 Otherwise, if the region has been activated temporarily,
4534 deactivate it, and restore the variable `transient-mark-mode' to
4535 its earlier value."
4536 (cond ((and shift-select-mode this-command-keys-shift-translated)
4537 (unless (and mark-active
4538 (eq (car-safe transient-mark-mode) 'only))
4539 (setq transient-mark-mode
4540 (cons 'only
4541 (unless (eq transient-mark-mode 'lambda)
4542 transient-mark-mode)))
4543 (push-mark nil nil t)))
4544 ((eq (car-safe transient-mark-mode) 'only)
4545 (setq transient-mark-mode (cdr transient-mark-mode))
4546 (deactivate-mark))))
4547
4548 (define-minor-mode transient-mark-mode
4549 "Toggle Transient Mark mode.
4550 With a prefix argument ARG, enable Transient Mark mode if ARG is
4551 positive, and disable it otherwise. If called from Lisp, enable
4552 Transient Mark mode if ARG is omitted or nil.
4553
4554 Transient Mark mode is a global minor mode. When enabled, the
4555 region is highlighted whenever the mark is active. The mark is
4556 \"deactivated\" by changing the buffer, and after certain other
4557 operations that set the mark but whose main purpose is something
4558 else--for example, incremental search, \\[beginning-of-buffer], and \\[end-of-buffer].
4559
4560 You can also deactivate the mark by typing \\[keyboard-quit] or
4561 \\[keyboard-escape-quit].
4562
4563 Many commands change their behavior when Transient Mark mode is
4564 in effect and the mark is active, by acting on the region instead
4565 of their usual default part of the buffer's text. Examples of
4566 such commands include \\[comment-dwim], \\[flush-lines], \\[keep-lines],
4567 \\[query-replace], \\[query-replace-regexp], \\[ispell], and \\[undo].
4568 To see the documentation of commands which are sensitive to the
4569 Transient Mark mode, invoke \\[apropos-documentation] and type \"transient\"
4570 or \"mark.*active\" at the prompt."
4571 :global t
4572 ;; It's defined in C/cus-start, this stops the d-m-m macro defining it again.
4573 :variable transient-mark-mode)
4574
4575 (defvar widen-automatically t
4576 "Non-nil means it is ok for commands to call `widen' when they want to.
4577 Some commands will do this in order to go to positions outside
4578 the current accessible part of the buffer.
4579
4580 If `widen-automatically' is nil, these commands will do something else
4581 as a fallback, and won't change the buffer bounds.")
4582
4583 (defvar non-essential nil
4584 "Whether the currently executing code is performing an essential task.
4585 This variable should be non-nil only when running code which should not
4586 disturb the user. E.g. it can be used to prevent Tramp from prompting the
4587 user for a password when we are simply scanning a set of files in the
4588 background or displaying possible completions before the user even asked
4589 for it.")
4590
4591 (defun pop-global-mark ()
4592 "Pop off global mark ring and jump to the top location."
4593 (interactive)
4594 ;; Pop entries which refer to non-existent buffers.
4595 (while (and global-mark-ring (not (marker-buffer (car global-mark-ring))))
4596 (setq global-mark-ring (cdr global-mark-ring)))
4597 (or global-mark-ring
4598 (error "No global mark set"))
4599 (let* ((marker (car global-mark-ring))
4600 (buffer (marker-buffer marker))
4601 (position (marker-position marker)))
4602 (setq global-mark-ring (nconc (cdr global-mark-ring)
4603 (list (car global-mark-ring))))
4604 (set-buffer buffer)
4605 (or (and (>= position (point-min))
4606 (<= position (point-max)))
4607 (if widen-automatically
4608 (widen)
4609 (error "Global mark position is outside accessible part of buffer")))
4610 (goto-char position)
4611 (switch-to-buffer buffer)))
4612 \f
4613 (defcustom next-line-add-newlines nil
4614 "If non-nil, `next-line' inserts newline to avoid `end of buffer' error."
4615 :type 'boolean
4616 :version "21.1"
4617 :group 'editing-basics)
4618
4619 (defun next-line (&optional arg try-vscroll)
4620 "Move cursor vertically down ARG lines.
4621 Interactively, vscroll tall lines if `auto-window-vscroll' is enabled.
4622 Non-interactively, use TRY-VSCROLL to control whether to vscroll tall
4623 lines: if either `auto-window-vscroll' or TRY-VSCROLL is nil, this
4624 function will not vscroll.
4625
4626 ARG defaults to 1.
4627
4628 If there is no character in the target line exactly under the current column,
4629 the cursor is positioned after the character in that line which spans this
4630 column, or at the end of the line if it is not long enough.
4631 If there is no line in the buffer after this one, behavior depends on the
4632 value of `next-line-add-newlines'. If non-nil, it inserts a newline character
4633 to create a line, and moves the cursor to that line. Otherwise it moves the
4634 cursor to the end of the buffer.
4635
4636 If the variable `line-move-visual' is non-nil, this command moves
4637 by display lines. Otherwise, it moves by buffer lines, without
4638 taking variable-width characters or continued lines into account.
4639
4640 The command \\[set-goal-column] can be used to create
4641 a semipermanent goal column for this command.
4642 Then instead of trying to move exactly vertically (or as close as possible),
4643 this command moves to the specified goal column (or as close as possible).
4644 The goal column is stored in the variable `goal-column', which is nil
4645 when there is no goal column. Note that setting `goal-column'
4646 overrides `line-move-visual' and causes this command to move by buffer
4647 lines rather than by display lines.
4648
4649 If you are thinking of using this in a Lisp program, consider
4650 using `forward-line' instead. It is usually easier to use
4651 and more reliable (no dependence on goal column, etc.)."
4652 (interactive "^p\np")
4653 (or arg (setq arg 1))
4654 (if (and next-line-add-newlines (= arg 1))
4655 (if (save-excursion (end-of-line) (eobp))
4656 ;; When adding a newline, don't expand an abbrev.
4657 (let ((abbrev-mode nil))
4658 (end-of-line)
4659 (insert (if use-hard-newlines hard-newline "\n")))
4660 (line-move arg nil nil try-vscroll))
4661 (if (called-interactively-p 'interactive)
4662 (condition-case err
4663 (line-move arg nil nil try-vscroll)
4664 ((beginning-of-buffer end-of-buffer)
4665 (signal (car err) (cdr err))))
4666 (line-move arg nil nil try-vscroll)))
4667 nil)
4668
4669 (defun previous-line (&optional arg try-vscroll)
4670 "Move cursor vertically up ARG lines.
4671 Interactively, vscroll tall lines if `auto-window-vscroll' is enabled.
4672 Non-interactively, use TRY-VSCROLL to control whether to vscroll tall
4673 lines: if either `auto-window-vscroll' or TRY-VSCROLL is nil, this
4674 function will not vscroll.
4675
4676 ARG defaults to 1.
4677
4678 If there is no character in the target line exactly over the current column,
4679 the cursor is positioned after the character in that line which spans this
4680 column, or at the end of the line if it is not long enough.
4681
4682 If the variable `line-move-visual' is non-nil, this command moves
4683 by display lines. Otherwise, it moves by buffer lines, without
4684 taking variable-width characters or continued lines into account.
4685
4686 The command \\[set-goal-column] can be used to create
4687 a semipermanent goal column for this command.
4688 Then instead of trying to move exactly vertically (or as close as possible),
4689 this command moves to the specified goal column (or as close as possible).
4690 The goal column is stored in the variable `goal-column', which is nil
4691 when there is no goal column. Note that setting `goal-column'
4692 overrides `line-move-visual' and causes this command to move by buffer
4693 lines rather than by display lines.
4694
4695 If you are thinking of using this in a Lisp program, consider using
4696 `forward-line' with a negative argument instead. It is usually easier
4697 to use and more reliable (no dependence on goal column, etc.)."
4698 (interactive "^p\np")
4699 (or arg (setq arg 1))
4700 (if (called-interactively-p 'interactive)
4701 (condition-case err
4702 (line-move (- arg) nil nil try-vscroll)
4703 ((beginning-of-buffer end-of-buffer)
4704 (signal (car err) (cdr err))))
4705 (line-move (- arg) nil nil try-vscroll))
4706 nil)
4707
4708 (defcustom track-eol nil
4709 "Non-nil means vertical motion starting at end of line keeps to ends of lines.
4710 This means moving to the end of each line moved onto.
4711 The beginning of a blank line does not count as the end of a line.
4712 This has no effect when the variable `line-move-visual' is non-nil."
4713 :type 'boolean
4714 :group 'editing-basics)
4715
4716 (defcustom goal-column nil
4717 "Semipermanent goal column for vertical motion, as set by \\[set-goal-column], or nil.
4718 A non-nil setting overrides the variable `line-move-visual', which see."
4719 :type '(choice integer
4720 (const :tag "None" nil))
4721 :group 'editing-basics)
4722 (make-variable-buffer-local 'goal-column)
4723
4724 (defvar temporary-goal-column 0
4725 "Current goal column for vertical motion.
4726 It is the column where point was at the start of the current run
4727 of vertical motion commands.
4728
4729 When moving by visual lines via the function `line-move-visual', it is a cons
4730 cell (COL . HSCROLL), where COL is the x-position, in pixels,
4731 divided by the default column width, and HSCROLL is the number of
4732 columns by which window is scrolled from left margin.
4733
4734 When the `track-eol' feature is doing its job, the value is
4735 `most-positive-fixnum'.")
4736
4737 (defcustom line-move-ignore-invisible t
4738 "Non-nil means \\[next-line] and \\[previous-line] ignore invisible lines.
4739 Outline mode sets this."
4740 :type 'boolean
4741 :group 'editing-basics)
4742
4743 (defcustom line-move-visual t
4744 "When non-nil, `line-move' moves point by visual lines.
4745 This movement is based on where the cursor is displayed on the
4746 screen, instead of relying on buffer contents alone. It takes
4747 into account variable-width characters and line continuation.
4748 If nil, `line-move' moves point by logical lines.
4749 A non-nil setting of `goal-column' overrides the value of this variable
4750 and forces movement by logical lines.
4751 A window that is horizontally scrolled also forces movement by logical
4752 lines."
4753 :type 'boolean
4754 :group 'editing-basics
4755 :version "23.1")
4756
4757 (defun default-font-height ()
4758 "Return the height in pixels of the current buffer's default face font."
4759 (let ((default-font (face-font 'default)))
4760 (cond
4761 ((and (display-multi-font-p)
4762 ;; Avoid calling font-info if the frame's default font was
4763 ;; not changed since the frame was created. That's because
4764 ;; font-info is expensive for some fonts, see bug #14838.
4765 (not (string= (frame-parameter nil 'font) default-font)))
4766 (aref (font-info default-font) 3))
4767 (t (frame-char-height)))))
4768
4769 (defun default-line-height ()
4770 "Return the pixel height of current buffer's default-face text line.
4771
4772 The value includes `line-spacing', if any, defined for the buffer
4773 or the frame."
4774 (let ((dfh (default-font-height))
4775 (lsp (if (display-graphic-p)
4776 (or line-spacing
4777 (default-value 'line-spacing)
4778 (frame-parameter nil 'line-spacing)
4779 0)
4780 0)))
4781 (if (floatp lsp)
4782 (setq lsp (* dfh lsp)))
4783 (+ dfh lsp)))
4784
4785 (defun window-screen-lines ()
4786 "Return the number of screen lines in the text area of the selected window.
4787
4788 This is different from `window-text-height' in that this function counts
4789 lines in units of the height of the font used by the default face displayed
4790 in the window, not in units of the frame's default font, and also accounts
4791 for `line-spacing', if any, defined for the window's buffer or frame.
4792
4793 The value is a floating-point number."
4794 (let ((canonical (window-text-height))
4795 (fch (frame-char-height))
4796 (dlh (default-line-height)))
4797 (/ (* (float canonical) fch) dlh)))
4798
4799 ;; Returns non-nil if partial move was done.
4800 (defun line-move-partial (arg noerror to-end)
4801 (if (< arg 0)
4802 ;; Move backward (up).
4803 ;; If already vscrolled, reduce vscroll
4804 (let ((vs (window-vscroll nil t))
4805 (dlh (default-line-height)))
4806 (when (> vs dlh)
4807 (set-window-vscroll nil (- vs dlh) t)))
4808
4809 ;; Move forward (down).
4810 (let* ((lh (window-line-height -1))
4811 (rowh (car lh))
4812 (vpos (nth 1 lh))
4813 (ypos (nth 2 lh))
4814 (rbot (nth 3 lh))
4815 (this-lh (window-line-height))
4816 (this-height (car this-lh))
4817 (this-ypos (nth 2 this-lh))
4818 (dlh (default-line-height))
4819 (wslines (window-screen-lines))
4820 (edges (window-inside-pixel-edges))
4821 (winh (- (nth 3 edges) (nth 1 edges) 1))
4822 py vs last-line)
4823 (if (> (mod wslines 1.0) 0.0)
4824 (setq wslines (round (+ wslines 0.5))))
4825 (when (or (null lh)
4826 (>= rbot dlh)
4827 (<= ypos (- dlh))
4828 (null this-lh)
4829 (<= this-ypos (- dlh)))
4830 (unless lh
4831 (let ((wend (pos-visible-in-window-p t nil t)))
4832 (setq rbot (nth 3 wend)
4833 rowh (nth 4 wend)
4834 vpos (nth 5 wend))))
4835 (unless this-lh
4836 (let ((wstart (pos-visible-in-window-p nil nil t)))
4837 (setq this-ypos (nth 2 wstart)
4838 this-height (nth 4 wstart))))
4839 (setq py
4840 (or (nth 1 this-lh)
4841 (let ((ppos (posn-at-point))
4842 col-row)
4843 (setq col-row (posn-actual-col-row ppos))
4844 (if col-row
4845 (- (cdr col-row) (window-vscroll))
4846 (cdr (posn-col-row ppos))))))
4847 ;; VPOS > 0 means the last line is only partially visible.
4848 ;; But if the part that is visible is at least as tall as the
4849 ;; default font, that means the line is actually fully
4850 ;; readable, and something like line-spacing is hidden. So in
4851 ;; that case we accept the last line in the window as still
4852 ;; visible, and consider the margin as starting one line
4853 ;; later.
4854 (if (and vpos (> vpos 0))
4855 (if (and rowh
4856 (>= rowh (default-font-height))
4857 (< rowh dlh))
4858 (setq last-line (min (- wslines scroll-margin) vpos))
4859 (setq last-line (min (- wslines scroll-margin 1) (1- vpos)))))
4860 (cond
4861 ;; If last line of window is fully visible, and vscrolling
4862 ;; more would make this line invisible, move forward.
4863 ((and (or (< (setq vs (window-vscroll nil t)) dlh)
4864 (null this-height)
4865 (<= this-height dlh))
4866 (or (null rbot) (= rbot 0)))
4867 nil)
4868 ;; If cursor is not in the bottom scroll margin, and the
4869 ;; current line is is not too tall, move forward.
4870 ((and (or (null this-height) (<= this-height winh))
4871 vpos
4872 (> vpos 0)
4873 (< py last-line))
4874 nil)
4875 ;; When already vscrolled, we vscroll some more if we can,
4876 ;; or clear vscroll and move forward at end of tall image.
4877 ((> vs 0)
4878 (when (or (and rbot (> rbot 0))
4879 (and this-height (> this-height dlh)))
4880 (set-window-vscroll nil (+ vs dlh) t)))
4881 ;; If cursor just entered the bottom scroll margin, move forward,
4882 ;; but also optionally vscroll one line so redisplay won't recenter.
4883 ((and vpos
4884 (> vpos 0)
4885 (= py last-line))
4886 ;; Don't vscroll if the partially-visible line at window
4887 ;; bottom is not too tall (a.k.a. "just one more text
4888 ;; line"): in that case, we do want redisplay to behave
4889 ;; normally, i.e. recenter or whatever.
4890 ;;
4891 ;; Note: ROWH + RBOT from the value returned by
4892 ;; pos-visible-in-window-p give the total height of the
4893 ;; partially-visible glyph row at the end of the window. As
4894 ;; we are dealing with floats, we disregard sub-pixel
4895 ;; discrepancies between that and DLH.
4896 (if (and rowh rbot (>= (- (+ rowh rbot) winh) 1))
4897 (set-window-vscroll nil dlh t))
4898 (line-move-1 arg noerror to-end)
4899 t)
4900 ;; If there are lines above the last line, scroll-up one line.
4901 ((and vpos (> vpos 0))
4902 (scroll-up 1)
4903 t)
4904 ;; Finally, start vscroll.
4905 (t
4906 (set-window-vscroll nil dlh t)))))))
4907
4908
4909 ;; This is like line-move-1 except that it also performs
4910 ;; vertical scrolling of tall images if appropriate.
4911 ;; That is not really a clean thing to do, since it mixes
4912 ;; scrolling with cursor motion. But so far we don't have
4913 ;; a cleaner solution to the problem of making C-n do something
4914 ;; useful given a tall image.
4915 (defun line-move (arg &optional noerror to-end try-vscroll)
4916 (if noninteractive
4917 (forward-line arg)
4918 (unless (and auto-window-vscroll try-vscroll
4919 ;; Only vscroll for single line moves
4920 (= (abs arg) 1)
4921 ;; Under scroll-conservatively, the display engine
4922 ;; does this better.
4923 (zerop scroll-conservatively)
4924 ;; But don't vscroll in a keyboard macro.
4925 (not defining-kbd-macro)
4926 (not executing-kbd-macro)
4927 (line-move-partial arg noerror to-end))
4928 (set-window-vscroll nil 0 t)
4929 (if (and line-move-visual
4930 ;; Display-based column are incompatible with goal-column.
4931 (not goal-column)
4932 ;; When the text in the window is scrolled to the left,
4933 ;; display-based motion doesn't make sense (because each
4934 ;; logical line occupies exactly one screen line).
4935 (not (> (window-hscroll) 0)))
4936 (prog1 (line-move-visual arg noerror)
4937 ;; If we moved into a tall line, set vscroll to make
4938 ;; scrolling through tall images more smooth.
4939 (let ((lh (line-pixel-height))
4940 (edges (window-inside-pixel-edges))
4941 (dlh (default-line-height))
4942 winh)
4943 (setq winh (- (nth 3 edges) (nth 1 edges) 1))
4944 (if (and (< arg 0)
4945 (< (point) (window-start))
4946 (> lh winh))
4947 (set-window-vscroll
4948 nil
4949 (- lh dlh) t))))
4950 (line-move-1 arg noerror to-end)))))
4951
4952 ;; Display-based alternative to line-move-1.
4953 ;; Arg says how many lines to move. The value is t if we can move the
4954 ;; specified number of lines.
4955 (defun line-move-visual (arg &optional noerror)
4956 (let ((opoint (point))
4957 (hscroll (window-hscroll))
4958 target-hscroll)
4959 ;; Check if the previous command was a line-motion command, or if
4960 ;; we were called from some other command.
4961 (if (and (consp temporary-goal-column)
4962 (memq last-command `(next-line previous-line ,this-command)))
4963 ;; If so, there's no need to reset `temporary-goal-column',
4964 ;; but we may need to hscroll.
4965 (if (or (/= (cdr temporary-goal-column) hscroll)
4966 (> (cdr temporary-goal-column) 0))
4967 (setq target-hscroll (cdr temporary-goal-column)))
4968 ;; Otherwise, we should reset `temporary-goal-column'.
4969 (let ((posn (posn-at-point)))
4970 (cond
4971 ;; Handle the `overflow-newline-into-fringe' case:
4972 ((eq (nth 1 posn) 'right-fringe)
4973 (setq temporary-goal-column (cons (- (window-width) 1) hscroll)))
4974 ((car (posn-x-y posn))
4975 (setq temporary-goal-column
4976 (cons (/ (float (car (posn-x-y posn)))
4977 (frame-char-width)) hscroll))))))
4978 (if target-hscroll
4979 (set-window-hscroll (selected-window) target-hscroll))
4980 ;; vertical-motion can move more than it was asked to if it moves
4981 ;; across display strings with newlines. We don't want to ring
4982 ;; the bell and announce beginning/end of buffer in that case.
4983 (or (and (or (and (>= arg 0)
4984 (>= (vertical-motion
4985 (cons (or goal-column
4986 (if (consp temporary-goal-column)
4987 (car temporary-goal-column)
4988 temporary-goal-column))
4989 arg))
4990 arg))
4991 (and (< arg 0)
4992 (<= (vertical-motion
4993 (cons (or goal-column
4994 (if (consp temporary-goal-column)
4995 (car temporary-goal-column)
4996 temporary-goal-column))
4997 arg))
4998 arg)))
4999 (or (>= arg 0)
5000 (/= (point) opoint)
5001 ;; If the goal column lies on a display string,
5002 ;; `vertical-motion' advances the cursor to the end
5003 ;; of the string. For arg < 0, this can cause the
5004 ;; cursor to get stuck. (Bug#3020).
5005 (= (vertical-motion arg) arg)))
5006 (unless noerror
5007 (signal (if (< arg 0) 'beginning-of-buffer 'end-of-buffer)
5008 nil)))))
5009
5010 ;; This is the guts of next-line and previous-line.
5011 ;; Arg says how many lines to move.
5012 ;; The value is t if we can move the specified number of lines.
5013 (defun line-move-1 (arg &optional noerror _to-end)
5014 ;; Don't run any point-motion hooks, and disregard intangibility,
5015 ;; for intermediate positions.
5016 (let ((inhibit-point-motion-hooks t)
5017 (opoint (point))
5018 (orig-arg arg))
5019 (if (consp temporary-goal-column)
5020 (setq temporary-goal-column (+ (car temporary-goal-column)
5021 (cdr temporary-goal-column))))
5022 (unwind-protect
5023 (progn
5024 (if (not (memq last-command '(next-line previous-line)))
5025 (setq temporary-goal-column
5026 (if (and track-eol (eolp)
5027 ;; Don't count beg of empty line as end of line
5028 ;; unless we just did explicit end-of-line.
5029 (or (not (bolp)) (eq last-command 'move-end-of-line)))
5030 most-positive-fixnum
5031 (current-column))))
5032
5033 (if (not (or (integerp selective-display)
5034 line-move-ignore-invisible))
5035 ;; Use just newline characters.
5036 ;; Set ARG to 0 if we move as many lines as requested.
5037 (or (if (> arg 0)
5038 (progn (if (> arg 1) (forward-line (1- arg)))
5039 ;; This way of moving forward ARG lines
5040 ;; verifies that we have a newline after the last one.
5041 ;; It doesn't get confused by intangible text.
5042 (end-of-line)
5043 (if (zerop (forward-line 1))
5044 (setq arg 0)))
5045 (and (zerop (forward-line arg))
5046 (bolp)
5047 (setq arg 0)))
5048 (unless noerror
5049 (signal (if (< arg 0)
5050 'beginning-of-buffer
5051 'end-of-buffer)
5052 nil)))
5053 ;; Move by arg lines, but ignore invisible ones.
5054 (let (done)
5055 (while (and (> arg 0) (not done))
5056 ;; If the following character is currently invisible,
5057 ;; skip all characters with that same `invisible' property value.
5058 (while (and (not (eobp)) (invisible-p (point)))
5059 (goto-char (next-char-property-change (point))))
5060 ;; Move a line.
5061 ;; We don't use `end-of-line', since we want to escape
5062 ;; from field boundaries occurring exactly at point.
5063 (goto-char (constrain-to-field
5064 (let ((inhibit-field-text-motion t))
5065 (line-end-position))
5066 (point) t t
5067 'inhibit-line-move-field-capture))
5068 ;; If there's no invisibility here, move over the newline.
5069 (cond
5070 ((eobp)
5071 (if (not noerror)
5072 (signal 'end-of-buffer nil)
5073 (setq done t)))
5074 ((and (> arg 1) ;; Use vertical-motion for last move
5075 (not (integerp selective-display))
5076 (not (invisible-p (point))))
5077 ;; We avoid vertical-motion when possible
5078 ;; because that has to fontify.
5079 (forward-line 1))
5080 ;; Otherwise move a more sophisticated way.
5081 ((zerop (vertical-motion 1))
5082 (if (not noerror)
5083 (signal 'end-of-buffer nil)
5084 (setq done t))))
5085 (unless done
5086 (setq arg (1- arg))))
5087 ;; The logic of this is the same as the loop above,
5088 ;; it just goes in the other direction.
5089 (while (and (< arg 0) (not done))
5090 ;; For completely consistency with the forward-motion
5091 ;; case, we should call beginning-of-line here.
5092 ;; However, if point is inside a field and on a
5093 ;; continued line, the call to (vertical-motion -1)
5094 ;; below won't move us back far enough; then we return
5095 ;; to the same column in line-move-finish, and point
5096 ;; gets stuck -- cyd
5097 (forward-line 0)
5098 (cond
5099 ((bobp)
5100 (if (not noerror)
5101 (signal 'beginning-of-buffer nil)
5102 (setq done t)))
5103 ((and (< arg -1) ;; Use vertical-motion for last move
5104 (not (integerp selective-display))
5105 (not (invisible-p (1- (point)))))
5106 (forward-line -1))
5107 ((zerop (vertical-motion -1))
5108 (if (not noerror)
5109 (signal 'beginning-of-buffer nil)
5110 (setq done t))))
5111 (unless done
5112 (setq arg (1+ arg))
5113 (while (and ;; Don't move over previous invis lines
5114 ;; if our target is the middle of this line.
5115 (or (zerop (or goal-column temporary-goal-column))
5116 (< arg 0))
5117 (not (bobp)) (invisible-p (1- (point))))
5118 (goto-char (previous-char-property-change (point))))))))
5119 ;; This is the value the function returns.
5120 (= arg 0))
5121
5122 (cond ((> arg 0)
5123 ;; If we did not move down as far as desired, at least go
5124 ;; to end of line. Be sure to call point-entered and
5125 ;; point-left-hooks.
5126 (let* ((npoint (prog1 (line-end-position)
5127 (goto-char opoint)))
5128 (inhibit-point-motion-hooks nil))
5129 (goto-char npoint)))
5130 ((< arg 0)
5131 ;; If we did not move up as far as desired,
5132 ;; at least go to beginning of line.
5133 (let* ((npoint (prog1 (line-beginning-position)
5134 (goto-char opoint)))
5135 (inhibit-point-motion-hooks nil))
5136 (goto-char npoint)))
5137 (t
5138 (line-move-finish (or goal-column temporary-goal-column)
5139 opoint (> orig-arg 0)))))))
5140
5141 (defun line-move-finish (column opoint forward)
5142 (let ((repeat t))
5143 (while repeat
5144 ;; Set REPEAT to t to repeat the whole thing.
5145 (setq repeat nil)
5146
5147 (let (new
5148 (old (point))
5149 (line-beg (line-beginning-position))
5150 (line-end
5151 ;; Compute the end of the line
5152 ;; ignoring effectively invisible newlines.
5153 (save-excursion
5154 ;; Like end-of-line but ignores fields.
5155 (skip-chars-forward "^\n")
5156 (while (and (not (eobp)) (invisible-p (point)))
5157 (goto-char (next-char-property-change (point)))
5158 (skip-chars-forward "^\n"))
5159 (point))))
5160
5161 ;; Move to the desired column.
5162 (line-move-to-column (truncate column))
5163
5164 ;; Corner case: suppose we start out in a field boundary in
5165 ;; the middle of a continued line. When we get to
5166 ;; line-move-finish, point is at the start of a new *screen*
5167 ;; line but the same text line; then line-move-to-column would
5168 ;; move us backwards. Test using C-n with point on the "x" in
5169 ;; (insert "a" (propertize "x" 'field t) (make-string 89 ?y))
5170 (and forward
5171 (< (point) old)
5172 (goto-char old))
5173
5174 (setq new (point))
5175
5176 ;; Process intangibility within a line.
5177 ;; With inhibit-point-motion-hooks bound to nil, a call to
5178 ;; goto-char moves point past intangible text.
5179
5180 ;; However, inhibit-point-motion-hooks controls both the
5181 ;; intangibility and the point-entered/point-left hooks. The
5182 ;; following hack avoids calling the point-* hooks
5183 ;; unnecessarily. Note that we move *forward* past intangible
5184 ;; text when the initial and final points are the same.
5185 (goto-char new)
5186 (let ((inhibit-point-motion-hooks nil))
5187 (goto-char new)
5188
5189 ;; If intangibility moves us to a different (later) place
5190 ;; in the same line, use that as the destination.
5191 (if (<= (point) line-end)
5192 (setq new (point))
5193 ;; If that position is "too late",
5194 ;; try the previous allowable position.
5195 ;; See if it is ok.
5196 (backward-char)
5197 (if (if forward
5198 ;; If going forward, don't accept the previous
5199 ;; allowable position if it is before the target line.
5200 (< line-beg (point))
5201 ;; If going backward, don't accept the previous
5202 ;; allowable position if it is still after the target line.
5203 (<= (point) line-end))
5204 (setq new (point))
5205 ;; As a last resort, use the end of the line.
5206 (setq new line-end))))
5207
5208 ;; Now move to the updated destination, processing fields
5209 ;; as well as intangibility.
5210 (goto-char opoint)
5211 (let ((inhibit-point-motion-hooks nil))
5212 (goto-char
5213 ;; Ignore field boundaries if the initial and final
5214 ;; positions have the same `field' property, even if the
5215 ;; fields are non-contiguous. This seems to be "nicer"
5216 ;; behavior in many situations.
5217 (if (eq (get-char-property new 'field)
5218 (get-char-property opoint 'field))
5219 new
5220 (constrain-to-field new opoint t t
5221 'inhibit-line-move-field-capture))))
5222
5223 ;; If all this moved us to a different line,
5224 ;; retry everything within that new line.
5225 (when (or (< (point) line-beg) (> (point) line-end))
5226 ;; Repeat the intangibility and field processing.
5227 (setq repeat t))))))
5228
5229 (defun line-move-to-column (col)
5230 "Try to find column COL, considering invisibility.
5231 This function works only in certain cases,
5232 because what we really need is for `move-to-column'
5233 and `current-column' to be able to ignore invisible text."
5234 (if (zerop col)
5235 (beginning-of-line)
5236 (move-to-column col))
5237
5238 (when (and line-move-ignore-invisible
5239 (not (bolp)) (invisible-p (1- (point))))
5240 (let ((normal-location (point))
5241 (normal-column (current-column)))
5242 ;; If the following character is currently invisible,
5243 ;; skip all characters with that same `invisible' property value.
5244 (while (and (not (eobp))
5245 (invisible-p (point)))
5246 (goto-char (next-char-property-change (point))))
5247 ;; Have we advanced to a larger column position?
5248 (if (> (current-column) normal-column)
5249 ;; We have made some progress towards the desired column.
5250 ;; See if we can make any further progress.
5251 (line-move-to-column (+ (current-column) (- col normal-column)))
5252 ;; Otherwise, go to the place we originally found
5253 ;; and move back over invisible text.
5254 ;; that will get us to the same place on the screen
5255 ;; but with a more reasonable buffer position.
5256 (goto-char normal-location)
5257 (let ((line-beg (line-beginning-position)))
5258 (while (and (not (bolp)) (invisible-p (1- (point))))
5259 (goto-char (previous-char-property-change (point) line-beg))))))))
5260
5261 (defun move-end-of-line (arg)
5262 "Move point to end of current line as displayed.
5263 With argument ARG not nil or 1, move forward ARG - 1 lines first.
5264 If point reaches the beginning or end of buffer, it stops there.
5265
5266 To ignore the effects of the `intangible' text or overlay
5267 property, bind `inhibit-point-motion-hooks' to t.
5268 If there is an image in the current line, this function
5269 disregards newlines that are part of the text on which the image
5270 rests."
5271 (interactive "^p")
5272 (or arg (setq arg 1))
5273 (let (done)
5274 (while (not done)
5275 (let ((newpos
5276 (save-excursion
5277 (let ((goal-column 0)
5278 (line-move-visual nil))
5279 (and (line-move arg t)
5280 ;; With bidi reordering, we may not be at bol,
5281 ;; so make sure we are.
5282 (skip-chars-backward "^\n")
5283 (not (bobp))
5284 (progn
5285 (while (and (not (bobp)) (invisible-p (1- (point))))
5286 (goto-char (previous-single-char-property-change
5287 (point) 'invisible)))
5288 (backward-char 1)))
5289 (point)))))
5290 (goto-char newpos)
5291 (if (and (> (point) newpos)
5292 (eq (preceding-char) ?\n))
5293 (backward-char 1)
5294 (if (and (> (point) newpos) (not (eobp))
5295 (not (eq (following-char) ?\n)))
5296 ;; If we skipped something intangible and now we're not
5297 ;; really at eol, keep going.
5298 (setq arg 1)
5299 (setq done t)))))))
5300
5301 (defun move-beginning-of-line (arg)
5302 "Move point to beginning of current line as displayed.
5303 \(If there's an image in the line, this disregards newlines
5304 which are part of the text that the image rests on.)
5305
5306 With argument ARG not nil or 1, move forward ARG - 1 lines first.
5307 If point reaches the beginning or end of buffer, it stops there.
5308 To ignore intangibility, bind `inhibit-point-motion-hooks' to t."
5309 (interactive "^p")
5310 (or arg (setq arg 1))
5311
5312 (let ((orig (point))
5313 first-vis first-vis-field-value)
5314
5315 ;; Move by lines, if ARG is not 1 (the default).
5316 (if (/= arg 1)
5317 (let ((line-move-visual nil))
5318 (line-move (1- arg) t)))
5319
5320 ;; Move to beginning-of-line, ignoring fields and invisible text.
5321 (skip-chars-backward "^\n")
5322 (while (and (not (bobp)) (invisible-p (1- (point))))
5323 (goto-char (previous-char-property-change (point)))
5324 (skip-chars-backward "^\n"))
5325
5326 ;; Now find first visible char in the line
5327 (while (and (not (eobp)) (invisible-p (point)))
5328 (goto-char (next-char-property-change (point))))
5329 (setq first-vis (point))
5330
5331 ;; See if fields would stop us from reaching FIRST-VIS.
5332 (setq first-vis-field-value
5333 (constrain-to-field first-vis orig (/= arg 1) t nil))
5334
5335 (goto-char (if (/= first-vis-field-value first-vis)
5336 ;; If yes, obey them.
5337 first-vis-field-value
5338 ;; Otherwise, move to START with attention to fields.
5339 ;; (It is possible that fields never matter in this case.)
5340 (constrain-to-field (point) orig
5341 (/= arg 1) t nil)))))
5342
5343
5344 ;; Many people have said they rarely use this feature, and often type
5345 ;; it by accident. Maybe it shouldn't even be on a key.
5346 (put 'set-goal-column 'disabled t)
5347
5348 (defun set-goal-column (arg)
5349 "Set the current horizontal position as a goal for \\[next-line] and \\[previous-line].
5350 Those commands will move to this position in the line moved to
5351 rather than trying to keep the same horizontal position.
5352 With a non-nil argument ARG, clears out the goal column
5353 so that \\[next-line] and \\[previous-line] resume vertical motion.
5354 The goal column is stored in the variable `goal-column'."
5355 (interactive "P")
5356 (if arg
5357 (progn
5358 (setq goal-column nil)
5359 (message "No goal column"))
5360 (setq goal-column (current-column))
5361 ;; The older method below can be erroneous if `set-goal-column' is bound
5362 ;; to a sequence containing %
5363 ;;(message (substitute-command-keys
5364 ;;"Goal column %d (use \\[set-goal-column] with an arg to unset it)")
5365 ;;goal-column)
5366 (message "%s"
5367 (concat
5368 (format "Goal column %d " goal-column)
5369 (substitute-command-keys
5370 "(use \\[set-goal-column] with an arg to unset it)")))
5371
5372 )
5373 nil)
5374 \f
5375 ;;; Editing based on visual lines, as opposed to logical lines.
5376
5377 (defun end-of-visual-line (&optional n)
5378 "Move point to end of current visual line.
5379 With argument N not nil or 1, move forward N - 1 visual lines first.
5380 If point reaches the beginning or end of buffer, it stops there.
5381 To ignore intangibility, bind `inhibit-point-motion-hooks' to t."
5382 (interactive "^p")
5383 (or n (setq n 1))
5384 (if (/= n 1)
5385 (let ((line-move-visual t))
5386 (line-move (1- n) t)))
5387 ;; Unlike `move-beginning-of-line', `move-end-of-line' doesn't
5388 ;; constrain to field boundaries, so we don't either.
5389 (vertical-motion (cons (window-width) 0)))
5390
5391 (defun beginning-of-visual-line (&optional n)
5392 "Move point to beginning of current visual line.
5393 With argument N not nil or 1, move forward N - 1 visual lines first.
5394 If point reaches the beginning or end of buffer, it stops there.
5395 To ignore intangibility, bind `inhibit-point-motion-hooks' to t."
5396 (interactive "^p")
5397 (or n (setq n 1))
5398 (let ((opoint (point)))
5399 (if (/= n 1)
5400 (let ((line-move-visual t))
5401 (line-move (1- n) t)))
5402 (vertical-motion 0)
5403 ;; Constrain to field boundaries, like `move-beginning-of-line'.
5404 (goto-char (constrain-to-field (point) opoint (/= n 1)))))
5405
5406 (defun kill-visual-line (&optional arg)
5407 "Kill the rest of the visual line.
5408 With prefix argument ARG, kill that many visual lines from point.
5409 If ARG is negative, kill visual lines backward.
5410 If ARG is zero, kill the text before point on the current visual
5411 line.
5412
5413 If you want to append the killed line to the last killed text,
5414 use \\[append-next-kill] before \\[kill-line].
5415
5416 If the buffer is read-only, Emacs will beep and refrain from deleting
5417 the line, but put the line in the kill ring anyway. This means that
5418 you can use this command to copy text from a read-only buffer.
5419 \(If the variable `kill-read-only-ok' is non-nil, then this won't
5420 even beep.)"
5421 (interactive "P")
5422 ;; Like in `kill-line', it's better to move point to the other end
5423 ;; of the kill before killing.
5424 (let ((opoint (point))
5425 (kill-whole-line (and kill-whole-line (bolp))))
5426 (if arg
5427 (vertical-motion (prefix-numeric-value arg))
5428 (end-of-visual-line 1)
5429 (if (= (point) opoint)
5430 (vertical-motion 1)
5431 ;; Skip any trailing whitespace at the end of the visual line.
5432 ;; We used to do this only if `show-trailing-whitespace' is
5433 ;; nil, but that's wrong; the correct thing would be to check
5434 ;; whether the trailing whitespace is highlighted. But, it's
5435 ;; OK to just do this unconditionally.
5436 (skip-chars-forward " \t")))
5437 (kill-region opoint (if (and kill-whole-line (looking-at "\n"))
5438 (1+ (point))
5439 (point)))))
5440
5441 (defun next-logical-line (&optional arg try-vscroll)
5442 "Move cursor vertically down ARG lines.
5443 This is identical to `next-line', except that it always moves
5444 by logical lines instead of visual lines, ignoring the value of
5445 the variable `line-move-visual'."
5446 (interactive "^p\np")
5447 (let ((line-move-visual nil))
5448 (with-no-warnings
5449 (next-line arg try-vscroll))))
5450
5451 (defun previous-logical-line (&optional arg try-vscroll)
5452 "Move cursor vertically up ARG lines.
5453 This is identical to `previous-line', except that it always moves
5454 by logical lines instead of visual lines, ignoring the value of
5455 the variable `line-move-visual'."
5456 (interactive "^p\np")
5457 (let ((line-move-visual nil))
5458 (with-no-warnings
5459 (previous-line arg try-vscroll))))
5460
5461 (defgroup visual-line nil
5462 "Editing based on visual lines."
5463 :group 'convenience
5464 :version "23.1")
5465
5466 (defvar visual-line-mode-map
5467 (let ((map (make-sparse-keymap)))
5468 (define-key map [remap kill-line] 'kill-visual-line)
5469 (define-key map [remap move-beginning-of-line] 'beginning-of-visual-line)
5470 (define-key map [remap move-end-of-line] 'end-of-visual-line)
5471 ;; These keybindings interfere with xterm function keys. Are
5472 ;; there any other suitable bindings?
5473 ;; (define-key map "\M-[" 'previous-logical-line)
5474 ;; (define-key map "\M-]" 'next-logical-line)
5475 map))
5476
5477 (defcustom visual-line-fringe-indicators '(nil nil)
5478 "How fringe indicators are shown for wrapped lines in `visual-line-mode'.
5479 The value should be a list of the form (LEFT RIGHT), where LEFT
5480 and RIGHT are symbols representing the bitmaps to display, to
5481 indicate wrapped lines, in the left and right fringes respectively.
5482 See also `fringe-indicator-alist'.
5483 The default is not to display fringe indicators for wrapped lines.
5484 This variable does not affect fringe indicators displayed for
5485 other purposes."
5486 :type '(list (choice (const :tag "Hide left indicator" nil)
5487 (const :tag "Left curly arrow" left-curly-arrow)
5488 (symbol :tag "Other bitmap"))
5489 (choice (const :tag "Hide right indicator" nil)
5490 (const :tag "Right curly arrow" right-curly-arrow)
5491 (symbol :tag "Other bitmap")))
5492 :set (lambda (symbol value)
5493 (dolist (buf (buffer-list))
5494 (with-current-buffer buf
5495 (when (and (boundp 'visual-line-mode)
5496 (symbol-value 'visual-line-mode))
5497 (setq fringe-indicator-alist
5498 (cons (cons 'continuation value)
5499 (assq-delete-all
5500 'continuation
5501 (copy-tree fringe-indicator-alist)))))))
5502 (set-default symbol value)))
5503
5504 (defvar visual-line--saved-state nil)
5505
5506 (define-minor-mode visual-line-mode
5507 "Toggle visual line based editing (Visual Line mode).
5508 With a prefix argument ARG, enable Visual Line mode if ARG is
5509 positive, and disable it otherwise. If called from Lisp, enable
5510 the mode if ARG is omitted or nil.
5511
5512 When Visual Line mode is enabled, `word-wrap' is turned on in
5513 this buffer, and simple editing commands are redefined to act on
5514 visual lines, not logical lines. See Info node `Visual Line
5515 Mode' for details."
5516 :keymap visual-line-mode-map
5517 :group 'visual-line
5518 :lighter " Wrap"
5519 (if visual-line-mode
5520 (progn
5521 (set (make-local-variable 'visual-line--saved-state) nil)
5522 ;; Save the local values of some variables, to be restored if
5523 ;; visual-line-mode is turned off.
5524 (dolist (var '(line-move-visual truncate-lines
5525 truncate-partial-width-windows
5526 word-wrap fringe-indicator-alist))
5527 (if (local-variable-p var)
5528 (push (cons var (symbol-value var))
5529 visual-line--saved-state)))
5530 (set (make-local-variable 'line-move-visual) t)
5531 (set (make-local-variable 'truncate-partial-width-windows) nil)
5532 (setq truncate-lines nil
5533 word-wrap t
5534 fringe-indicator-alist
5535 (cons (cons 'continuation visual-line-fringe-indicators)
5536 fringe-indicator-alist)))
5537 (kill-local-variable 'line-move-visual)
5538 (kill-local-variable 'word-wrap)
5539 (kill-local-variable 'truncate-lines)
5540 (kill-local-variable 'truncate-partial-width-windows)
5541 (kill-local-variable 'fringe-indicator-alist)
5542 (dolist (saved visual-line--saved-state)
5543 (set (make-local-variable (car saved)) (cdr saved)))
5544 (kill-local-variable 'visual-line--saved-state)))
5545
5546 (defun turn-on-visual-line-mode ()
5547 (visual-line-mode 1))
5548
5549 (define-globalized-minor-mode global-visual-line-mode
5550 visual-line-mode turn-on-visual-line-mode)
5551
5552 \f
5553 (defun transpose-chars (arg)
5554 "Interchange characters around point, moving forward one character.
5555 With prefix arg ARG, effect is to take character before point
5556 and drag it forward past ARG other characters (backward if ARG negative).
5557 If no argument and at end of line, the previous two chars are exchanged."
5558 (interactive "*P")
5559 (and (null arg) (eolp) (forward-char -1))
5560 (transpose-subr 'forward-char (prefix-numeric-value arg)))
5561
5562 (defun transpose-words (arg)
5563 "Interchange words around point, leaving point at end of them.
5564 With prefix arg ARG, effect is to take word before or around point
5565 and drag it forward past ARG other words (backward if ARG negative).
5566 If ARG is zero, the words around or after point and around or after mark
5567 are interchanged."
5568 ;; FIXME: `foo a!nd bar' should transpose into `bar and foo'.
5569 (interactive "*p")
5570 (transpose-subr 'forward-word arg))
5571
5572 (defun transpose-sexps (arg)
5573 "Like \\[transpose-words] but applies to sexps.
5574 Does not work on a sexp that point is in the middle of
5575 if it is a list or string."
5576 (interactive "*p")
5577 (transpose-subr
5578 (lambda (arg)
5579 ;; Here we should try to simulate the behavior of
5580 ;; (cons (progn (forward-sexp x) (point))
5581 ;; (progn (forward-sexp (- x)) (point)))
5582 ;; Except that we don't want to rely on the second forward-sexp
5583 ;; putting us back to where we want to be, since forward-sexp-function
5584 ;; might do funny things like infix-precedence.
5585 (if (if (> arg 0)
5586 (looking-at "\\sw\\|\\s_")
5587 (and (not (bobp))
5588 (save-excursion (forward-char -1) (looking-at "\\sw\\|\\s_"))))
5589 ;; Jumping over a symbol. We might be inside it, mind you.
5590 (progn (funcall (if (> arg 0)
5591 'skip-syntax-backward 'skip-syntax-forward)
5592 "w_")
5593 (cons (save-excursion (forward-sexp arg) (point)) (point)))
5594 ;; Otherwise, we're between sexps. Take a step back before jumping
5595 ;; to make sure we'll obey the same precedence no matter which direction
5596 ;; we're going.
5597 (funcall (if (> arg 0) 'skip-syntax-backward 'skip-syntax-forward) " .")
5598 (cons (save-excursion (forward-sexp arg) (point))
5599 (progn (while (or (forward-comment (if (> arg 0) 1 -1))
5600 (not (zerop (funcall (if (> arg 0)
5601 'skip-syntax-forward
5602 'skip-syntax-backward)
5603 ".")))))
5604 (point)))))
5605 arg 'special))
5606
5607 (defun transpose-lines (arg)
5608 "Exchange current line and previous line, leaving point after both.
5609 With argument ARG, takes previous line and moves it past ARG lines.
5610 With argument 0, interchanges line point is in with line mark is in."
5611 (interactive "*p")
5612 (transpose-subr (function
5613 (lambda (arg)
5614 (if (> arg 0)
5615 (progn
5616 ;; Move forward over ARG lines,
5617 ;; but create newlines if necessary.
5618 (setq arg (forward-line arg))
5619 (if (/= (preceding-char) ?\n)
5620 (setq arg (1+ arg)))
5621 (if (> arg 0)
5622 (newline arg)))
5623 (forward-line arg))))
5624 arg))
5625
5626 ;; FIXME seems to leave point BEFORE the current object when ARG = 0,
5627 ;; which seems inconsistent with the ARG /= 0 case.
5628 ;; FIXME document SPECIAL.
5629 (defun transpose-subr (mover arg &optional special)
5630 "Subroutine to do the work of transposing objects.
5631 Works for lines, sentences, paragraphs, etc. MOVER is a function that
5632 moves forward by units of the given object (e.g. forward-sentence,
5633 forward-paragraph). If ARG is zero, exchanges the current object
5634 with the one containing mark. If ARG is an integer, moves the
5635 current object past ARG following (if ARG is positive) or
5636 preceding (if ARG is negative) objects, leaving point after the
5637 current object."
5638 (let ((aux (if special mover
5639 (lambda (x)
5640 (cons (progn (funcall mover x) (point))
5641 (progn (funcall mover (- x)) (point))))))
5642 pos1 pos2)
5643 (cond
5644 ((= arg 0)
5645 (save-excursion
5646 (setq pos1 (funcall aux 1))
5647 (goto-char (or (mark) (error "No mark set in this buffer")))
5648 (setq pos2 (funcall aux 1))
5649 (transpose-subr-1 pos1 pos2))
5650 (exchange-point-and-mark))
5651 ((> arg 0)
5652 (setq pos1 (funcall aux -1))
5653 (setq pos2 (funcall aux arg))
5654 (transpose-subr-1 pos1 pos2)
5655 (goto-char (car pos2)))
5656 (t
5657 (setq pos1 (funcall aux -1))
5658 (goto-char (car pos1))
5659 (setq pos2 (funcall aux arg))
5660 (transpose-subr-1 pos1 pos2)))))
5661
5662 (defun transpose-subr-1 (pos1 pos2)
5663 (when (> (car pos1) (cdr pos1)) (setq pos1 (cons (cdr pos1) (car pos1))))
5664 (when (> (car pos2) (cdr pos2)) (setq pos2 (cons (cdr pos2) (car pos2))))
5665 (when (> (car pos1) (car pos2))
5666 (let ((swap pos1))
5667 (setq pos1 pos2 pos2 swap)))
5668 (if (> (cdr pos1) (car pos2)) (error "Don't have two things to transpose"))
5669 (atomic-change-group
5670 ;; This sequence of insertions attempts to preserve marker
5671 ;; positions at the start and end of the transposed objects.
5672 (let* ((word (buffer-substring (car pos2) (cdr pos2)))
5673 (len1 (- (cdr pos1) (car pos1)))
5674 (len2 (length word))
5675 (boundary (make-marker)))
5676 (set-marker boundary (car pos2))
5677 (goto-char (cdr pos1))
5678 (insert-before-markers word)
5679 (setq word (delete-and-extract-region (car pos1) (+ (car pos1) len1)))
5680 (goto-char boundary)
5681 (insert word)
5682 (goto-char (+ boundary len1))
5683 (delete-region (point) (+ (point) len2))
5684 (set-marker boundary nil))))
5685 \f
5686 (defun backward-word (&optional arg)
5687 "Move backward until encountering the beginning of a word.
5688 With argument ARG, do this that many times.
5689 If ARG is omitted or nil, move point backward one word."
5690 (interactive "^p")
5691 (forward-word (- (or arg 1))))
5692
5693 (defun mark-word (&optional arg allow-extend)
5694 "Set mark ARG words away from point.
5695 The place mark goes is the same place \\[forward-word] would
5696 move to with the same argument.
5697 Interactively, if this command is repeated
5698 or (in Transient Mark mode) if the mark is active,
5699 it marks the next ARG words after the ones already marked."
5700 (interactive "P\np")
5701 (cond ((and allow-extend
5702 (or (and (eq last-command this-command) (mark t))
5703 (region-active-p)))
5704 (setq arg (if arg (prefix-numeric-value arg)
5705 (if (< (mark) (point)) -1 1)))
5706 (set-mark
5707 (save-excursion
5708 (goto-char (mark))
5709 (forward-word arg)
5710 (point))))
5711 (t
5712 (push-mark
5713 (save-excursion
5714 (forward-word (prefix-numeric-value arg))
5715 (point))
5716 nil t))))
5717
5718 (defun kill-word (arg)
5719 "Kill characters forward until encountering the end of a word.
5720 With argument ARG, do this that many times."
5721 (interactive "p")
5722 (kill-region (point) (progn (forward-word arg) (point))))
5723
5724 (defun backward-kill-word (arg)
5725 "Kill characters backward until encountering the beginning of a word.
5726 With argument ARG, do this that many times."
5727 (interactive "p")
5728 (kill-word (- arg)))
5729
5730 (defun current-word (&optional strict really-word)
5731 "Return the symbol or word that point is on (or a nearby one) as a string.
5732 The return value includes no text properties.
5733 If optional arg STRICT is non-nil, return nil unless point is within
5734 or adjacent to a symbol or word. In all cases the value can be nil
5735 if there is no word nearby.
5736 The function, belying its name, normally finds a symbol.
5737 If optional arg REALLY-WORD is non-nil, it finds just a word."
5738 (save-excursion
5739 (let* ((oldpoint (point)) (start (point)) (end (point))
5740 (syntaxes (if really-word "w" "w_"))
5741 (not-syntaxes (concat "^" syntaxes)))
5742 (skip-syntax-backward syntaxes) (setq start (point))
5743 (goto-char oldpoint)
5744 (skip-syntax-forward syntaxes) (setq end (point))
5745 (when (and (eq start oldpoint) (eq end oldpoint)
5746 ;; Point is neither within nor adjacent to a word.
5747 (not strict))
5748 ;; Look for preceding word in same line.
5749 (skip-syntax-backward not-syntaxes (line-beginning-position))
5750 (if (bolp)
5751 ;; No preceding word in same line.
5752 ;; Look for following word in same line.
5753 (progn
5754 (skip-syntax-forward not-syntaxes (line-end-position))
5755 (setq start (point))
5756 (skip-syntax-forward syntaxes)
5757 (setq end (point)))
5758 (setq end (point))
5759 (skip-syntax-backward syntaxes)
5760 (setq start (point))))
5761 ;; If we found something nonempty, return it as a string.
5762 (unless (= start end)
5763 (buffer-substring-no-properties start end)))))
5764 \f
5765 (defcustom fill-prefix nil
5766 "String for filling to insert at front of new line, or nil for none."
5767 :type '(choice (const :tag "None" nil)
5768 string)
5769 :group 'fill)
5770 (make-variable-buffer-local 'fill-prefix)
5771 (put 'fill-prefix 'safe-local-variable 'string-or-null-p)
5772
5773 (defcustom auto-fill-inhibit-regexp nil
5774 "Regexp to match lines which should not be auto-filled."
5775 :type '(choice (const :tag "None" nil)
5776 regexp)
5777 :group 'fill)
5778
5779 (defun do-auto-fill ()
5780 "The default value for `normal-auto-fill-function'.
5781 This is the default auto-fill function, some major modes use a different one.
5782 Returns t if it really did any work."
5783 (let (fc justify give-up
5784 (fill-prefix fill-prefix))
5785 (if (or (not (setq justify (current-justification)))
5786 (null (setq fc (current-fill-column)))
5787 (and (eq justify 'left)
5788 (<= (current-column) fc))
5789 (and auto-fill-inhibit-regexp
5790 (save-excursion (beginning-of-line)
5791 (looking-at auto-fill-inhibit-regexp))))
5792 nil ;; Auto-filling not required
5793 (if (memq justify '(full center right))
5794 (save-excursion (unjustify-current-line)))
5795
5796 ;; Choose a fill-prefix automatically.
5797 (when (and adaptive-fill-mode
5798 (or (null fill-prefix) (string= fill-prefix "")))
5799 (let ((prefix
5800 (fill-context-prefix
5801 (save-excursion (fill-forward-paragraph -1) (point))
5802 (save-excursion (fill-forward-paragraph 1) (point)))))
5803 (and prefix (not (equal prefix ""))
5804 ;; Use auto-indentation rather than a guessed empty prefix.
5805 (not (and fill-indent-according-to-mode
5806 (string-match "\\`[ \t]*\\'" prefix)))
5807 (setq fill-prefix prefix))))
5808
5809 (while (and (not give-up) (> (current-column) fc))
5810 ;; Determine where to split the line.
5811 (let* (after-prefix
5812 (fill-point
5813 (save-excursion
5814 (beginning-of-line)
5815 (setq after-prefix (point))
5816 (and fill-prefix
5817 (looking-at (regexp-quote fill-prefix))
5818 (setq after-prefix (match-end 0)))
5819 (move-to-column (1+ fc))
5820 (fill-move-to-break-point after-prefix)
5821 (point))))
5822
5823 ;; See whether the place we found is any good.
5824 (if (save-excursion
5825 (goto-char fill-point)
5826 (or (bolp)
5827 ;; There is no use breaking at end of line.
5828 (save-excursion (skip-chars-forward " ") (eolp))
5829 ;; It is futile to split at the end of the prefix
5830 ;; since we would just insert the prefix again.
5831 (and after-prefix (<= (point) after-prefix))
5832 ;; Don't split right after a comment starter
5833 ;; since we would just make another comment starter.
5834 (and comment-start-skip
5835 (let ((limit (point)))
5836 (beginning-of-line)
5837 (and (re-search-forward comment-start-skip
5838 limit t)
5839 (eq (point) limit))))))
5840 ;; No good place to break => stop trying.
5841 (setq give-up t)
5842 ;; Ok, we have a useful place to break the line. Do it.
5843 (let ((prev-column (current-column)))
5844 ;; If point is at the fill-point, do not `save-excursion'.
5845 ;; Otherwise, if a comment prefix or fill-prefix is inserted,
5846 ;; point will end up before it rather than after it.
5847 (if (save-excursion
5848 (skip-chars-backward " \t")
5849 (= (point) fill-point))
5850 (default-indent-new-line t)
5851 (save-excursion
5852 (goto-char fill-point)
5853 (default-indent-new-line t)))
5854 ;; Now do justification, if required
5855 (if (not (eq justify 'left))
5856 (save-excursion
5857 (end-of-line 0)
5858 (justify-current-line justify nil t)))
5859 ;; If making the new line didn't reduce the hpos of
5860 ;; the end of the line, then give up now;
5861 ;; trying again will not help.
5862 (if (>= (current-column) prev-column)
5863 (setq give-up t))))))
5864 ;; Justify last line.
5865 (justify-current-line justify t t)
5866 t)))
5867
5868 (defvar comment-line-break-function 'comment-indent-new-line
5869 "Mode-specific function which line breaks and continues a comment.
5870 This function is called during auto-filling when a comment syntax
5871 is defined.
5872 The function should take a single optional argument, which is a flag
5873 indicating whether it should use soft newlines.")
5874
5875 (defun default-indent-new-line (&optional soft)
5876 "Break line at point and indent.
5877 If a comment syntax is defined, call `comment-indent-new-line'.
5878
5879 The inserted newline is marked hard if variable `use-hard-newlines' is true,
5880 unless optional argument SOFT is non-nil."
5881 (interactive)
5882 (if comment-start
5883 (funcall comment-line-break-function soft)
5884 ;; Insert the newline before removing empty space so that markers
5885 ;; get preserved better.
5886 (if soft (insert-and-inherit ?\n) (newline 1))
5887 (save-excursion (forward-char -1) (delete-horizontal-space))
5888 (delete-horizontal-space)
5889
5890 (if (and fill-prefix (not adaptive-fill-mode))
5891 ;; Blindly trust a non-adaptive fill-prefix.
5892 (progn
5893 (indent-to-left-margin)
5894 (insert-before-markers-and-inherit fill-prefix))
5895
5896 (cond
5897 ;; If there's an adaptive prefix, use it unless we're inside
5898 ;; a comment and the prefix is not a comment starter.
5899 (fill-prefix
5900 (indent-to-left-margin)
5901 (insert-and-inherit fill-prefix))
5902 ;; If we're not inside a comment, just try to indent.
5903 (t (indent-according-to-mode))))))
5904
5905 (defvar normal-auto-fill-function 'do-auto-fill
5906 "The function to use for `auto-fill-function' if Auto Fill mode is turned on.
5907 Some major modes set this.")
5908
5909 (put 'auto-fill-function :minor-mode-function 'auto-fill-mode)
5910 ;; `functions' and `hooks' are usually unsafe to set, but setting
5911 ;; auto-fill-function to nil in a file-local setting is safe and
5912 ;; can be useful to prevent auto-filling.
5913 (put 'auto-fill-function 'safe-local-variable 'null)
5914
5915 (define-minor-mode auto-fill-mode
5916 "Toggle automatic line breaking (Auto Fill mode).
5917 With a prefix argument ARG, enable Auto Fill mode if ARG is
5918 positive, and disable it otherwise. If called from Lisp, enable
5919 the mode if ARG is omitted or nil.
5920
5921 When Auto Fill mode is enabled, inserting a space at a column
5922 beyond `current-fill-column' automatically breaks the line at a
5923 previous space.
5924
5925 When `auto-fill-mode' is on, the `auto-fill-function' variable is
5926 non-`nil'.
5927
5928 The value of `normal-auto-fill-function' specifies the function to use
5929 for `auto-fill-function' when turning Auto Fill mode on."
5930 :variable (auto-fill-function
5931 . (lambda (v) (setq auto-fill-function
5932 (if v normal-auto-fill-function)))))
5933
5934 ;; This holds a document string used to document auto-fill-mode.
5935 (defun auto-fill-function ()
5936 "Automatically break line at a previous space, in insertion of text."
5937 nil)
5938
5939 (defun turn-on-auto-fill ()
5940 "Unconditionally turn on Auto Fill mode."
5941 (auto-fill-mode 1))
5942
5943 (defun turn-off-auto-fill ()
5944 "Unconditionally turn off Auto Fill mode."
5945 (auto-fill-mode -1))
5946
5947 (custom-add-option 'text-mode-hook 'turn-on-auto-fill)
5948
5949 (defun set-fill-column (arg)
5950 "Set `fill-column' to specified argument.
5951 Use \\[universal-argument] followed by a number to specify a column.
5952 Just \\[universal-argument] as argument means to use the current column."
5953 (interactive
5954 (list (or current-prefix-arg
5955 ;; We used to use current-column silently, but C-x f is too easily
5956 ;; typed as a typo for C-x C-f, so we turned it into an error and
5957 ;; now an interactive prompt.
5958 (read-number "Set fill-column to: " (current-column)))))
5959 (if (consp arg)
5960 (setq arg (current-column)))
5961 (if (not (integerp arg))
5962 ;; Disallow missing argument; it's probably a typo for C-x C-f.
5963 (error "set-fill-column requires an explicit argument")
5964 (message "Fill column set to %d (was %d)" arg fill-column)
5965 (setq fill-column arg)))
5966 \f
5967 (defun set-selective-display (arg)
5968 "Set `selective-display' to ARG; clear it if no arg.
5969 When the value of `selective-display' is a number > 0,
5970 lines whose indentation is >= that value are not displayed.
5971 The variable `selective-display' has a separate value for each buffer."
5972 (interactive "P")
5973 (if (eq selective-display t)
5974 (error "selective-display already in use for marked lines"))
5975 (let ((current-vpos
5976 (save-restriction
5977 (narrow-to-region (point-min) (point))
5978 (goto-char (window-start))
5979 (vertical-motion (window-height)))))
5980 (setq selective-display
5981 (and arg (prefix-numeric-value arg)))
5982 (recenter current-vpos))
5983 (set-window-start (selected-window) (window-start))
5984 (princ "selective-display set to " t)
5985 (prin1 selective-display t)
5986 (princ "." t))
5987
5988 (defvaralias 'indicate-unused-lines 'indicate-empty-lines)
5989
5990 (defun toggle-truncate-lines (&optional arg)
5991 "Toggle truncating of long lines for the current buffer.
5992 When truncating is off, long lines are folded.
5993 With prefix argument ARG, truncate long lines if ARG is positive,
5994 otherwise fold them. Note that in side-by-side windows, this
5995 command has no effect if `truncate-partial-width-windows' is
5996 non-nil."
5997 (interactive "P")
5998 (setq truncate-lines
5999 (if (null arg)
6000 (not truncate-lines)
6001 (> (prefix-numeric-value arg) 0)))
6002 (force-mode-line-update)
6003 (unless truncate-lines
6004 (let ((buffer (current-buffer)))
6005 (walk-windows (lambda (window)
6006 (if (eq buffer (window-buffer window))
6007 (set-window-hscroll window 0)))
6008 nil t)))
6009 (message "Truncate long lines %s"
6010 (if truncate-lines "enabled" "disabled")))
6011
6012 (defun toggle-word-wrap (&optional arg)
6013 "Toggle whether to use word-wrapping for continuation lines.
6014 With prefix argument ARG, wrap continuation lines at word boundaries
6015 if ARG is positive, otherwise wrap them at the right screen edge.
6016 This command toggles the value of `word-wrap'. It has no effect
6017 if long lines are truncated."
6018 (interactive "P")
6019 (setq word-wrap
6020 (if (null arg)
6021 (not word-wrap)
6022 (> (prefix-numeric-value arg) 0)))
6023 (force-mode-line-update)
6024 (message "Word wrapping %s"
6025 (if word-wrap "enabled" "disabled")))
6026
6027 (defvar overwrite-mode-textual (purecopy " Ovwrt")
6028 "The string displayed in the mode line when in overwrite mode.")
6029 (defvar overwrite-mode-binary (purecopy " Bin Ovwrt")
6030 "The string displayed in the mode line when in binary overwrite mode.")
6031
6032 (define-minor-mode overwrite-mode
6033 "Toggle Overwrite mode.
6034 With a prefix argument ARG, enable Overwrite mode if ARG is
6035 positive, and disable it otherwise. If called from Lisp, enable
6036 the mode if ARG is omitted or nil.
6037
6038 When Overwrite mode is enabled, printing characters typed in
6039 replace existing text on a one-for-one basis, rather than pushing
6040 it to the right. At the end of a line, such characters extend
6041 the line. Before a tab, such characters insert until the tab is
6042 filled in. \\[quoted-insert] still inserts characters in
6043 overwrite mode; this is supposed to make it easier to insert
6044 characters when necessary."
6045 :variable (overwrite-mode
6046 . (lambda (v) (setq overwrite-mode (if v 'overwrite-mode-textual)))))
6047
6048 (define-minor-mode binary-overwrite-mode
6049 "Toggle Binary Overwrite mode.
6050 With a prefix argument ARG, enable Binary Overwrite mode if ARG
6051 is positive, and disable it otherwise. If called from Lisp,
6052 enable the mode if ARG is omitted or nil.
6053
6054 When Binary Overwrite mode is enabled, printing characters typed
6055 in replace existing text. Newlines are not treated specially, so
6056 typing at the end of a line joins the line to the next, with the
6057 typed character between them. Typing before a tab character
6058 simply replaces the tab with the character typed.
6059 \\[quoted-insert] replaces the text at the cursor, just as
6060 ordinary typing characters do.
6061
6062 Note that Binary Overwrite mode is not its own minor mode; it is
6063 a specialization of overwrite mode, entered by setting the
6064 `overwrite-mode' variable to `overwrite-mode-binary'."
6065 :variable (overwrite-mode
6066 . (lambda (v) (setq overwrite-mode (if v 'overwrite-mode-binary)))))
6067
6068 (define-minor-mode line-number-mode
6069 "Toggle line number display in the mode line (Line Number mode).
6070 With a prefix argument ARG, enable Line Number mode if ARG is
6071 positive, and disable it otherwise. If called from Lisp, enable
6072 the mode if ARG is omitted or nil.
6073
6074 Line numbers do not appear for very large buffers and buffers
6075 with very long lines; see variables `line-number-display-limit'
6076 and `line-number-display-limit-width'."
6077 :init-value t :global t :group 'mode-line)
6078
6079 (define-minor-mode column-number-mode
6080 "Toggle column number display in the mode line (Column Number mode).
6081 With a prefix argument ARG, enable Column Number mode if ARG is
6082 positive, and disable it otherwise.
6083
6084 If called from Lisp, enable the mode if ARG is omitted or nil."
6085 :global t :group 'mode-line)
6086
6087 (define-minor-mode size-indication-mode
6088 "Toggle buffer size display in the mode line (Size Indication mode).
6089 With a prefix argument ARG, enable Size Indication mode if ARG is
6090 positive, and disable it otherwise.
6091
6092 If called from Lisp, enable the mode if ARG is omitted or nil."
6093 :global t :group 'mode-line)
6094
6095 (define-minor-mode auto-save-mode
6096 "Toggle auto-saving in the current buffer (Auto Save mode).
6097 With a prefix argument ARG, enable Auto Save mode if ARG is
6098 positive, and disable it otherwise.
6099
6100 If called from Lisp, enable the mode if ARG is omitted or nil."
6101 :variable ((and buffer-auto-save-file-name
6102 ;; If auto-save is off because buffer has shrunk,
6103 ;; then toggling should turn it on.
6104 (>= buffer-saved-size 0))
6105 . (lambda (val)
6106 (setq buffer-auto-save-file-name
6107 (cond
6108 ((null val) nil)
6109 ((and buffer-file-name auto-save-visited-file-name
6110 (not buffer-read-only))
6111 buffer-file-name)
6112 (t (make-auto-save-file-name))))))
6113 ;; If -1 was stored here, to temporarily turn off saving,
6114 ;; turn it back on.
6115 (and (< buffer-saved-size 0)
6116 (setq buffer-saved-size 0)))
6117 \f
6118 (defgroup paren-blinking nil
6119 "Blinking matching of parens and expressions."
6120 :prefix "blink-matching-"
6121 :group 'paren-matching)
6122
6123 (defcustom blink-matching-paren t
6124 "Non-nil means show matching open-paren when close-paren is inserted."
6125 :type 'boolean
6126 :group 'paren-blinking)
6127
6128 (defcustom blink-matching-paren-on-screen t
6129 "Non-nil means show matching open-paren when it is on screen.
6130 If nil, don't show it (but the open-paren can still be shown
6131 when it is off screen).
6132
6133 This variable has no effect if `blink-matching-paren' is nil.
6134 \(In that case, the open-paren is never shown.)
6135 It is also ignored if `show-paren-mode' is enabled."
6136 :type 'boolean
6137 :group 'paren-blinking)
6138
6139 (defcustom blink-matching-paren-distance (* 100 1024)
6140 "If non-nil, maximum distance to search backwards for matching open-paren.
6141 If nil, search stops at the beginning of the accessible portion of the buffer."
6142 :version "23.2" ; 25->100k
6143 :type '(choice (const nil) integer)
6144 :group 'paren-blinking)
6145
6146 (defcustom blink-matching-delay 1
6147 "Time in seconds to delay after showing a matching paren."
6148 :type 'number
6149 :group 'paren-blinking)
6150
6151 (defcustom blink-matching-paren-dont-ignore-comments nil
6152 "If nil, `blink-matching-paren' ignores comments.
6153 More precisely, when looking for the matching parenthesis,
6154 it skips the contents of comments that end before point."
6155 :type 'boolean
6156 :group 'paren-blinking)
6157
6158 (defun blink-matching-check-mismatch (start end)
6159 "Return whether or not START...END are matching parens.
6160 END is the current point and START is the blink position.
6161 START might be nil if no matching starter was found.
6162 Returns non-nil if we find there is a mismatch."
6163 (let* ((end-syntax (syntax-after (1- end)))
6164 (matching-paren (and (consp end-syntax)
6165 (eq (syntax-class end-syntax) 5)
6166 (cdr end-syntax))))
6167 ;; For self-matched chars like " and $, we can't know when they're
6168 ;; mismatched or unmatched, so we can only do it for parens.
6169 (when matching-paren
6170 (not (and start
6171 (or
6172 (eq (char-after start) matching-paren)
6173 ;; The cdr might hold a new paren-class info rather than
6174 ;; a matching-char info, in which case the two CDRs
6175 ;; should match.
6176 (eq matching-paren (cdr-safe (syntax-after start)))))))))
6177
6178 (defvar blink-matching-check-function #'blink-matching-check-mismatch
6179 "Function to check parentheses mismatches.
6180 The function takes two arguments (START and END) where START is the
6181 position just before the opening token and END is the position right after.
6182 START can be nil, if it was not found.
6183 The function should return non-nil if the two tokens do not match.")
6184
6185 (defun blink-matching-open ()
6186 "Move cursor momentarily to the beginning of the sexp before point."
6187 (interactive)
6188 (when (and (not (bobp))
6189 blink-matching-paren)
6190 (let* ((oldpos (point))
6191 (message-log-max nil) ; Don't log messages about paren matching.
6192 (blinkpos
6193 (save-excursion
6194 (save-restriction
6195 (if blink-matching-paren-distance
6196 (narrow-to-region
6197 (max (minibuffer-prompt-end) ;(point-min) unless minibuf.
6198 (- (point) blink-matching-paren-distance))
6199 oldpos))
6200 (let ((parse-sexp-ignore-comments
6201 (and parse-sexp-ignore-comments
6202 (not blink-matching-paren-dont-ignore-comments))))
6203 (condition-case ()
6204 (progn
6205 (forward-sexp -1)
6206 ;; backward-sexp skips backward over prefix chars,
6207 ;; so move back to the matching paren.
6208 (while (and (< (point) (1- oldpos))
6209 (let ((code (syntax-after (point))))
6210 (or (eq (syntax-class code) 6)
6211 (eq (logand 1048576 (car code))
6212 1048576))))
6213 (forward-char 1))
6214 (point))
6215 (error nil))))))
6216 (mismatch (funcall blink-matching-check-function blinkpos oldpos)))
6217 (cond
6218 (mismatch
6219 (if blinkpos
6220 (if (minibufferp)
6221 (minibuffer-message "Mismatched parentheses")
6222 (message "Mismatched parentheses"))
6223 (if (minibufferp)
6224 (minibuffer-message "No matching parenthesis found")
6225 (message "No matching parenthesis found"))))
6226 ((not blinkpos) nil)
6227 ((pos-visible-in-window-p blinkpos)
6228 ;; Matching open within window, temporarily move to blinkpos but only
6229 ;; if `blink-matching-paren-on-screen' is non-nil.
6230 (and blink-matching-paren-on-screen
6231 (not show-paren-mode)
6232 (save-excursion
6233 (goto-char blinkpos)
6234 (sit-for blink-matching-delay))))
6235 (t
6236 (save-excursion
6237 (goto-char blinkpos)
6238 (let ((open-paren-line-string
6239 ;; Show what precedes the open in its line, if anything.
6240 (cond
6241 ((save-excursion (skip-chars-backward " \t") (not (bolp)))
6242 (buffer-substring (line-beginning-position)
6243 (1+ blinkpos)))
6244 ;; Show what follows the open in its line, if anything.
6245 ((save-excursion
6246 (forward-char 1)
6247 (skip-chars-forward " \t")
6248 (not (eolp)))
6249 (buffer-substring blinkpos
6250 (line-end-position)))
6251 ;; Otherwise show the previous nonblank line,
6252 ;; if there is one.
6253 ((save-excursion (skip-chars-backward "\n \t") (not (bobp)))
6254 (concat
6255 (buffer-substring (progn
6256 (skip-chars-backward "\n \t")
6257 (line-beginning-position))
6258 (progn (end-of-line)
6259 (skip-chars-backward " \t")
6260 (point)))
6261 ;; Replace the newline and other whitespace with `...'.
6262 "..."
6263 (buffer-substring blinkpos (1+ blinkpos))))
6264 ;; There is nothing to show except the char itself.
6265 (t (buffer-substring blinkpos (1+ blinkpos))))))
6266 (message "Matches %s"
6267 (substring-no-properties open-paren-line-string)))))))))
6268
6269 (defvar blink-paren-function 'blink-matching-open
6270 "Function called, if non-nil, whenever a close parenthesis is inserted.
6271 More precisely, a char with closeparen syntax is self-inserted.")
6272
6273 (defun blink-paren-post-self-insert-function ()
6274 (when (and (eq (char-before) last-command-event) ; Sanity check.
6275 (memq (char-syntax last-command-event) '(?\) ?\$))
6276 blink-paren-function
6277 (not executing-kbd-macro)
6278 (not noninteractive)
6279 ;; Verify an even number of quoting characters precede the close.
6280 (= 1 (logand 1 (- (point)
6281 (save-excursion
6282 (forward-char -1)
6283 (skip-syntax-backward "/\\")
6284 (point))))))
6285 (funcall blink-paren-function)))
6286
6287 (add-hook 'post-self-insert-hook #'blink-paren-post-self-insert-function
6288 ;; Most likely, this hook is nil, so this arg doesn't matter,
6289 ;; but I use it as a reminder that this function usually
6290 ;; likes to be run after others since it does `sit-for'.
6291 'append)
6292 \f
6293 ;; This executes C-g typed while Emacs is waiting for a command.
6294 ;; Quitting out of a program does not go through here;
6295 ;; that happens in the QUIT macro at the C code level.
6296 (defun keyboard-quit ()
6297 "Signal a `quit' condition.
6298 During execution of Lisp code, this character causes a quit directly.
6299 At top-level, as an editor command, this simply beeps."
6300 (interactive)
6301 ;; Avoid adding the region to the window selection.
6302 (setq saved-region-selection nil)
6303 (let (select-active-regions)
6304 (deactivate-mark))
6305 (if (fboundp 'kmacro-keyboard-quit)
6306 (kmacro-keyboard-quit))
6307 (setq defining-kbd-macro nil)
6308 (let ((debug-on-quit nil))
6309 (signal 'quit nil)))
6310
6311 (defvar buffer-quit-function nil
6312 "Function to call to \"quit\" the current buffer, or nil if none.
6313 \\[keyboard-escape-quit] calls this function when its more local actions
6314 \(such as canceling a prefix argument, minibuffer or region) do not apply.")
6315
6316 (defun keyboard-escape-quit ()
6317 "Exit the current \"mode\" (in a generalized sense of the word).
6318 This command can exit an interactive command such as `query-replace',
6319 can clear out a prefix argument or a region,
6320 can get out of the minibuffer or other recursive edit,
6321 cancel the use of the current buffer (for special-purpose buffers),
6322 or go back to just one window (by deleting all but the selected window)."
6323 (interactive)
6324 (cond ((eq last-command 'mode-exited) nil)
6325 ((region-active-p)
6326 (deactivate-mark))
6327 ((> (minibuffer-depth) 0)
6328 (abort-recursive-edit))
6329 (current-prefix-arg
6330 nil)
6331 ((> (recursion-depth) 0)
6332 (exit-recursive-edit))
6333 (buffer-quit-function
6334 (funcall buffer-quit-function))
6335 ((not (one-window-p t))
6336 (delete-other-windows))
6337 ((string-match "^ \\*" (buffer-name (current-buffer)))
6338 (bury-buffer))))
6339
6340 (defun play-sound-file (file &optional volume device)
6341 "Play sound stored in FILE.
6342 VOLUME and DEVICE correspond to the keywords of the sound
6343 specification for `play-sound'."
6344 (interactive "fPlay sound file: ")
6345 (let ((sound (list :file file)))
6346 (if volume
6347 (plist-put sound :volume volume))
6348 (if device
6349 (plist-put sound :device device))
6350 (push 'sound sound)
6351 (play-sound sound)))
6352
6353 \f
6354 (defcustom read-mail-command 'rmail
6355 "Your preference for a mail reading package.
6356 This is used by some keybindings which support reading mail.
6357 See also `mail-user-agent' concerning sending mail."
6358 :type '(radio (function-item :tag "Rmail" :format "%t\n" rmail)
6359 (function-item :tag "Gnus" :format "%t\n" gnus)
6360 (function-item :tag "Emacs interface to MH"
6361 :format "%t\n" mh-rmail)
6362 (function :tag "Other"))
6363 :version "21.1"
6364 :group 'mail)
6365
6366 (defcustom mail-user-agent 'message-user-agent
6367 "Your preference for a mail composition package.
6368 Various Emacs Lisp packages (e.g. Reporter) require you to compose an
6369 outgoing email message. This variable lets you specify which
6370 mail-sending package you prefer.
6371
6372 Valid values include:
6373
6374 `message-user-agent' -- use the Message package.
6375 See Info node `(message)'.
6376 `sendmail-user-agent' -- use the Mail package.
6377 See Info node `(emacs)Sending Mail'.
6378 `mh-e-user-agent' -- use the Emacs interface to the MH mail system.
6379 See Info node `(mh-e)'.
6380 `gnus-user-agent' -- like `message-user-agent', but with Gnus
6381 paraphernalia if Gnus is running, particularly
6382 the Gcc: header for archiving.
6383
6384 Additional valid symbols may be available; check with the author of
6385 your package for details. The function should return non-nil if it
6386 succeeds.
6387
6388 See also `read-mail-command' concerning reading mail."
6389 :type '(radio (function-item :tag "Message package"
6390 :format "%t\n"
6391 message-user-agent)
6392 (function-item :tag "Mail package"
6393 :format "%t\n"
6394 sendmail-user-agent)
6395 (function-item :tag "Emacs interface to MH"
6396 :format "%t\n"
6397 mh-e-user-agent)
6398 (function-item :tag "Message with full Gnus features"
6399 :format "%t\n"
6400 gnus-user-agent)
6401 (function :tag "Other"))
6402 :version "23.2" ; sendmail->message
6403 :group 'mail)
6404
6405 (defcustom compose-mail-user-agent-warnings t
6406 "If non-nil, `compose-mail' warns about changes in `mail-user-agent'.
6407 If the value of `mail-user-agent' is the default, and the user
6408 appears to have customizations applying to the old default,
6409 `compose-mail' issues a warning."
6410 :type 'boolean
6411 :version "23.2"
6412 :group 'mail)
6413
6414 (defun rfc822-goto-eoh ()
6415 "If the buffer starts with a mail header, move point to the header's end.
6416 Otherwise, moves to `point-min'.
6417 The end of the header is the start of the next line, if there is one,
6418 else the end of the last line. This function obeys RFC822."
6419 (goto-char (point-min))
6420 (when (re-search-forward
6421 "^\\([:\n]\\|[^: \t\n]+[ \t\n]\\)" nil 'move)
6422 (goto-char (match-beginning 0))))
6423
6424 ;; Used by Rmail (e.g., rmail-forward).
6425 (defvar mail-encode-mml nil
6426 "If non-nil, mail-user-agent's `sendfunc' command should mml-encode
6427 the outgoing message before sending it.")
6428
6429 (defun compose-mail (&optional to subject other-headers continue
6430 switch-function yank-action send-actions
6431 return-action)
6432 "Start composing a mail message to send.
6433 This uses the user's chosen mail composition package
6434 as selected with the variable `mail-user-agent'.
6435 The optional arguments TO and SUBJECT specify recipients
6436 and the initial Subject field, respectively.
6437
6438 OTHER-HEADERS is an alist specifying additional
6439 header fields. Elements look like (HEADER . VALUE) where both
6440 HEADER and VALUE are strings.
6441
6442 CONTINUE, if non-nil, says to continue editing a message already
6443 being composed. Interactively, CONTINUE is the prefix argument.
6444
6445 SWITCH-FUNCTION, if non-nil, is a function to use to
6446 switch to and display the buffer used for mail composition.
6447
6448 YANK-ACTION, if non-nil, is an action to perform, if and when necessary,
6449 to insert the raw text of the message being replied to.
6450 It has the form (FUNCTION . ARGS). The user agent will apply
6451 FUNCTION to ARGS, to insert the raw text of the original message.
6452 \(The user agent will also run `mail-citation-hook', *after* the
6453 original text has been inserted in this way.)
6454
6455 SEND-ACTIONS is a list of actions to call when the message is sent.
6456 Each action has the form (FUNCTION . ARGS).
6457
6458 RETURN-ACTION, if non-nil, is an action for returning to the
6459 caller. It has the form (FUNCTION . ARGS). The function is
6460 called after the mail has been sent or put aside, and the mail
6461 buffer buried."
6462 (interactive
6463 (list nil nil nil current-prefix-arg))
6464
6465 ;; In Emacs 23.2, the default value of `mail-user-agent' changed
6466 ;; from sendmail-user-agent to message-user-agent. Some users may
6467 ;; encounter incompatibilities. This hack tries to detect problems
6468 ;; and warn about them.
6469 (and compose-mail-user-agent-warnings
6470 (eq mail-user-agent 'message-user-agent)
6471 (let (warn-vars)
6472 (dolist (var '(mail-mode-hook mail-send-hook mail-setup-hook
6473 mail-yank-hooks mail-archive-file-name
6474 mail-default-reply-to mail-mailing-lists
6475 mail-self-blind))
6476 (and (boundp var)
6477 (symbol-value var)
6478 (push var warn-vars)))
6479 (when warn-vars
6480 (display-warning 'mail
6481 (format "\
6482 The default mail mode is now Message mode.
6483 You have the following Mail mode variable%s customized:
6484 \n %s\n\nTo use Mail mode, set `mail-user-agent' to sendmail-user-agent.
6485 To disable this warning, set `compose-mail-user-agent-warnings' to nil."
6486 (if (> (length warn-vars) 1) "s" "")
6487 (mapconcat 'symbol-name
6488 warn-vars " "))))))
6489
6490 (let ((function (get mail-user-agent 'composefunc)))
6491 (funcall function to subject other-headers continue switch-function
6492 yank-action send-actions return-action)))
6493
6494 (defun compose-mail-other-window (&optional to subject other-headers continue
6495 yank-action send-actions
6496 return-action)
6497 "Like \\[compose-mail], but edit the outgoing message in another window."
6498 (interactive (list nil nil nil current-prefix-arg))
6499 (compose-mail to subject other-headers continue
6500 'switch-to-buffer-other-window yank-action send-actions
6501 return-action))
6502
6503 (defun compose-mail-other-frame (&optional to subject other-headers continue
6504 yank-action send-actions
6505 return-action)
6506 "Like \\[compose-mail], but edit the outgoing message in another frame."
6507 (interactive (list nil nil nil current-prefix-arg))
6508 (compose-mail to subject other-headers continue
6509 'switch-to-buffer-other-frame yank-action send-actions
6510 return-action))
6511
6512 \f
6513 (defvar set-variable-value-history nil
6514 "History of values entered with `set-variable'.
6515
6516 Maximum length of the history list is determined by the value
6517 of `history-length', which see.")
6518
6519 (defun set-variable (variable value &optional make-local)
6520 "Set VARIABLE to VALUE. VALUE is a Lisp object.
6521 VARIABLE should be a user option variable name, a Lisp variable
6522 meant to be customized by users. You should enter VALUE in Lisp syntax,
6523 so if you want VALUE to be a string, you must surround it with doublequotes.
6524 VALUE is used literally, not evaluated.
6525
6526 If VARIABLE has a `variable-interactive' property, that is used as if
6527 it were the arg to `interactive' (which see) to interactively read VALUE.
6528
6529 If VARIABLE has been defined with `defcustom', then the type information
6530 in the definition is used to check that VALUE is valid.
6531
6532 With a prefix argument, set VARIABLE to VALUE buffer-locally."
6533 (interactive
6534 (let* ((default-var (variable-at-point))
6535 (var (if (custom-variable-p default-var)
6536 (read-variable (format "Set variable (default %s): " default-var)
6537 default-var)
6538 (read-variable "Set variable: ")))
6539 (minibuffer-help-form '(describe-variable var))
6540 (prop (get var 'variable-interactive))
6541 (obsolete (car (get var 'byte-obsolete-variable)))
6542 (prompt (format "Set %s %s to value: " var
6543 (cond ((local-variable-p var)
6544 "(buffer-local)")
6545 ((or current-prefix-arg
6546 (local-variable-if-set-p var))
6547 "buffer-locally")
6548 (t "globally"))))
6549 (val (progn
6550 (when obsolete
6551 (message (concat "`%S' is obsolete; "
6552 (if (symbolp obsolete) "use `%S' instead" "%s"))
6553 var obsolete)
6554 (sit-for 3))
6555 (if prop
6556 ;; Use VAR's `variable-interactive' property
6557 ;; as an interactive spec for prompting.
6558 (call-interactively `(lambda (arg)
6559 (interactive ,prop)
6560 arg))
6561 (read-from-minibuffer prompt nil
6562 read-expression-map t
6563 'set-variable-value-history
6564 (format "%S" (symbol-value var)))))))
6565 (list var val current-prefix-arg)))
6566
6567 (and (custom-variable-p variable)
6568 (not (get variable 'custom-type))
6569 (custom-load-symbol variable))
6570 (let ((type (get variable 'custom-type)))
6571 (when type
6572 ;; Match with custom type.
6573 (require 'cus-edit)
6574 (setq type (widget-convert type))
6575 (unless (widget-apply type :match value)
6576 (error "Value `%S' does not match type %S of %S"
6577 value (car type) variable))))
6578
6579 (if make-local
6580 (make-local-variable variable))
6581
6582 (set variable value)
6583
6584 ;; Force a thorough redisplay for the case that the variable
6585 ;; has an effect on the display, like `tab-width' has.
6586 (force-mode-line-update))
6587 \f
6588 ;; Define the major mode for lists of completions.
6589
6590 (defvar completion-list-mode-map
6591 (let ((map (make-sparse-keymap)))
6592 (define-key map [mouse-2] 'mouse-choose-completion)
6593 (define-key map [follow-link] 'mouse-face)
6594 (define-key map [down-mouse-2] nil)
6595 (define-key map "\C-m" 'choose-completion)
6596 (define-key map "\e\e\e" 'delete-completion-window)
6597 (define-key map [left] 'previous-completion)
6598 (define-key map [right] 'next-completion)
6599 (define-key map "q" 'quit-window)
6600 (define-key map "z" 'kill-this-buffer)
6601 map)
6602 "Local map for completion list buffers.")
6603
6604 ;; Completion mode is suitable only for specially formatted data.
6605 (put 'completion-list-mode 'mode-class 'special)
6606
6607 (defvar completion-reference-buffer nil
6608 "Record the buffer that was current when the completion list was requested.
6609 This is a local variable in the completion list buffer.
6610 Initial value is nil to avoid some compiler warnings.")
6611
6612 (defvar completion-no-auto-exit nil
6613 "Non-nil means `choose-completion-string' should never exit the minibuffer.
6614 This also applies to other functions such as `choose-completion'.")
6615
6616 (defvar completion-base-position nil
6617 "Position of the base of the text corresponding to the shown completions.
6618 This variable is used in the *Completions* buffers.
6619 Its value is a list of the form (START END) where START is the place
6620 where the completion should be inserted and END (if non-nil) is the end
6621 of the text to replace. If END is nil, point is used instead.")
6622
6623 (defvar completion-list-insert-choice-function #'completion--replace
6624 "Function to use to insert the text chosen in *Completions*.
6625 Called with three arguments (BEG END TEXT), it should replace the text
6626 between BEG and END with TEXT. Expected to be set buffer-locally
6627 in the *Completions* buffer.")
6628
6629 (defvar completion-base-size nil
6630 "Number of chars before point not involved in completion.
6631 This is a local variable in the completion list buffer.
6632 It refers to the chars in the minibuffer if completing in the
6633 minibuffer, or in `completion-reference-buffer' otherwise.
6634 Only characters in the field at point are included.
6635
6636 If nil, Emacs determines which part of the tail end of the
6637 buffer's text is involved in completion by comparing the text
6638 directly.")
6639 (make-obsolete-variable 'completion-base-size 'completion-base-position "23.2")
6640
6641 (defun delete-completion-window ()
6642 "Delete the completion list window.
6643 Go to the window from which completion was requested."
6644 (interactive)
6645 (let ((buf completion-reference-buffer))
6646 (if (one-window-p t)
6647 (if (window-dedicated-p) (delete-frame))
6648 (delete-window (selected-window))
6649 (if (get-buffer-window buf)
6650 (select-window (get-buffer-window buf))))))
6651
6652 (defun previous-completion (n)
6653 "Move to the previous item in the completion list."
6654 (interactive "p")
6655 (next-completion (- n)))
6656
6657 (defun next-completion (n)
6658 "Move to the next item in the completion list.
6659 With prefix argument N, move N items (negative N means move backward)."
6660 (interactive "p")
6661 (let ((beg (point-min)) (end (point-max)))
6662 (while (and (> n 0) (not (eobp)))
6663 ;; If in a completion, move to the end of it.
6664 (when (get-text-property (point) 'mouse-face)
6665 (goto-char (next-single-property-change (point) 'mouse-face nil end)))
6666 ;; Move to start of next one.
6667 (unless (get-text-property (point) 'mouse-face)
6668 (goto-char (next-single-property-change (point) 'mouse-face nil end)))
6669 (setq n (1- n)))
6670 (while (and (< n 0) (not (bobp)))
6671 (let ((prop (get-text-property (1- (point)) 'mouse-face)))
6672 ;; If in a completion, move to the start of it.
6673 (when (and prop (eq prop (get-text-property (point) 'mouse-face)))
6674 (goto-char (previous-single-property-change
6675 (point) 'mouse-face nil beg)))
6676 ;; Move to end of the previous completion.
6677 (unless (or (bobp) (get-text-property (1- (point)) 'mouse-face))
6678 (goto-char (previous-single-property-change
6679 (point) 'mouse-face nil beg)))
6680 ;; Move to the start of that one.
6681 (goto-char (previous-single-property-change
6682 (point) 'mouse-face nil beg))
6683 (setq n (1+ n))))))
6684
6685 (defun choose-completion (&optional event)
6686 "Choose the completion at point."
6687 (interactive (list last-nonmenu-event))
6688 ;; In case this is run via the mouse, give temporary modes such as
6689 ;; isearch a chance to turn off.
6690 (run-hooks 'mouse-leave-buffer-hook)
6691 (with-current-buffer (window-buffer (posn-window (event-start event)))
6692 (let ((buffer completion-reference-buffer)
6693 (base-size completion-base-size)
6694 (base-position completion-base-position)
6695 (insert-function completion-list-insert-choice-function)
6696 (choice
6697 (save-excursion
6698 (goto-char (posn-point (event-start event)))
6699 (let (beg end)
6700 (cond
6701 ((and (not (eobp)) (get-text-property (point) 'mouse-face))
6702 (setq end (point) beg (1+ (point))))
6703 ((and (not (bobp))
6704 (get-text-property (1- (point)) 'mouse-face))
6705 (setq end (1- (point)) beg (point)))
6706 (t (error "No completion here")))
6707 (setq beg (previous-single-property-change beg 'mouse-face))
6708 (setq end (or (next-single-property-change end 'mouse-face)
6709 (point-max)))
6710 (buffer-substring-no-properties beg end)))))
6711
6712 (unless (buffer-live-p buffer)
6713 (error "Destination buffer is dead"))
6714 (quit-window nil (posn-window (event-start event)))
6715
6716 (with-current-buffer buffer
6717 (choose-completion-string
6718 choice buffer
6719 (or base-position
6720 (when base-size
6721 ;; Someone's using old completion code that doesn't know
6722 ;; about base-position yet.
6723 (list (+ base-size (field-beginning))))
6724 ;; If all else fails, just guess.
6725 (list (choose-completion-guess-base-position choice)))
6726 insert-function)))))
6727
6728 ;; Delete the longest partial match for STRING
6729 ;; that can be found before POINT.
6730 (defun choose-completion-guess-base-position (string)
6731 (save-excursion
6732 (let ((opoint (point))
6733 len)
6734 ;; Try moving back by the length of the string.
6735 (goto-char (max (- (point) (length string))
6736 (minibuffer-prompt-end)))
6737 ;; See how far back we were actually able to move. That is the
6738 ;; upper bound on how much we can match and delete.
6739 (setq len (- opoint (point)))
6740 (if completion-ignore-case
6741 (setq string (downcase string)))
6742 (while (and (> len 0)
6743 (let ((tail (buffer-substring (point) opoint)))
6744 (if completion-ignore-case
6745 (setq tail (downcase tail)))
6746 (not (string= tail (substring string 0 len)))))
6747 (setq len (1- len))
6748 (forward-char 1))
6749 (point))))
6750
6751 (defun choose-completion-delete-max-match (string)
6752 (declare (obsolete choose-completion-guess-base-position "23.2"))
6753 (delete-region (choose-completion-guess-base-position string) (point)))
6754
6755 (defvar choose-completion-string-functions nil
6756 "Functions that may override the normal insertion of a completion choice.
6757 These functions are called in order with four arguments:
6758 CHOICE - the string to insert in the buffer,
6759 BUFFER - the buffer in which the choice should be inserted,
6760 MINI-P - non-nil if BUFFER is a minibuffer, and
6761 BASE-SIZE - the number of characters in BUFFER before
6762 the string being completed.
6763
6764 If a function in the list returns non-nil, that function is supposed
6765 to have inserted the CHOICE in the BUFFER, and possibly exited
6766 the minibuffer; no further functions will be called.
6767
6768 If all functions in the list return nil, that means to use
6769 the default method of inserting the completion in BUFFER.")
6770
6771 (defun choose-completion-string (choice &optional
6772 buffer base-position insert-function)
6773 "Switch to BUFFER and insert the completion choice CHOICE.
6774 BASE-POSITION says where to insert the completion.
6775 INSERT-FUNCTION says how to insert the completion and falls
6776 back on `completion-list-insert-choice-function' when nil."
6777
6778 ;; If BUFFER is the minibuffer, exit the minibuffer
6779 ;; unless it is reading a file name and CHOICE is a directory,
6780 ;; or completion-no-auto-exit is non-nil.
6781
6782 ;; Some older code may call us passing `base-size' instead of
6783 ;; `base-position'. It's difficult to make any use of `base-size',
6784 ;; so we just ignore it.
6785 (unless (consp base-position)
6786 (message "Obsolete `base-size' passed to choose-completion-string")
6787 (setq base-position nil))
6788
6789 (let* ((buffer (or buffer completion-reference-buffer))
6790 (mini-p (minibufferp buffer)))
6791 ;; If BUFFER is a minibuffer, barf unless it's the currently
6792 ;; active minibuffer.
6793 (if (and mini-p
6794 (not (and (active-minibuffer-window)
6795 (equal buffer
6796 (window-buffer (active-minibuffer-window))))))
6797 (error "Minibuffer is not active for completion")
6798 ;; Set buffer so buffer-local choose-completion-string-functions works.
6799 (set-buffer buffer)
6800 (unless (run-hook-with-args-until-success
6801 'choose-completion-string-functions
6802 ;; The fourth arg used to be `mini-p' but was useless
6803 ;; (since minibufferp can be used on the `buffer' arg)
6804 ;; and indeed unused. The last used to be `base-size', so we
6805 ;; keep it to try and avoid breaking old code.
6806 choice buffer base-position nil)
6807 ;; This remove-text-properties should be unnecessary since `choice'
6808 ;; comes from buffer-substring-no-properties.
6809 ;;(remove-text-properties 0 (length choice) '(mouse-face nil) choice)
6810 ;; Insert the completion into the buffer where it was requested.
6811 (funcall (or insert-function completion-list-insert-choice-function)
6812 (or (car base-position) (point))
6813 (or (cadr base-position) (point))
6814 choice)
6815 ;; Update point in the window that BUFFER is showing in.
6816 (let ((window (get-buffer-window buffer t)))
6817 (set-window-point window (point)))
6818 ;; If completing for the minibuffer, exit it with this choice.
6819 (and (not completion-no-auto-exit)
6820 (minibufferp buffer)
6821 minibuffer-completion-table
6822 ;; If this is reading a file name, and the file name chosen
6823 ;; is a directory, don't exit the minibuffer.
6824 (let* ((result (buffer-substring (field-beginning) (point)))
6825 (bounds
6826 (completion-boundaries result minibuffer-completion-table
6827 minibuffer-completion-predicate
6828 "")))
6829 (if (eq (car bounds) (length result))
6830 ;; The completion chosen leads to a new set of completions
6831 ;; (e.g. it's a directory): don't exit the minibuffer yet.
6832 (let ((mini (active-minibuffer-window)))
6833 (select-window mini)
6834 (when minibuffer-auto-raise
6835 (raise-frame (window-frame mini))))
6836 (exit-minibuffer))))))))
6837
6838 (define-derived-mode completion-list-mode nil "Completion List"
6839 "Major mode for buffers showing lists of possible completions.
6840 Type \\<completion-list-mode-map>\\[choose-completion] in the completion list\
6841 to select the completion near point.
6842 Use \\<completion-list-mode-map>\\[mouse-choose-completion] to select one\
6843 with the mouse.
6844
6845 \\{completion-list-mode-map}"
6846 (set (make-local-variable 'completion-base-size) nil))
6847
6848 (defun completion-list-mode-finish ()
6849 "Finish setup of the completions buffer.
6850 Called from `temp-buffer-show-hook'."
6851 (when (eq major-mode 'completion-list-mode)
6852 (setq buffer-read-only t)))
6853
6854 (add-hook 'temp-buffer-show-hook 'completion-list-mode-finish)
6855
6856
6857 ;; Variables and faces used in `completion-setup-function'.
6858
6859 (defcustom completion-show-help t
6860 "Non-nil means show help message in *Completions* buffer."
6861 :type 'boolean
6862 :version "22.1"
6863 :group 'completion)
6864
6865 ;; This function goes in completion-setup-hook, so that it is called
6866 ;; after the text of the completion list buffer is written.
6867 (defun completion-setup-function ()
6868 (let* ((mainbuf (current-buffer))
6869 (base-dir
6870 ;; FIXME: This is a bad hack. We try to set the default-directory
6871 ;; in the *Completions* buffer so that the relative file names
6872 ;; displayed there can be treated as valid file names, independently
6873 ;; from the completion context. But this suffers from many problems:
6874 ;; - It's not clear when the completions are file names. With some
6875 ;; completion tables (e.g. bzr revision specs), the listed
6876 ;; completions can mix file names and other things.
6877 ;; - It doesn't pay attention to possible quoting.
6878 ;; - With fancy completion styles, the code below will not always
6879 ;; find the right base directory.
6880 (if minibuffer-completing-file-name
6881 (file-name-as-directory
6882 (expand-file-name
6883 (buffer-substring (minibuffer-prompt-end)
6884 (- (point) (or completion-base-size 0))))))))
6885 (with-current-buffer standard-output
6886 (let ((base-size completion-base-size) ;Read before killing localvars.
6887 (base-position completion-base-position)
6888 (insert-fun completion-list-insert-choice-function))
6889 (completion-list-mode)
6890 (set (make-local-variable 'completion-base-size) base-size)
6891 (set (make-local-variable 'completion-base-position) base-position)
6892 (set (make-local-variable 'completion-list-insert-choice-function)
6893 insert-fun))
6894 (set (make-local-variable 'completion-reference-buffer) mainbuf)
6895 (if base-dir (setq default-directory base-dir))
6896 ;; Maybe insert help string.
6897 (when completion-show-help
6898 (goto-char (point-min))
6899 (if (display-mouse-p)
6900 (insert (substitute-command-keys
6901 "Click \\[mouse-choose-completion] on a completion to select it.\n")))
6902 (insert (substitute-command-keys
6903 "In this buffer, type \\[choose-completion] to \
6904 select the completion near point.\n\n"))))))
6905
6906 (add-hook 'completion-setup-hook 'completion-setup-function)
6907
6908 (define-key minibuffer-local-completion-map [prior] 'switch-to-completions)
6909 (define-key minibuffer-local-completion-map "\M-v" 'switch-to-completions)
6910
6911 (defun switch-to-completions ()
6912 "Select the completion list window."
6913 (interactive)
6914 (let ((window (or (get-buffer-window "*Completions*" 0)
6915 ;; Make sure we have a completions window.
6916 (progn (minibuffer-completion-help)
6917 (get-buffer-window "*Completions*" 0)))))
6918 (when window
6919 (select-window window)
6920 ;; In the new buffer, go to the first completion.
6921 ;; FIXME: Perhaps this should be done in `minibuffer-completion-help'.
6922 (when (bobp)
6923 (next-completion 1)))))
6924 \f
6925 ;;; Support keyboard commands to turn on various modifiers.
6926
6927 ;; These functions -- which are not commands -- each add one modifier
6928 ;; to the following event.
6929
6930 (defun event-apply-alt-modifier (_ignore-prompt)
6931 "\\<function-key-map>Add the Alt modifier to the following event.
6932 For example, type \\[event-apply-alt-modifier] & to enter Alt-&."
6933 (vector (event-apply-modifier (read-event) 'alt 22 "A-")))
6934 (defun event-apply-super-modifier (_ignore-prompt)
6935 "\\<function-key-map>Add the Super modifier to the following event.
6936 For example, type \\[event-apply-super-modifier] & to enter Super-&."
6937 (vector (event-apply-modifier (read-event) 'super 23 "s-")))
6938 (defun event-apply-hyper-modifier (_ignore-prompt)
6939 "\\<function-key-map>Add the Hyper modifier to the following event.
6940 For example, type \\[event-apply-hyper-modifier] & to enter Hyper-&."
6941 (vector (event-apply-modifier (read-event) 'hyper 24 "H-")))
6942 (defun event-apply-shift-modifier (_ignore-prompt)
6943 "\\<function-key-map>Add the Shift modifier to the following event.
6944 For example, type \\[event-apply-shift-modifier] & to enter Shift-&."
6945 (vector (event-apply-modifier (read-event) 'shift 25 "S-")))
6946 (defun event-apply-control-modifier (_ignore-prompt)
6947 "\\<function-key-map>Add the Ctrl modifier to the following event.
6948 For example, type \\[event-apply-control-modifier] & to enter Ctrl-&."
6949 (vector (event-apply-modifier (read-event) 'control 26 "C-")))
6950 (defun event-apply-meta-modifier (_ignore-prompt)
6951 "\\<function-key-map>Add the Meta modifier to the following event.
6952 For example, type \\[event-apply-meta-modifier] & to enter Meta-&."
6953 (vector (event-apply-modifier (read-event) 'meta 27 "M-")))
6954
6955 (defun event-apply-modifier (event symbol lshiftby prefix)
6956 "Apply a modifier flag to event EVENT.
6957 SYMBOL is the name of this modifier, as a symbol.
6958 LSHIFTBY is the numeric value of this modifier, in keyboard events.
6959 PREFIX is the string that represents this modifier in an event type symbol."
6960 (if (numberp event)
6961 (cond ((eq symbol 'control)
6962 (if (and (<= (downcase event) ?z)
6963 (>= (downcase event) ?a))
6964 (- (downcase event) ?a -1)
6965 (if (and (<= (downcase event) ?Z)
6966 (>= (downcase event) ?A))
6967 (- (downcase event) ?A -1)
6968 (logior (lsh 1 lshiftby) event))))
6969 ((eq symbol 'shift)
6970 (if (and (<= (downcase event) ?z)
6971 (>= (downcase event) ?a))
6972 (upcase event)
6973 (logior (lsh 1 lshiftby) event)))
6974 (t
6975 (logior (lsh 1 lshiftby) event)))
6976 (if (memq symbol (event-modifiers event))
6977 event
6978 (let ((event-type (if (symbolp event) event (car event))))
6979 (setq event-type (intern (concat prefix (symbol-name event-type))))
6980 (if (symbolp event)
6981 event-type
6982 (cons event-type (cdr event)))))))
6983
6984 (define-key function-key-map [?\C-x ?@ ?h] 'event-apply-hyper-modifier)
6985 (define-key function-key-map [?\C-x ?@ ?s] 'event-apply-super-modifier)
6986 (define-key function-key-map [?\C-x ?@ ?m] 'event-apply-meta-modifier)
6987 (define-key function-key-map [?\C-x ?@ ?a] 'event-apply-alt-modifier)
6988 (define-key function-key-map [?\C-x ?@ ?S] 'event-apply-shift-modifier)
6989 (define-key function-key-map [?\C-x ?@ ?c] 'event-apply-control-modifier)
6990 \f
6991 ;;;; Keypad support.
6992
6993 ;; Make the keypad keys act like ordinary typing keys. If people add
6994 ;; bindings for the function key symbols, then those bindings will
6995 ;; override these, so this shouldn't interfere with any existing
6996 ;; bindings.
6997
6998 ;; Also tell read-char how to handle these keys.
6999 (mapc
7000 (lambda (keypad-normal)
7001 (let ((keypad (nth 0 keypad-normal))
7002 (normal (nth 1 keypad-normal)))
7003 (put keypad 'ascii-character normal)
7004 (define-key function-key-map (vector keypad) (vector normal))))
7005 '((kp-0 ?0) (kp-1 ?1) (kp-2 ?2) (kp-3 ?3) (kp-4 ?4)
7006 (kp-5 ?5) (kp-6 ?6) (kp-7 ?7) (kp-8 ?8) (kp-9 ?9)
7007 (kp-space ?\s)
7008 (kp-tab ?\t)
7009 (kp-enter ?\r)
7010 (kp-multiply ?*)
7011 (kp-add ?+)
7012 (kp-separator ?,)
7013 (kp-subtract ?-)
7014 (kp-decimal ?.)
7015 (kp-divide ?/)
7016 (kp-equal ?=)
7017 ;; Do the same for various keys that are represented as symbols under
7018 ;; GUIs but naturally correspond to characters.
7019 (backspace 127)
7020 (delete 127)
7021 (tab ?\t)
7022 (linefeed ?\n)
7023 (clear ?\C-l)
7024 (return ?\C-m)
7025 (escape ?\e)
7026 ))
7027 \f
7028 ;;;;
7029 ;;;; forking a twin copy of a buffer.
7030 ;;;;
7031
7032 (defvar clone-buffer-hook nil
7033 "Normal hook to run in the new buffer at the end of `clone-buffer'.")
7034
7035 (defvar clone-indirect-buffer-hook nil
7036 "Normal hook to run in the new buffer at the end of `clone-indirect-buffer'.")
7037
7038 (defun clone-process (process &optional newname)
7039 "Create a twin copy of PROCESS.
7040 If NEWNAME is nil, it defaults to PROCESS' name;
7041 NEWNAME is modified by adding or incrementing <N> at the end as necessary.
7042 If PROCESS is associated with a buffer, the new process will be associated
7043 with the current buffer instead.
7044 Returns nil if PROCESS has already terminated."
7045 (setq newname (or newname (process-name process)))
7046 (if (string-match "<[0-9]+>\\'" newname)
7047 (setq newname (substring newname 0 (match-beginning 0))))
7048 (when (memq (process-status process) '(run stop open))
7049 (let* ((process-connection-type (process-tty-name process))
7050 (new-process
7051 (if (memq (process-status process) '(open))
7052 (let ((args (process-contact process t)))
7053 (setq args (plist-put args :name newname))
7054 (setq args (plist-put args :buffer
7055 (if (process-buffer process)
7056 (current-buffer))))
7057 (apply 'make-network-process args))
7058 (apply 'start-process newname
7059 (if (process-buffer process) (current-buffer))
7060 (process-command process)))))
7061 (set-process-query-on-exit-flag
7062 new-process (process-query-on-exit-flag process))
7063 (set-process-inherit-coding-system-flag
7064 new-process (process-inherit-coding-system-flag process))
7065 (set-process-filter new-process (process-filter process))
7066 (set-process-sentinel new-process (process-sentinel process))
7067 (set-process-plist new-process (copy-sequence (process-plist process)))
7068 new-process)))
7069
7070 ;; things to maybe add (currently partly covered by `funcall mode'):
7071 ;; - syntax-table
7072 ;; - overlays
7073 (defun clone-buffer (&optional newname display-flag)
7074 "Create and return a twin copy of the current buffer.
7075 Unlike an indirect buffer, the new buffer can be edited
7076 independently of the old one (if it is not read-only).
7077 NEWNAME is the name of the new buffer. It may be modified by
7078 adding or incrementing <N> at the end as necessary to create a
7079 unique buffer name. If nil, it defaults to the name of the
7080 current buffer, with the proper suffix. If DISPLAY-FLAG is
7081 non-nil, the new buffer is shown with `pop-to-buffer'. Trying to
7082 clone a file-visiting buffer, or a buffer whose major mode symbol
7083 has a non-nil `no-clone' property, results in an error.
7084
7085 Interactively, DISPLAY-FLAG is t and NEWNAME is the name of the
7086 current buffer with appropriate suffix. However, if a prefix
7087 argument is given, then the command prompts for NEWNAME in the
7088 minibuffer.
7089
7090 This runs the normal hook `clone-buffer-hook' in the new buffer
7091 after it has been set up properly in other respects."
7092 (interactive
7093 (progn
7094 (if buffer-file-name
7095 (error "Cannot clone a file-visiting buffer"))
7096 (if (get major-mode 'no-clone)
7097 (error "Cannot clone a buffer in %s mode" mode-name))
7098 (list (if current-prefix-arg
7099 (read-buffer "Name of new cloned buffer: " (current-buffer)))
7100 t)))
7101 (if buffer-file-name
7102 (error "Cannot clone a file-visiting buffer"))
7103 (if (get major-mode 'no-clone)
7104 (error "Cannot clone a buffer in %s mode" mode-name))
7105 (setq newname (or newname (buffer-name)))
7106 (if (string-match "<[0-9]+>\\'" newname)
7107 (setq newname (substring newname 0 (match-beginning 0))))
7108 (let ((buf (current-buffer))
7109 (ptmin (point-min))
7110 (ptmax (point-max))
7111 (pt (point))
7112 (mk (if mark-active (mark t)))
7113 (modified (buffer-modified-p))
7114 (mode major-mode)
7115 (lvars (buffer-local-variables))
7116 (process (get-buffer-process (current-buffer)))
7117 (new (generate-new-buffer (or newname (buffer-name)))))
7118 (save-restriction
7119 (widen)
7120 (with-current-buffer new
7121 (insert-buffer-substring buf)))
7122 (with-current-buffer new
7123 (narrow-to-region ptmin ptmax)
7124 (goto-char pt)
7125 (if mk (set-mark mk))
7126 (set-buffer-modified-p modified)
7127
7128 ;; Clone the old buffer's process, if any.
7129 (when process (clone-process process))
7130
7131 ;; Now set up the major mode.
7132 (funcall mode)
7133
7134 ;; Set up other local variables.
7135 (mapc (lambda (v)
7136 (condition-case () ;in case var is read-only
7137 (if (symbolp v)
7138 (makunbound v)
7139 (set (make-local-variable (car v)) (cdr v)))
7140 (error nil)))
7141 lvars)
7142
7143 ;; Run any hooks (typically set up by the major mode
7144 ;; for cloning to work properly).
7145 (run-hooks 'clone-buffer-hook))
7146 (if display-flag
7147 ;; Presumably the current buffer is shown in the selected frame, so
7148 ;; we want to display the clone elsewhere.
7149 (let ((same-window-regexps nil)
7150 (same-window-buffer-names))
7151 (pop-to-buffer new)))
7152 new))
7153
7154
7155 (defun clone-indirect-buffer (newname display-flag &optional norecord)
7156 "Create an indirect buffer that is a twin copy of the current buffer.
7157
7158 Give the indirect buffer name NEWNAME. Interactively, read NEWNAME
7159 from the minibuffer when invoked with a prefix arg. If NEWNAME is nil
7160 or if not called with a prefix arg, NEWNAME defaults to the current
7161 buffer's name. The name is modified by adding a `<N>' suffix to it
7162 or by incrementing the N in an existing suffix. Trying to clone a
7163 buffer whose major mode symbol has a non-nil `no-clone-indirect'
7164 property results in an error.
7165
7166 DISPLAY-FLAG non-nil means show the new buffer with `pop-to-buffer'.
7167 This is always done when called interactively.
7168
7169 Optional third arg NORECORD non-nil means do not put this buffer at the
7170 front of the list of recently selected ones."
7171 (interactive
7172 (progn
7173 (if (get major-mode 'no-clone-indirect)
7174 (error "Cannot indirectly clone a buffer in %s mode" mode-name))
7175 (list (if current-prefix-arg
7176 (read-buffer "Name of indirect buffer: " (current-buffer)))
7177 t)))
7178 (if (get major-mode 'no-clone-indirect)
7179 (error "Cannot indirectly clone a buffer in %s mode" mode-name))
7180 (setq newname (or newname (buffer-name)))
7181 (if (string-match "<[0-9]+>\\'" newname)
7182 (setq newname (substring newname 0 (match-beginning 0))))
7183 (let* ((name (generate-new-buffer-name newname))
7184 (buffer (make-indirect-buffer (current-buffer) name t)))
7185 (with-current-buffer buffer
7186 (run-hooks 'clone-indirect-buffer-hook))
7187 (when display-flag
7188 (pop-to-buffer buffer norecord))
7189 buffer))
7190
7191
7192 (defun clone-indirect-buffer-other-window (newname display-flag &optional norecord)
7193 "Like `clone-indirect-buffer' but display in another window."
7194 (interactive
7195 (progn
7196 (if (get major-mode 'no-clone-indirect)
7197 (error "Cannot indirectly clone a buffer in %s mode" mode-name))
7198 (list (if current-prefix-arg
7199 (read-buffer "Name of indirect buffer: " (current-buffer)))
7200 t)))
7201 (let ((pop-up-windows t))
7202 (clone-indirect-buffer newname display-flag norecord)))
7203
7204 \f
7205 ;;; Handling of Backspace and Delete keys.
7206
7207 (defcustom normal-erase-is-backspace 'maybe
7208 "Set the default behavior of the Delete and Backspace keys.
7209
7210 If set to t, Delete key deletes forward and Backspace key deletes
7211 backward.
7212
7213 If set to nil, both Delete and Backspace keys delete backward.
7214
7215 If set to 'maybe (which is the default), Emacs automatically
7216 selects a behavior. On window systems, the behavior depends on
7217 the keyboard used. If the keyboard has both a Backspace key and
7218 a Delete key, and both are mapped to their usual meanings, the
7219 option's default value is set to t, so that Backspace can be used
7220 to delete backward, and Delete can be used to delete forward.
7221
7222 If not running under a window system, customizing this option
7223 accomplishes a similar effect by mapping C-h, which is usually
7224 generated by the Backspace key, to DEL, and by mapping DEL to C-d
7225 via `keyboard-translate'. The former functionality of C-h is
7226 available on the F1 key. You should probably not use this
7227 setting if you don't have both Backspace, Delete and F1 keys.
7228
7229 Setting this variable with setq doesn't take effect. Programmatically,
7230 call `normal-erase-is-backspace-mode' (which see) instead."
7231 :type '(choice (const :tag "Off" nil)
7232 (const :tag "Maybe" maybe)
7233 (other :tag "On" t))
7234 :group 'editing-basics
7235 :version "21.1"
7236 :set (lambda (symbol value)
7237 ;; The fboundp is because of a problem with :set when
7238 ;; dumping Emacs. It doesn't really matter.
7239 (if (fboundp 'normal-erase-is-backspace-mode)
7240 (normal-erase-is-backspace-mode (or value 0))
7241 (set-default symbol value))))
7242
7243 (defun normal-erase-is-backspace-setup-frame (&optional frame)
7244 "Set up `normal-erase-is-backspace-mode' on FRAME, if necessary."
7245 (unless frame (setq frame (selected-frame)))
7246 (with-selected-frame frame
7247 (unless (terminal-parameter nil 'normal-erase-is-backspace)
7248 (normal-erase-is-backspace-mode
7249 (if (if (eq normal-erase-is-backspace 'maybe)
7250 (and (not noninteractive)
7251 (or (memq system-type '(ms-dos windows-nt))
7252 (memq window-system '(w32 ns))
7253 (and (memq window-system '(x))
7254 (fboundp 'x-backspace-delete-keys-p)
7255 (x-backspace-delete-keys-p))
7256 ;; If the terminal Emacs is running on has erase char
7257 ;; set to ^H, use the Backspace key for deleting
7258 ;; backward, and the Delete key for deleting forward.
7259 (and (null window-system)
7260 (eq tty-erase-char ?\^H))))
7261 normal-erase-is-backspace)
7262 1 0)))))
7263
7264 (define-minor-mode normal-erase-is-backspace-mode
7265 "Toggle the Erase and Delete mode of the Backspace and Delete keys.
7266 With a prefix argument ARG, enable this feature if ARG is
7267 positive, and disable it otherwise. If called from Lisp, enable
7268 the mode if ARG is omitted or nil.
7269
7270 On window systems, when this mode is on, Delete is mapped to C-d
7271 and Backspace is mapped to DEL; when this mode is off, both
7272 Delete and Backspace are mapped to DEL. (The remapping goes via
7273 `local-function-key-map', so binding Delete or Backspace in the
7274 global or local keymap will override that.)
7275
7276 In addition, on window systems, the bindings of C-Delete, M-Delete,
7277 C-M-Delete, C-Backspace, M-Backspace, and C-M-Backspace are changed in
7278 the global keymap in accordance with the functionality of Delete and
7279 Backspace. For example, if Delete is remapped to C-d, which deletes
7280 forward, C-Delete is bound to `kill-word', but if Delete is remapped
7281 to DEL, which deletes backward, C-Delete is bound to
7282 `backward-kill-word'.
7283
7284 If not running on a window system, a similar effect is accomplished by
7285 remapping C-h (normally produced by the Backspace key) and DEL via
7286 `keyboard-translate': if this mode is on, C-h is mapped to DEL and DEL
7287 to C-d; if it's off, the keys are not remapped.
7288
7289 When not running on a window system, and this mode is turned on, the
7290 former functionality of C-h is available on the F1 key. You should
7291 probably not turn on this mode on a text-only terminal if you don't
7292 have both Backspace, Delete and F1 keys.
7293
7294 See also `normal-erase-is-backspace'."
7295 :variable ((eq (terminal-parameter nil 'normal-erase-is-backspace) 1)
7296 . (lambda (v)
7297 (setf (terminal-parameter nil 'normal-erase-is-backspace)
7298 (if v 1 0))))
7299 (let ((enabled (eq 1 (terminal-parameter
7300 nil 'normal-erase-is-backspace))))
7301
7302 (cond ((or (memq window-system '(x w32 ns pc))
7303 (memq system-type '(ms-dos windows-nt)))
7304 (let ((bindings
7305 `(([M-delete] [M-backspace])
7306 ([C-M-delete] [C-M-backspace])
7307 ([?\e C-delete] [?\e C-backspace]))))
7308
7309 (if enabled
7310 (progn
7311 (define-key local-function-key-map [delete] [deletechar])
7312 (define-key local-function-key-map [kp-delete] [?\C-d])
7313 (define-key local-function-key-map [backspace] [?\C-?])
7314 (dolist (b bindings)
7315 ;; Not sure if input-decode-map is really right, but
7316 ;; keyboard-translate-table (used below) only works
7317 ;; for integer events, and key-translation-table is
7318 ;; global (like the global-map, used earlier).
7319 (define-key input-decode-map (car b) nil)
7320 (define-key input-decode-map (cadr b) nil)))
7321 (define-key local-function-key-map [delete] [?\C-?])
7322 (define-key local-function-key-map [kp-delete] [?\C-?])
7323 (define-key local-function-key-map [backspace] [?\C-?])
7324 (dolist (b bindings)
7325 (define-key input-decode-map (car b) (cadr b))
7326 (define-key input-decode-map (cadr b) (car b))))))
7327 (t
7328 (if enabled
7329 (progn
7330 (keyboard-translate ?\C-h ?\C-?)
7331 (keyboard-translate ?\C-? ?\C-d))
7332 (keyboard-translate ?\C-h ?\C-h)
7333 (keyboard-translate ?\C-? ?\C-?))))
7334
7335 (if (called-interactively-p 'interactive)
7336 (message "Delete key deletes %s"
7337 (if (eq 1 (terminal-parameter nil 'normal-erase-is-backspace))
7338 "forward" "backward")))))
7339 \f
7340 (defvar vis-mode-saved-buffer-invisibility-spec nil
7341 "Saved value of `buffer-invisibility-spec' when Visible mode is on.")
7342
7343 (define-minor-mode read-only-mode
7344 "Change whether the current buffer is read-only.
7345 With prefix argument ARG, make the buffer read-only if ARG is
7346 positive, otherwise make it writable. If buffer is read-only
7347 and `view-read-only' is non-nil, enter view mode.
7348
7349 Do not call this from a Lisp program unless you really intend to
7350 do the same thing as the \\[read-only-mode] command, including
7351 possibly enabling or disabling View mode. Also, note that this
7352 command works by setting the variable `buffer-read-only', which
7353 does not affect read-only regions caused by text properties. To
7354 ignore read-only status in a Lisp program (whether due to text
7355 properties or buffer state), bind `inhibit-read-only' temporarily
7356 to a non-nil value."
7357 :variable buffer-read-only
7358 (cond
7359 ((and (not buffer-read-only) view-mode)
7360 (View-exit-and-edit)
7361 (make-local-variable 'view-read-only)
7362 (setq view-read-only t)) ; Must leave view mode.
7363 ((and buffer-read-only view-read-only
7364 ;; If view-mode is already active, `view-mode-enter' is a nop.
7365 (not view-mode)
7366 (not (eq (get major-mode 'mode-class) 'special)))
7367 (view-mode-enter))))
7368
7369 (define-minor-mode visible-mode
7370 "Toggle making all invisible text temporarily visible (Visible mode).
7371 With a prefix argument ARG, enable Visible mode if ARG is
7372 positive, and disable it otherwise. If called from Lisp, enable
7373 the mode if ARG is omitted or nil.
7374
7375 This mode works by saving the value of `buffer-invisibility-spec'
7376 and setting it to nil."
7377 :lighter " Vis"
7378 :group 'editing-basics
7379 (when (local-variable-p 'vis-mode-saved-buffer-invisibility-spec)
7380 (setq buffer-invisibility-spec vis-mode-saved-buffer-invisibility-spec)
7381 (kill-local-variable 'vis-mode-saved-buffer-invisibility-spec))
7382 (when visible-mode
7383 (set (make-local-variable 'vis-mode-saved-buffer-invisibility-spec)
7384 buffer-invisibility-spec)
7385 (setq buffer-invisibility-spec nil)))
7386 \f
7387 ;; Minibuffer prompt stuff.
7388
7389 ;;(defun minibuffer-prompt-modification (start end)
7390 ;; (error "You cannot modify the prompt"))
7391 ;;
7392 ;;
7393 ;;(defun minibuffer-prompt-insertion (start end)
7394 ;; (let ((inhibit-modification-hooks t))
7395 ;; (delete-region start end)
7396 ;; ;; Discard undo information for the text insertion itself
7397 ;; ;; and for the text deletion.above.
7398 ;; (when (consp buffer-undo-list)
7399 ;; (setq buffer-undo-list (cddr buffer-undo-list)))
7400 ;; (message "You cannot modify the prompt")))
7401 ;;
7402 ;;
7403 ;;(setq minibuffer-prompt-properties
7404 ;; (list 'modification-hooks '(minibuffer-prompt-modification)
7405 ;; 'insert-in-front-hooks '(minibuffer-prompt-insertion)))
7406
7407 \f
7408 ;;;; Problematic external packages.
7409
7410 ;; rms says this should be done by specifying symbols that define
7411 ;; versions together with bad values. This is therefore not as
7412 ;; flexible as it could be. See the thread:
7413 ;; http://lists.gnu.org/archive/html/emacs-devel/2007-08/msg00300.html
7414 (defconst bad-packages-alist
7415 ;; Not sure exactly which semantic versions have problems.
7416 ;; Definitely 2.0pre3, probably all 2.0pre's before this.
7417 '((semantic semantic-version "\\`2\\.0pre[1-3]\\'"
7418 "The version of `semantic' loaded does not work in Emacs 22.
7419 It can cause constant high CPU load.
7420 Upgrade to at least Semantic 2.0pre4 (distributed with CEDET 1.0pre4).")
7421 ;; CUA-mode does not work with GNU Emacs version 22.1 and newer.
7422 ;; Except for version 1.2, all of the 1.x and 2.x version of cua-mode
7423 ;; provided the `CUA-mode' feature. Since this is no longer true,
7424 ;; we can warn the user if the `CUA-mode' feature is ever provided.
7425 (CUA-mode t nil
7426 "CUA-mode is now part of the standard GNU Emacs distribution,
7427 so you can now enable CUA via the Options menu or by customizing `cua-mode'.
7428
7429 You have loaded an older version of CUA-mode which does not work
7430 correctly with this version of Emacs. You should remove the old
7431 version and use the one distributed with Emacs."))
7432 "Alist of packages known to cause problems in this version of Emacs.
7433 Each element has the form (PACKAGE SYMBOL REGEXP STRING).
7434 PACKAGE is either a regular expression to match file names, or a
7435 symbol (a feature name), like for `with-eval-after-load'.
7436 SYMBOL is either the name of a string variable, or `t'. Upon
7437 loading PACKAGE, if SYMBOL is t or matches REGEXP, display a
7438 warning using STRING as the message.")
7439
7440 (defun bad-package-check (package)
7441 "Run a check using the element from `bad-packages-alist' matching PACKAGE."
7442 (condition-case nil
7443 (let* ((list (assoc package bad-packages-alist))
7444 (symbol (nth 1 list)))
7445 (and list
7446 (boundp symbol)
7447 (or (eq symbol t)
7448 (and (stringp (setq symbol (eval symbol)))
7449 (string-match-p (nth 2 list) symbol)))
7450 (display-warning package (nth 3 list) :warning)))
7451 (error nil)))
7452
7453 (dolist (elem bad-packages-alist)
7454 (let ((pkg (car elem)))
7455 (with-eval-after-load pkg
7456 (bad-package-check pkg))))
7457
7458 \f
7459 ;;; Generic dispatcher commands
7460
7461 ;; Macro `define-alternatives' is used to create generic commands.
7462 ;; Generic commands are these (like web, mail, news, encrypt, irc, etc.)
7463 ;; that can have different alternative implementations where choosing
7464 ;; among them is exclusively a matter of user preference.
7465
7466 ;; (define-alternatives COMMAND) creates a new interactive command
7467 ;; M-x COMMAND and a customizable variable COMMAND-alternatives.
7468 ;; Typically, the user will not need to customize this variable; packages
7469 ;; wanting to add alternative implementations should use
7470 ;;
7471 ;; ;;;###autoload (push '("My impl name" . my-impl-symbol) COMMAND-alternatives
7472
7473 (defmacro define-alternatives (command &rest customizations)
7474 "Define new command `COMMAND'.
7475 The variable `COMMAND-alternatives' will contain alternative
7476 implementations of COMMAND, so that running `C-u M-x COMMAND'
7477 will allow the user to chose among them.
7478 CUSTOMIZATIONS, if non-nil, should be composed of alternating
7479 `defcustom' keywords and values to add to the declaration of
7480 `COMMAND-alternatives' (typically :group and :version)."
7481 (let* ((command-name (symbol-name command))
7482 (varalt-name (concat command-name "-alternatives"))
7483 (varalt-sym (intern varalt-name))
7484 (varimp-sym (intern (concat command-name "--implementation"))))
7485 `(progn
7486
7487 (defcustom ,varalt-sym nil
7488 ,(format "Alist of alternative implementations for the `%s' command.
7489
7490 Each entry must be a pair (ALTNAME . ALTFUN), where:
7491 ALTNAME - The name shown at user to describe the alternative implementation.
7492 ALTFUN - The function called to implement this alternative."
7493 command-name)
7494 :type '(alist :key-type string :value-type function)
7495 ,@customizations)
7496
7497 (defvar ,varimp-sym nil "Internal use only.")
7498
7499 (defun ,command (&optional arg)
7500 ,(format "Run generic command `%s'.
7501 If used for the first time, or with interactive ARG, ask the user which
7502 implementation to use for `%s'. The variable `%s'
7503 contains the list of implementations currently supported for this command."
7504 command-name command-name varalt-name)
7505 (interactive "P")
7506 (when (or arg (null ,varimp-sym))
7507 (let ((val (completing-read
7508 ,(format "Select implementation for command `%s': " command-name)
7509 ,varalt-sym nil t)))
7510 (unless (string-equal val "")
7511 (customize-save-variable ',varimp-sym
7512 (cdr (assoc-string val ,varalt-sym))))))
7513 (if ,varimp-sym
7514 (funcall ,varimp-sym)
7515 (message ,(format "No implementation selected for command `%s'"
7516 command-name)))))))
7517
7518 (provide 'simple)
7519
7520 ;;; simple.el ends here