Merge from emacs-24; up to 2013-01-02T16:37:04Z!eggert@cs.ucla.edu
[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 (eval newcmd))
1408 (if command-history
1409 (error "Argument %d is beyond length of command history" arg)
1410 (error "There are no previous complex commands to repeat")))))
1411
1412 (defvar extended-command-history nil)
1413
1414 (defun read-extended-command ()
1415 "Read command name to invoke in `execute-extended-command'."
1416 (minibuffer-with-setup-hook
1417 (lambda ()
1418 (set (make-local-variable 'minibuffer-default-add-function)
1419 (lambda ()
1420 ;; Get a command name at point in the original buffer
1421 ;; to propose it after M-n.
1422 (with-current-buffer (window-buffer (minibuffer-selected-window))
1423 (and (commandp (function-called-at-point))
1424 (format "%S" (function-called-at-point)))))))
1425 ;; Read a string, completing from and restricting to the set of
1426 ;; all defined commands. Don't provide any initial input.
1427 ;; Save the command read on the extended-command history list.
1428 (completing-read
1429 (concat (cond
1430 ((eq current-prefix-arg '-) "- ")
1431 ((and (consp current-prefix-arg)
1432 (eq (car current-prefix-arg) 4)) "C-u ")
1433 ((and (consp current-prefix-arg)
1434 (integerp (car current-prefix-arg)))
1435 (format "%d " (car current-prefix-arg)))
1436 ((integerp current-prefix-arg)
1437 (format "%d " current-prefix-arg)))
1438 ;; This isn't strictly correct if `execute-extended-command'
1439 ;; is bound to anything else (e.g. [menu]).
1440 ;; It could use (key-description (this-single-command-keys)),
1441 ;; but actually a prompt other than "M-x" would be confusing,
1442 ;; because "M-x" is a well-known prompt to read a command
1443 ;; and it serves as a shorthand for "Extended command: ".
1444 "M-x ")
1445 obarray 'commandp t nil 'extended-command-history)))
1446
1447 (defcustom suggest-key-bindings t
1448 "Non-nil means show the equivalent key-binding when M-x command has one.
1449 The value can be a length of time to show the message for.
1450 If the value is non-nil and not a number, we wait 2 seconds."
1451 :group 'keyboard
1452 :type '(choice (const :tag "off" nil)
1453 (integer :tag "time" 2)
1454 (other :tag "on")))
1455
1456 (defun execute-extended-command (prefixarg &optional command-name)
1457 ;; Based on Fexecute_extended_command in keyboard.c of Emacs.
1458 ;; Aaron S. Hawley <aaron.s.hawley(at)gmail.com> 2009-08-24
1459 "Read function name, then read its arguments and call it.
1460
1461 To pass a numeric argument to the command you are invoking, specify
1462 the numeric argument to this command.
1463
1464 Noninteractively, the argument PREFIXARG is the prefix argument to
1465 give to the command you invoke, if it asks for an argument."
1466 (interactive (list current-prefix-arg (read-extended-command)))
1467 ;; Emacs<24 calling-convention was with a single `prefixarg' argument.
1468 (if (null command-name)
1469 (setq command-name (let ((current-prefix-arg prefixarg)) ; for prompt
1470 (read-extended-command))))
1471 (let* ((function (and (stringp command-name) (intern-soft command-name)))
1472 (binding (and suggest-key-bindings
1473 (not executing-kbd-macro)
1474 (where-is-internal function overriding-local-map t))))
1475 (unless (commandp function)
1476 (error "`%s' is not a valid command name" command-name))
1477 (setq this-command function)
1478 ;; Normally `real-this-command' should never be changed, but here we really
1479 ;; want to pretend that M-x <cmd> RET is nothing more than a "key
1480 ;; binding" for <cmd>, so the command the user really wanted to run is
1481 ;; `function' and not `execute-extended-command'. The difference is
1482 ;; visible in cases such as M-x <cmd> RET and then C-x z (bug#11506).
1483 (setq real-this-command function)
1484 (let ((prefix-arg prefixarg))
1485 (command-execute function 'record))
1486 ;; If enabled, show which key runs this command.
1487 (when binding
1488 ;; But first wait, and skip the message if there is input.
1489 (let* ((waited
1490 ;; If this command displayed something in the echo area;
1491 ;; wait a few seconds, then display our suggestion message.
1492 (sit-for (cond
1493 ((zerop (length (current-message))) 0)
1494 ((numberp suggest-key-bindings) suggest-key-bindings)
1495 (t 2)))))
1496 (when (and waited (not (consp unread-command-events)))
1497 (with-temp-message
1498 (format "You can run the command `%s' with %s"
1499 function (key-description binding))
1500 (sit-for (if (numberp suggest-key-bindings)
1501 suggest-key-bindings
1502 2))))))))
1503
1504 (defun command-execute (cmd &optional record-flag keys special)
1505 ;; BEWARE: Called directly from the C code.
1506 "Execute CMD as an editor command.
1507 CMD must be a symbol that satisfies the `commandp' predicate.
1508 Optional second arg RECORD-FLAG non-nil
1509 means unconditionally put this command in the variable `command-history'.
1510 Otherwise, that is done only if an arg is read using the minibuffer.
1511 The argument KEYS specifies the value to use instead of (this-command-keys)
1512 when reading the arguments; if it is nil, (this-command-keys) is used.
1513 The argument SPECIAL, if non-nil, means that this command is executing
1514 a special event, so ignore the prefix argument and don't clear it."
1515 (setq debug-on-next-call nil)
1516 (let ((prefixarg (unless special
1517 (prog1 prefix-arg
1518 (setq current-prefix-arg prefix-arg)
1519 (setq prefix-arg nil)))))
1520 (and (symbolp cmd)
1521 (get cmd 'disabled)
1522 ;; FIXME: Weird calling convention!
1523 (run-hooks 'disabled-command-function))
1524 (let ((final cmd))
1525 (while
1526 (progn
1527 (setq final (indirect-function final))
1528 (if (autoloadp final)
1529 (setq final (autoload-do-load final cmd)))))
1530 (cond
1531 ((arrayp final)
1532 ;; If requested, place the macro in the command history. For
1533 ;; other sorts of commands, call-interactively takes care of this.
1534 (when record-flag
1535 (push `(execute-kbd-macro ,final ,prefixarg) command-history)
1536 ;; Don't keep command history around forever.
1537 (when (and (numberp history-length) (> history-length 0))
1538 (let ((cell (nthcdr history-length command-history)))
1539 (if (consp cell) (setcdr cell nil)))))
1540 (execute-kbd-macro final prefixarg))
1541 (t
1542 ;; Pass `cmd' rather than `final', for the backtrace's sake.
1543 (prog1 (call-interactively cmd record-flag keys)
1544 (when (and (symbolp cmd)
1545 (get cmd 'byte-obsolete-info)
1546 (not (get cmd 'command-execute-obsolete-warned)))
1547 (put cmd 'command-execute-obsolete-warned t)
1548 (message "%s" (macroexp--obsolete-warning
1549 cmd (get cmd 'byte-obsolete-info) "command")))))))))
1550 \f
1551 (defvar minibuffer-history nil
1552 "Default minibuffer history list.
1553 This is used for all minibuffer input
1554 except when an alternate history list is specified.
1555
1556 Maximum length of the history list is determined by the value
1557 of `history-length', which see.")
1558 (defvar minibuffer-history-sexp-flag nil
1559 "Control whether history list elements are expressions or strings.
1560 If the value of this variable equals current minibuffer depth,
1561 they are expressions; otherwise they are strings.
1562 \(That convention is designed to do the right thing for
1563 recursive uses of the minibuffer.)")
1564 (setq minibuffer-history-variable 'minibuffer-history)
1565 (setq minibuffer-history-position nil) ;; Defvar is in C code.
1566 (defvar minibuffer-history-search-history nil)
1567
1568 (defvar minibuffer-text-before-history nil
1569 "Text that was in this minibuffer before any history commands.
1570 This is nil if there have not yet been any history commands
1571 in this use of the minibuffer.")
1572
1573 (add-hook 'minibuffer-setup-hook 'minibuffer-history-initialize)
1574
1575 (defun minibuffer-history-initialize ()
1576 (setq minibuffer-text-before-history nil))
1577
1578 (defun minibuffer-avoid-prompt (_new _old)
1579 "A point-motion hook for the minibuffer, that moves point out of the prompt."
1580 (constrain-to-field nil (point-max)))
1581
1582 (defcustom minibuffer-history-case-insensitive-variables nil
1583 "Minibuffer history variables for which matching should ignore case.
1584 If a history variable is a member of this list, then the
1585 \\[previous-matching-history-element] and \\[next-matching-history-element]\
1586 commands ignore case when searching it, regardless of `case-fold-search'."
1587 :type '(repeat variable)
1588 :group 'minibuffer)
1589
1590 (defun previous-matching-history-element (regexp n)
1591 "Find the previous history element that matches REGEXP.
1592 \(Previous history elements refer to earlier actions.)
1593 With prefix argument N, search for Nth previous match.
1594 If N is negative, find the next or Nth next match.
1595 Normally, history elements are matched case-insensitively if
1596 `case-fold-search' is non-nil, but an uppercase letter in REGEXP
1597 makes the search case-sensitive.
1598 See also `minibuffer-history-case-insensitive-variables'."
1599 (interactive
1600 (let* ((enable-recursive-minibuffers t)
1601 (regexp (read-from-minibuffer "Previous element matching (regexp): "
1602 nil
1603 minibuffer-local-map
1604 nil
1605 'minibuffer-history-search-history
1606 (car minibuffer-history-search-history))))
1607 ;; Use the last regexp specified, by default, if input is empty.
1608 (list (if (string= regexp "")
1609 (if minibuffer-history-search-history
1610 (car minibuffer-history-search-history)
1611 (user-error "No previous history search regexp"))
1612 regexp)
1613 (prefix-numeric-value current-prefix-arg))))
1614 (unless (zerop n)
1615 (if (and (zerop minibuffer-history-position)
1616 (null minibuffer-text-before-history))
1617 (setq minibuffer-text-before-history
1618 (minibuffer-contents-no-properties)))
1619 (let ((history (symbol-value minibuffer-history-variable))
1620 (case-fold-search
1621 (if (isearch-no-upper-case-p regexp t) ; assume isearch.el is dumped
1622 ;; On some systems, ignore case for file names.
1623 (if (memq minibuffer-history-variable
1624 minibuffer-history-case-insensitive-variables)
1625 t
1626 ;; Respect the user's setting for case-fold-search:
1627 case-fold-search)
1628 nil))
1629 prevpos
1630 match-string
1631 match-offset
1632 (pos minibuffer-history-position))
1633 (while (/= n 0)
1634 (setq prevpos pos)
1635 (setq pos (min (max 1 (+ pos (if (< n 0) -1 1))) (length history)))
1636 (when (= pos prevpos)
1637 (user-error (if (= pos 1)
1638 "No later matching history item"
1639 "No earlier matching history item")))
1640 (setq match-string
1641 (if (eq minibuffer-history-sexp-flag (minibuffer-depth))
1642 (let ((print-level nil))
1643 (prin1-to-string (nth (1- pos) history)))
1644 (nth (1- pos) history)))
1645 (setq match-offset
1646 (if (< n 0)
1647 (and (string-match regexp match-string)
1648 (match-end 0))
1649 (and (string-match (concat ".*\\(" regexp "\\)") match-string)
1650 (match-beginning 1))))
1651 (when match-offset
1652 (setq n (+ n (if (< n 0) 1 -1)))))
1653 (setq minibuffer-history-position pos)
1654 (goto-char (point-max))
1655 (delete-minibuffer-contents)
1656 (insert match-string)
1657 (goto-char (+ (minibuffer-prompt-end) match-offset))))
1658 (if (memq (car (car command-history)) '(previous-matching-history-element
1659 next-matching-history-element))
1660 (setq command-history (cdr command-history))))
1661
1662 (defun next-matching-history-element (regexp n)
1663 "Find the next history element that matches REGEXP.
1664 \(The next history element refers to a more recent action.)
1665 With prefix argument N, search for Nth next match.
1666 If N is negative, find the previous or Nth previous match.
1667 Normally, history elements are matched case-insensitively if
1668 `case-fold-search' is non-nil, but an uppercase letter in REGEXP
1669 makes the search case-sensitive."
1670 (interactive
1671 (let* ((enable-recursive-minibuffers t)
1672 (regexp (read-from-minibuffer "Next element matching (regexp): "
1673 nil
1674 minibuffer-local-map
1675 nil
1676 'minibuffer-history-search-history
1677 (car minibuffer-history-search-history))))
1678 ;; Use the last regexp specified, by default, if input is empty.
1679 (list (if (string= regexp "")
1680 (if minibuffer-history-search-history
1681 (car minibuffer-history-search-history)
1682 (user-error "No previous history search regexp"))
1683 regexp)
1684 (prefix-numeric-value current-prefix-arg))))
1685 (previous-matching-history-element regexp (- n)))
1686
1687 (defvar minibuffer-temporary-goal-position nil)
1688
1689 (defvar minibuffer-default-add-function 'minibuffer-default-add-completions
1690 "Function run by `goto-history-element' before consuming default values.
1691 This is useful to dynamically add more elements to the list of default values
1692 when `goto-history-element' reaches the end of this list.
1693 Before calling this function `goto-history-element' sets the variable
1694 `minibuffer-default-add-done' to t, so it will call this function only
1695 once. In special cases, when this function needs to be called more
1696 than once, it can set `minibuffer-default-add-done' to nil explicitly,
1697 overriding the setting of this variable to t in `goto-history-element'.")
1698
1699 (defvar minibuffer-default-add-done nil
1700 "When nil, add more elements to the end of the list of default values.
1701 The value nil causes `goto-history-element' to add more elements to
1702 the list of defaults when it reaches the end of this list. It does
1703 this by calling a function defined by `minibuffer-default-add-function'.")
1704
1705 (make-variable-buffer-local 'minibuffer-default-add-done)
1706
1707 (defun minibuffer-default-add-completions ()
1708 "Return a list of all completions without the default value.
1709 This function is used to add all elements of the completion table to
1710 the end of the list of defaults just after the default value."
1711 (let ((def minibuffer-default)
1712 (all (all-completions ""
1713 minibuffer-completion-table
1714 minibuffer-completion-predicate)))
1715 (if (listp def)
1716 (append def all)
1717 (cons def (delete def all)))))
1718
1719 (defun goto-history-element (nabs)
1720 "Puts element of the minibuffer history in the minibuffer.
1721 The argument NABS specifies the absolute history position."
1722 (interactive "p")
1723 (when (and (not minibuffer-default-add-done)
1724 (functionp minibuffer-default-add-function)
1725 (< nabs (- (if (listp minibuffer-default)
1726 (length minibuffer-default)
1727 1))))
1728 (setq minibuffer-default-add-done t
1729 minibuffer-default (funcall minibuffer-default-add-function)))
1730 (let ((minimum (if minibuffer-default
1731 (- (if (listp minibuffer-default)
1732 (length minibuffer-default)
1733 1))
1734 0))
1735 elt minibuffer-returned-to-present)
1736 (if (and (zerop minibuffer-history-position)
1737 (null minibuffer-text-before-history))
1738 (setq minibuffer-text-before-history
1739 (minibuffer-contents-no-properties)))
1740 (if (< nabs minimum)
1741 (user-error (if minibuffer-default
1742 "End of defaults; no next item"
1743 "End of history; no default available")))
1744 (if (> nabs (length (symbol-value minibuffer-history-variable)))
1745 (user-error "Beginning of history; no preceding item"))
1746 (unless (memq last-command '(next-history-element
1747 previous-history-element))
1748 (let ((prompt-end (minibuffer-prompt-end)))
1749 (set (make-local-variable 'minibuffer-temporary-goal-position)
1750 (cond ((<= (point) prompt-end) prompt-end)
1751 ((eobp) nil)
1752 (t (point))))))
1753 (goto-char (point-max))
1754 (delete-minibuffer-contents)
1755 (setq minibuffer-history-position nabs)
1756 (cond ((< nabs 0)
1757 (setq elt (if (listp minibuffer-default)
1758 (nth (1- (abs nabs)) minibuffer-default)
1759 minibuffer-default)))
1760 ((= nabs 0)
1761 (setq elt (or minibuffer-text-before-history ""))
1762 (setq minibuffer-returned-to-present t)
1763 (setq minibuffer-text-before-history nil))
1764 (t (setq elt (nth (1- minibuffer-history-position)
1765 (symbol-value minibuffer-history-variable)))))
1766 (insert
1767 (if (and (eq minibuffer-history-sexp-flag (minibuffer-depth))
1768 (not minibuffer-returned-to-present))
1769 (let ((print-level nil))
1770 (prin1-to-string elt))
1771 elt))
1772 (goto-char (or minibuffer-temporary-goal-position (point-max)))))
1773
1774 (defun next-history-element (n)
1775 "Puts next element of the minibuffer history in the minibuffer.
1776 With argument N, it uses the Nth following element."
1777 (interactive "p")
1778 (or (zerop n)
1779 (goto-history-element (- minibuffer-history-position n))))
1780
1781 (defun previous-history-element (n)
1782 "Puts previous element of the minibuffer history in the minibuffer.
1783 With argument N, it uses the Nth previous element."
1784 (interactive "p")
1785 (or (zerop n)
1786 (goto-history-element (+ minibuffer-history-position n))))
1787
1788 (defun next-complete-history-element (n)
1789 "Get next history element which completes the minibuffer before the point.
1790 The contents of the minibuffer after the point are deleted, and replaced
1791 by the new completion."
1792 (interactive "p")
1793 (let ((point-at-start (point)))
1794 (next-matching-history-element
1795 (concat
1796 "^" (regexp-quote (buffer-substring (minibuffer-prompt-end) (point))))
1797 n)
1798 ;; next-matching-history-element always puts us at (point-min).
1799 ;; Move to the position we were at before changing the buffer contents.
1800 ;; This is still sensible, because the text before point has not changed.
1801 (goto-char point-at-start)))
1802
1803 (defun previous-complete-history-element (n)
1804 "\
1805 Get previous history element which completes the minibuffer before the point.
1806 The contents of the minibuffer after the point are deleted, and replaced
1807 by the new completion."
1808 (interactive "p")
1809 (next-complete-history-element (- n)))
1810
1811 ;; For compatibility with the old subr of the same name.
1812 (defun minibuffer-prompt-width ()
1813 "Return the display width of the minibuffer prompt.
1814 Return 0 if current buffer is not a minibuffer."
1815 ;; Return the width of everything before the field at the end of
1816 ;; the buffer; this should be 0 for normal buffers.
1817 (1- (minibuffer-prompt-end)))
1818 \f
1819 ;; isearch minibuffer history
1820 (add-hook 'minibuffer-setup-hook 'minibuffer-history-isearch-setup)
1821
1822 (defvar minibuffer-history-isearch-message-overlay)
1823 (make-variable-buffer-local 'minibuffer-history-isearch-message-overlay)
1824
1825 (defun minibuffer-history-isearch-setup ()
1826 "Set up a minibuffer for using isearch to search the minibuffer history.
1827 Intended to be added to `minibuffer-setup-hook'."
1828 (set (make-local-variable 'isearch-search-fun-function)
1829 'minibuffer-history-isearch-search)
1830 (set (make-local-variable 'isearch-message-function)
1831 'minibuffer-history-isearch-message)
1832 (set (make-local-variable 'isearch-wrap-function)
1833 'minibuffer-history-isearch-wrap)
1834 (set (make-local-variable 'isearch-push-state-function)
1835 'minibuffer-history-isearch-push-state)
1836 (add-hook 'isearch-mode-end-hook 'minibuffer-history-isearch-end nil t))
1837
1838 (defun minibuffer-history-isearch-end ()
1839 "Clean up the minibuffer after terminating isearch in the minibuffer."
1840 (if minibuffer-history-isearch-message-overlay
1841 (delete-overlay minibuffer-history-isearch-message-overlay)))
1842
1843 (defun minibuffer-history-isearch-search ()
1844 "Return the proper search function, for isearch in minibuffer history."
1845 (lambda (string bound noerror)
1846 (let ((search-fun
1847 ;; Use standard functions to search within minibuffer text
1848 (isearch-search-fun-default))
1849 found)
1850 ;; Avoid lazy-highlighting matches in the minibuffer prompt when
1851 ;; searching forward. Lazy-highlight calls this lambda with the
1852 ;; bound arg, so skip the minibuffer prompt.
1853 (if (and bound isearch-forward (< (point) (minibuffer-prompt-end)))
1854 (goto-char (minibuffer-prompt-end)))
1855 (or
1856 ;; 1. First try searching in the initial minibuffer text
1857 (funcall search-fun string
1858 (if isearch-forward bound (minibuffer-prompt-end))
1859 noerror)
1860 ;; 2. If the above search fails, start putting next/prev history
1861 ;; elements in the minibuffer successively, and search the string
1862 ;; in them. Do this only when bound is nil (i.e. not while
1863 ;; lazy-highlighting search strings in the current minibuffer text).
1864 (unless bound
1865 (condition-case nil
1866 (progn
1867 (while (not found)
1868 (cond (isearch-forward
1869 (next-history-element 1)
1870 (goto-char (minibuffer-prompt-end)))
1871 (t
1872 (previous-history-element 1)
1873 (goto-char (point-max))))
1874 (setq isearch-barrier (point) isearch-opoint (point))
1875 ;; After putting the next/prev history element, search
1876 ;; the string in them again, until next-history-element
1877 ;; or previous-history-element raises an error at the
1878 ;; beginning/end of history.
1879 (setq found (funcall search-fun string
1880 (unless isearch-forward
1881 ;; For backward search, don't search
1882 ;; in the minibuffer prompt
1883 (minibuffer-prompt-end))
1884 noerror)))
1885 ;; Return point of the new search result
1886 (point))
1887 ;; Return nil when next(prev)-history-element fails
1888 (error nil)))))))
1889
1890 (defun minibuffer-history-isearch-message (&optional c-q-hack ellipsis)
1891 "Display the minibuffer history search prompt.
1892 If there are no search errors, this function displays an overlay with
1893 the isearch prompt which replaces the original minibuffer prompt.
1894 Otherwise, it displays the standard isearch message returned from
1895 the function `isearch-message'."
1896 (if (not (and (minibufferp) isearch-success (not isearch-error)))
1897 ;; Use standard function `isearch-message' when not in the minibuffer,
1898 ;; or search fails, or has an error (like incomplete regexp).
1899 ;; This function overwrites minibuffer text with isearch message,
1900 ;; so it's possible to see what is wrong in the search string.
1901 (isearch-message c-q-hack ellipsis)
1902 ;; Otherwise, put the overlay with the standard isearch prompt over
1903 ;; the initial minibuffer prompt.
1904 (if (overlayp minibuffer-history-isearch-message-overlay)
1905 (move-overlay minibuffer-history-isearch-message-overlay
1906 (point-min) (minibuffer-prompt-end))
1907 (setq minibuffer-history-isearch-message-overlay
1908 (make-overlay (point-min) (minibuffer-prompt-end)))
1909 (overlay-put minibuffer-history-isearch-message-overlay 'evaporate t))
1910 (overlay-put minibuffer-history-isearch-message-overlay
1911 'display (isearch-message-prefix c-q-hack ellipsis))
1912 ;; And clear any previous isearch message.
1913 (message "")))
1914
1915 (defun minibuffer-history-isearch-wrap ()
1916 "Wrap the minibuffer history search when search fails.
1917 Move point to the first history element for a forward search,
1918 or to the last history element for a backward search."
1919 ;; When `minibuffer-history-isearch-search' fails on reaching the
1920 ;; beginning/end of the history, wrap the search to the first/last
1921 ;; minibuffer history element.
1922 (if isearch-forward
1923 (goto-history-element (length (symbol-value minibuffer-history-variable)))
1924 (goto-history-element 0))
1925 (setq isearch-success t)
1926 (goto-char (if isearch-forward (minibuffer-prompt-end) (point-max))))
1927
1928 (defun minibuffer-history-isearch-push-state ()
1929 "Save a function restoring the state of minibuffer history search.
1930 Save `minibuffer-history-position' to the additional state parameter
1931 in the search status stack."
1932 (let ((pos minibuffer-history-position))
1933 (lambda (cmd)
1934 (minibuffer-history-isearch-pop-state cmd pos))))
1935
1936 (defun minibuffer-history-isearch-pop-state (_cmd hist-pos)
1937 "Restore the minibuffer history search state.
1938 Go to the history element by the absolute history position HIST-POS."
1939 (goto-history-element hist-pos))
1940
1941 \f
1942 ;Put this on C-x u, so we can force that rather than C-_ into startup msg
1943 (define-obsolete-function-alias 'advertised-undo 'undo "23.2")
1944
1945 (defconst undo-equiv-table (make-hash-table :test 'eq :weakness t)
1946 "Table mapping redo records to the corresponding undo one.
1947 A redo record for undo-in-region maps to t.
1948 A redo record for ordinary undo maps to the following (earlier) undo.")
1949
1950 (defvar undo-in-region nil
1951 "Non-nil if `pending-undo-list' is not just a tail of `buffer-undo-list'.")
1952
1953 (defvar undo-no-redo nil
1954 "If t, `undo' doesn't go through redo entries.")
1955
1956 (defvar pending-undo-list nil
1957 "Within a run of consecutive undo commands, list remaining to be undone.
1958 If t, we undid all the way to the end of it.")
1959
1960 (defun undo (&optional arg)
1961 "Undo some previous changes.
1962 Repeat this command to undo more changes.
1963 A numeric ARG serves as a repeat count.
1964
1965 In Transient Mark mode when the mark is active, only undo changes within
1966 the current region. Similarly, when not in Transient Mark mode, just \\[universal-argument]
1967 as an argument limits undo to changes within the current region."
1968 (interactive "*P")
1969 ;; Make last-command indicate for the next command that this was an undo.
1970 ;; That way, another undo will undo more.
1971 ;; If we get to the end of the undo history and get an error,
1972 ;; another undo command will find the undo history empty
1973 ;; and will get another error. To begin undoing the undos,
1974 ;; you must type some other command.
1975 (let* ((modified (buffer-modified-p))
1976 ;; For an indirect buffer, look in the base buffer for the
1977 ;; auto-save data.
1978 (base-buffer (or (buffer-base-buffer) (current-buffer)))
1979 (recent-save (with-current-buffer base-buffer
1980 (recent-auto-save-p)))
1981 message)
1982 ;; If we get an error in undo-start,
1983 ;; the next command should not be a "consecutive undo".
1984 ;; So set `this-command' to something other than `undo'.
1985 (setq this-command 'undo-start)
1986
1987 (unless (and (eq last-command 'undo)
1988 (or (eq pending-undo-list t)
1989 ;; If something (a timer or filter?) changed the buffer
1990 ;; since the previous command, don't continue the undo seq.
1991 (let ((list buffer-undo-list))
1992 (while (eq (car list) nil)
1993 (setq list (cdr list)))
1994 ;; If the last undo record made was made by undo
1995 ;; it shows nothing else happened in between.
1996 (gethash list undo-equiv-table))))
1997 (setq undo-in-region
1998 (or (region-active-p) (and arg (not (numberp arg)))))
1999 (if undo-in-region
2000 (undo-start (region-beginning) (region-end))
2001 (undo-start))
2002 ;; get rid of initial undo boundary
2003 (undo-more 1))
2004 ;; If we got this far, the next command should be a consecutive undo.
2005 (setq this-command 'undo)
2006 ;; Check to see whether we're hitting a redo record, and if
2007 ;; so, ask the user whether she wants to skip the redo/undo pair.
2008 (let ((equiv (gethash pending-undo-list undo-equiv-table)))
2009 (or (eq (selected-window) (minibuffer-window))
2010 (setq message (format "%s%s!"
2011 (if (or undo-no-redo (not equiv))
2012 "Undo" "Redo")
2013 (if undo-in-region " in region" ""))))
2014 (when (and (consp equiv) undo-no-redo)
2015 ;; The equiv entry might point to another redo record if we have done
2016 ;; undo-redo-undo-redo-... so skip to the very last equiv.
2017 (while (let ((next (gethash equiv undo-equiv-table)))
2018 (if next (setq equiv next))))
2019 (setq pending-undo-list equiv)))
2020 (undo-more
2021 (if (numberp arg)
2022 (prefix-numeric-value arg)
2023 1))
2024 ;; Record the fact that the just-generated undo records come from an
2025 ;; undo operation--that is, they are redo records.
2026 ;; In the ordinary case (not within a region), map the redo
2027 ;; record to the following undos.
2028 ;; I don't know how to do that in the undo-in-region case.
2029 (let ((list buffer-undo-list))
2030 ;; Strip any leading undo boundaries there might be, like we do
2031 ;; above when checking.
2032 (while (eq (car list) nil)
2033 (setq list (cdr list)))
2034 (puthash list (if undo-in-region t pending-undo-list)
2035 undo-equiv-table))
2036 ;; Don't specify a position in the undo record for the undo command.
2037 ;; Instead, undoing this should move point to where the change is.
2038 (let ((tail buffer-undo-list)
2039 (prev nil))
2040 (while (car tail)
2041 (when (integerp (car tail))
2042 (let ((pos (car tail)))
2043 (if prev
2044 (setcdr prev (cdr tail))
2045 (setq buffer-undo-list (cdr tail)))
2046 (setq tail (cdr tail))
2047 (while (car tail)
2048 (if (eq pos (car tail))
2049 (if prev
2050 (setcdr prev (cdr tail))
2051 (setq buffer-undo-list (cdr tail)))
2052 (setq prev tail))
2053 (setq tail (cdr tail)))
2054 (setq tail nil)))
2055 (setq prev tail tail (cdr tail))))
2056 ;; Record what the current undo list says,
2057 ;; so the next command can tell if the buffer was modified in between.
2058 (and modified (not (buffer-modified-p))
2059 (with-current-buffer base-buffer
2060 (delete-auto-save-file-if-necessary recent-save)))
2061 ;; Display a message announcing success.
2062 (if message
2063 (message "%s" message))))
2064
2065 (defun buffer-disable-undo (&optional buffer)
2066 "Make BUFFER stop keeping undo information.
2067 No argument or nil as argument means do this for the current buffer."
2068 (interactive)
2069 (with-current-buffer (if buffer (get-buffer buffer) (current-buffer))
2070 (setq buffer-undo-list t)))
2071
2072 (defun undo-only (&optional arg)
2073 "Undo some previous changes.
2074 Repeat this command to undo more changes.
2075 A numeric ARG serves as a repeat count.
2076 Contrary to `undo', this will not redo a previous undo."
2077 (interactive "*p")
2078 (let ((undo-no-redo t)) (undo arg)))
2079
2080 (defvar undo-in-progress nil
2081 "Non-nil while performing an undo.
2082 Some change-hooks test this variable to do something different.")
2083
2084 (defun undo-more (n)
2085 "Undo back N undo-boundaries beyond what was already undone recently.
2086 Call `undo-start' to get ready to undo recent changes,
2087 then call `undo-more' one or more times to undo them."
2088 (or (listp pending-undo-list)
2089 (user-error (concat "No further undo information"
2090 (and undo-in-region " for region"))))
2091 (let ((undo-in-progress t))
2092 ;; Note: The following, while pulling elements off
2093 ;; `pending-undo-list' will call primitive change functions which
2094 ;; will push more elements onto `buffer-undo-list'.
2095 (setq pending-undo-list (primitive-undo n pending-undo-list))
2096 (if (null pending-undo-list)
2097 (setq pending-undo-list t))))
2098
2099 (defun primitive-undo (n list)
2100 "Undo N records from the front of the list LIST.
2101 Return what remains of the list."
2102
2103 ;; This is a good feature, but would make undo-start
2104 ;; unable to do what is expected.
2105 ;;(when (null (car (list)))
2106 ;; ;; If the head of the list is a boundary, it is the boundary
2107 ;; ;; preceding this command. Get rid of it and don't count it.
2108 ;; (setq list (cdr list))))
2109
2110 (let ((arg n)
2111 ;; In a writable buffer, enable undoing read-only text that is
2112 ;; so because of text properties.
2113 (inhibit-read-only t)
2114 ;; Don't let `intangible' properties interfere with undo.
2115 (inhibit-point-motion-hooks t)
2116 ;; We use oldlist only to check for EQ. ++kfs
2117 (oldlist buffer-undo-list)
2118 (did-apply nil)
2119 (next nil))
2120 (while (> arg 0)
2121 (while (setq next (pop list)) ;Exit inner loop at undo boundary.
2122 ;; Handle an integer by setting point to that value.
2123 (pcase next
2124 ((pred integerp) (goto-char next))
2125 ;; Element (t . TIME) records previous modtime.
2126 ;; Preserve any flag of NONEXISTENT_MODTIME_NSECS or
2127 ;; UNKNOWN_MODTIME_NSECS.
2128 (`(t . ,time)
2129 ;; If this records an obsolete save
2130 ;; (not matching the actual disk file)
2131 ;; then don't mark unmodified.
2132 (when (or (equal time (visited-file-modtime))
2133 (and (consp time)
2134 (equal (list (car time) (cdr time))
2135 (visited-file-modtime))))
2136 (when (fboundp 'unlock-buffer)
2137 (unlock-buffer))
2138 (set-buffer-modified-p nil)))
2139 ;; Element (nil PROP VAL BEG . END) is property change.
2140 (`(nil . ,(or `(,prop ,val ,beg . ,end) pcase--dontcare))
2141 (when (or (> (point-min) beg) (< (point-max) end))
2142 (error "Changes to be undone are outside visible portion of buffer"))
2143 (put-text-property beg end prop val))
2144 ;; Element (BEG . END) means range was inserted.
2145 (`(,(and beg (pred integerp)) . ,(and end (pred integerp)))
2146 ;; (and `(,beg . ,end) `(,(pred integerp) . ,(pred integerp)))
2147 ;; Ideally: `(,(pred integerp beg) . ,(pred integerp end))
2148 (when (or (> (point-min) beg) (< (point-max) end))
2149 (error "Changes to be undone are outside visible portion of buffer"))
2150 ;; Set point first thing, so that undoing this undo
2151 ;; does not send point back to where it is now.
2152 (goto-char beg)
2153 (delete-region beg end))
2154 ;; Element (apply FUN . ARGS) means call FUN to undo.
2155 (`(apply . ,fun-args)
2156 (let ((currbuff (current-buffer)))
2157 (if (integerp (car fun-args))
2158 ;; Long format: (apply DELTA START END FUN . ARGS).
2159 (pcase-let* ((`(,delta ,start ,end ,fun . ,args) fun-args)
2160 (start-mark (copy-marker start nil))
2161 (end-mark (copy-marker end t)))
2162 (when (or (> (point-min) start) (< (point-max) end))
2163 (error "Changes to be undone are outside visible portion of buffer"))
2164 (apply fun args) ;; Use `save-current-buffer'?
2165 ;; Check that the function did what the entry
2166 ;; said it would do.
2167 (unless (and (= start start-mark)
2168 (= (+ delta end) end-mark))
2169 (error "Changes to be undone by function different than announced"))
2170 (set-marker start-mark nil)
2171 (set-marker end-mark nil))
2172 (apply fun-args))
2173 (unless (eq currbuff (current-buffer))
2174 (error "Undo function switched buffer"))
2175 (setq did-apply t)))
2176 ;; Element (STRING . POS) means STRING was deleted.
2177 (`(,(and string (pred stringp)) . ,(and pos (pred integerp)))
2178 (when (let ((apos (abs pos)))
2179 (or (< apos (point-min)) (> apos (point-max))))
2180 (error "Changes to be undone are outside visible portion of buffer"))
2181 (if (< pos 0)
2182 (progn
2183 (goto-char (- pos))
2184 (insert string))
2185 (goto-char pos)
2186 ;; Now that we record marker adjustments
2187 ;; (caused by deletion) for undo,
2188 ;; we should always insert after markers,
2189 ;; so that undoing the marker adjustments
2190 ;; put the markers back in the right place.
2191 (insert string)
2192 (goto-char pos)))
2193 ;; (MARKER . OFFSET) means a marker MARKER was adjusted by OFFSET.
2194 (`(,(and marker (pred markerp)) . ,(and offset (pred integerp)))
2195 (when (marker-buffer marker)
2196 (set-marker marker
2197 (- marker offset)
2198 (marker-buffer marker))))
2199 (_ (error "Unrecognized entry in undo list %S" next))))
2200 (setq arg (1- arg)))
2201 ;; Make sure an apply entry produces at least one undo entry,
2202 ;; so the test in `undo' for continuing an undo series
2203 ;; will work right.
2204 (if (and did-apply
2205 (eq oldlist buffer-undo-list))
2206 (setq buffer-undo-list
2207 (cons (list 'apply 'cdr nil) buffer-undo-list))))
2208 list)
2209
2210 ;; Deep copy of a list
2211 (defun undo-copy-list (list)
2212 "Make a copy of undo list LIST."
2213 (mapcar 'undo-copy-list-1 list))
2214
2215 (defun undo-copy-list-1 (elt)
2216 (if (consp elt)
2217 (cons (car elt) (undo-copy-list-1 (cdr elt)))
2218 elt))
2219
2220 (defun undo-start (&optional beg end)
2221 "Set `pending-undo-list' to the front of the undo list.
2222 The next call to `undo-more' will undo the most recently made change.
2223 If BEG and END are specified, then only undo elements
2224 that apply to text between BEG and END are used; other undo elements
2225 are ignored. If BEG and END are nil, all undo elements are used."
2226 (if (eq buffer-undo-list t)
2227 (user-error "No undo information in this buffer"))
2228 (setq pending-undo-list
2229 (if (and beg end (not (= beg end)))
2230 (undo-make-selective-list (min beg end) (max beg end))
2231 buffer-undo-list)))
2232
2233 (defvar undo-adjusted-markers)
2234
2235 (defun undo-make-selective-list (start end)
2236 "Return a list of undo elements for the region START to END.
2237 The elements come from `buffer-undo-list', but we keep only
2238 the elements inside this region, and discard those outside this region.
2239 If we find an element that crosses an edge of this region,
2240 we stop and ignore all further elements."
2241 (let ((undo-list-copy (undo-copy-list buffer-undo-list))
2242 (undo-list (list nil))
2243 undo-adjusted-markers
2244 some-rejected
2245 undo-elt temp-undo-list delta)
2246 (while undo-list-copy
2247 (setq undo-elt (car undo-list-copy))
2248 (let ((keep-this
2249 (cond ((and (consp undo-elt) (eq (car undo-elt) t))
2250 ;; This is a "was unmodified" element.
2251 ;; Keep it if we have kept everything thus far.
2252 (not some-rejected))
2253 (t
2254 (undo-elt-in-region undo-elt start end)))))
2255 (if keep-this
2256 (progn
2257 (setq end (+ end (cdr (undo-delta undo-elt))))
2258 ;; Don't put two nils together in the list
2259 (if (not (and (eq (car undo-list) nil)
2260 (eq undo-elt nil)))
2261 (setq undo-list (cons undo-elt undo-list))))
2262 (if (undo-elt-crosses-region undo-elt start end)
2263 (setq undo-list-copy nil)
2264 (setq some-rejected t)
2265 (setq temp-undo-list (cdr undo-list-copy))
2266 (setq delta (undo-delta undo-elt))
2267
2268 (when (/= (cdr delta) 0)
2269 (let ((position (car delta))
2270 (offset (cdr delta)))
2271
2272 ;; Loop down the earlier events adjusting their buffer
2273 ;; positions to reflect the fact that a change to the buffer
2274 ;; isn't being undone. We only need to process those element
2275 ;; types which undo-elt-in-region will return as being in
2276 ;; the region since only those types can ever get into the
2277 ;; output
2278
2279 (while temp-undo-list
2280 (setq undo-elt (car temp-undo-list))
2281 (cond ((integerp undo-elt)
2282 (if (>= undo-elt position)
2283 (setcar temp-undo-list (- undo-elt offset))))
2284 ((atom undo-elt) nil)
2285 ((stringp (car undo-elt))
2286 ;; (TEXT . POSITION)
2287 (let ((text-pos (abs (cdr undo-elt)))
2288 (point-at-end (< (cdr undo-elt) 0 )))
2289 (if (>= text-pos position)
2290 (setcdr undo-elt (* (if point-at-end -1 1)
2291 (- text-pos offset))))))
2292 ((integerp (car undo-elt))
2293 ;; (BEGIN . END)
2294 (when (>= (car undo-elt) position)
2295 (setcar undo-elt (- (car undo-elt) offset))
2296 (setcdr undo-elt (- (cdr undo-elt) offset))))
2297 ((null (car undo-elt))
2298 ;; (nil PROPERTY VALUE BEG . END)
2299 (let ((tail (nthcdr 3 undo-elt)))
2300 (when (>= (car tail) position)
2301 (setcar tail (- (car tail) offset))
2302 (setcdr tail (- (cdr tail) offset))))))
2303 (setq temp-undo-list (cdr temp-undo-list))))))))
2304 (setq undo-list-copy (cdr undo-list-copy)))
2305 (nreverse undo-list)))
2306
2307 (defun undo-elt-in-region (undo-elt start end)
2308 "Determine whether UNDO-ELT falls inside the region START ... END.
2309 If it crosses the edge, we return nil."
2310 (cond ((integerp undo-elt)
2311 (and (>= undo-elt start)
2312 (<= undo-elt end)))
2313 ((eq undo-elt nil)
2314 t)
2315 ((atom undo-elt)
2316 nil)
2317 ((stringp (car undo-elt))
2318 ;; (TEXT . POSITION)
2319 (and (>= (abs (cdr undo-elt)) start)
2320 (< (abs (cdr undo-elt)) end)))
2321 ((and (consp undo-elt) (markerp (car undo-elt)))
2322 ;; This is a marker-adjustment element (MARKER . ADJUSTMENT).
2323 ;; See if MARKER is inside the region.
2324 (let ((alist-elt (assq (car undo-elt) undo-adjusted-markers)))
2325 (unless alist-elt
2326 (setq alist-elt (cons (car undo-elt)
2327 (marker-position (car undo-elt))))
2328 (setq undo-adjusted-markers
2329 (cons alist-elt undo-adjusted-markers)))
2330 (and (cdr alist-elt)
2331 (>= (cdr alist-elt) start)
2332 (<= (cdr alist-elt) end))))
2333 ((null (car undo-elt))
2334 ;; (nil PROPERTY VALUE BEG . END)
2335 (let ((tail (nthcdr 3 undo-elt)))
2336 (and (>= (car tail) start)
2337 (<= (cdr tail) end))))
2338 ((integerp (car undo-elt))
2339 ;; (BEGIN . END)
2340 (and (>= (car undo-elt) start)
2341 (<= (cdr undo-elt) end)))))
2342
2343 (defun undo-elt-crosses-region (undo-elt start end)
2344 "Test whether UNDO-ELT crosses one edge of that region START ... END.
2345 This assumes we have already decided that UNDO-ELT
2346 is not *inside* the region START...END."
2347 (cond ((atom undo-elt) nil)
2348 ((null (car undo-elt))
2349 ;; (nil PROPERTY VALUE BEG . END)
2350 (let ((tail (nthcdr 3 undo-elt)))
2351 (and (< (car tail) end)
2352 (> (cdr tail) start))))
2353 ((integerp (car undo-elt))
2354 ;; (BEGIN . END)
2355 (and (< (car undo-elt) end)
2356 (> (cdr undo-elt) start)))))
2357
2358 ;; Return the first affected buffer position and the delta for an undo element
2359 ;; delta is defined as the change in subsequent buffer positions if we *did*
2360 ;; the undo.
2361 (defun undo-delta (undo-elt)
2362 (if (consp undo-elt)
2363 (cond ((stringp (car undo-elt))
2364 ;; (TEXT . POSITION)
2365 (cons (abs (cdr undo-elt)) (length (car undo-elt))))
2366 ((integerp (car undo-elt))
2367 ;; (BEGIN . END)
2368 (cons (car undo-elt) (- (car undo-elt) (cdr undo-elt))))
2369 (t
2370 '(0 . 0)))
2371 '(0 . 0)))
2372
2373 (defcustom undo-ask-before-discard nil
2374 "If non-nil ask about discarding undo info for the current command.
2375 Normally, Emacs discards the undo info for the current command if
2376 it exceeds `undo-outer-limit'. But if you set this option
2377 non-nil, it asks in the echo area whether to discard the info.
2378 If you answer no, there is a slight risk that Emacs might crash, so
2379 only do it if you really want to undo the command.
2380
2381 This option is mainly intended for debugging. You have to be
2382 careful if you use it for other purposes. Garbage collection is
2383 inhibited while the question is asked, meaning that Emacs might
2384 leak memory. So you should make sure that you do not wait
2385 excessively long before answering the question."
2386 :type 'boolean
2387 :group 'undo
2388 :version "22.1")
2389
2390 (defvar undo-extra-outer-limit nil
2391 "If non-nil, an extra level of size that's ok in an undo item.
2392 We don't ask the user about truncating the undo list until the
2393 current item gets bigger than this amount.
2394
2395 This variable only matters if `undo-ask-before-discard' is non-nil.")
2396 (make-variable-buffer-local 'undo-extra-outer-limit)
2397
2398 ;; When the first undo batch in an undo list is longer than
2399 ;; undo-outer-limit, this function gets called to warn the user that
2400 ;; the undo info for the current command was discarded. Garbage
2401 ;; collection is inhibited around the call, so it had better not do a
2402 ;; lot of consing.
2403 (setq undo-outer-limit-function 'undo-outer-limit-truncate)
2404 (defun undo-outer-limit-truncate (size)
2405 (if undo-ask-before-discard
2406 (when (or (null undo-extra-outer-limit)
2407 (> size undo-extra-outer-limit))
2408 ;; Don't ask the question again unless it gets even bigger.
2409 ;; This applies, in particular, if the user quits from the question.
2410 ;; Such a quit quits out of GC, but something else will call GC
2411 ;; again momentarily. It will call this function again,
2412 ;; but we don't want to ask the question again.
2413 (setq undo-extra-outer-limit (+ size 50000))
2414 (if (let (use-dialog-box track-mouse executing-kbd-macro )
2415 (yes-or-no-p (format "Buffer `%s' undo info is %d bytes long; discard it? "
2416 (buffer-name) size)))
2417 (progn (setq buffer-undo-list nil)
2418 (setq undo-extra-outer-limit nil)
2419 t)
2420 nil))
2421 (display-warning '(undo discard-info)
2422 (concat
2423 (format "Buffer `%s' undo info was %d bytes long.\n"
2424 (buffer-name) size)
2425 "The undo info was discarded because it exceeded \
2426 `undo-outer-limit'.
2427
2428 This is normal if you executed a command that made a huge change
2429 to the buffer. In that case, to prevent similar problems in the
2430 future, set `undo-outer-limit' to a value that is large enough to
2431 cover the maximum size of normal changes you expect a single
2432 command to make, but not so large that it might exceed the
2433 maximum memory allotted to Emacs.
2434
2435 If you did not execute any such command, the situation is
2436 probably due to a bug and you should report it.
2437
2438 You can disable the popping up of this buffer by adding the entry
2439 \(undo discard-info) to the user option `warning-suppress-types',
2440 which is defined in the `warnings' library.\n")
2441 :warning)
2442 (setq buffer-undo-list nil)
2443 t))
2444 \f
2445 (defvar shell-command-history nil
2446 "History list for some commands that read shell commands.
2447
2448 Maximum length of the history list is determined by the value
2449 of `history-length', which see.")
2450
2451 (defvar shell-command-switch (purecopy "-c")
2452 "Switch used to have the shell execute its command line argument.")
2453
2454 (defvar shell-command-default-error-buffer nil
2455 "Buffer name for `shell-command' and `shell-command-on-region' error output.
2456 This buffer is used when `shell-command' or `shell-command-on-region'
2457 is run interactively. A value of nil means that output to stderr and
2458 stdout will be intermixed in the output stream.")
2459
2460 (declare-function mailcap-file-default-commands "mailcap" (files))
2461 (declare-function dired-get-filename "dired" (&optional localp no-error-if-not-filep))
2462
2463 (defun minibuffer-default-add-shell-commands ()
2464 "Return a list of all commands associated with the current file.
2465 This function is used to add all related commands retrieved by `mailcap'
2466 to the end of the list of defaults just after the default value."
2467 (interactive)
2468 (let* ((filename (if (listp minibuffer-default)
2469 (car minibuffer-default)
2470 minibuffer-default))
2471 (commands (and filename (require 'mailcap nil t)
2472 (mailcap-file-default-commands (list filename)))))
2473 (setq commands (mapcar (lambda (command)
2474 (concat command " " filename))
2475 commands))
2476 (if (listp minibuffer-default)
2477 (append minibuffer-default commands)
2478 (cons minibuffer-default commands))))
2479
2480 (declare-function shell-completion-vars "shell" ())
2481
2482 (defvar minibuffer-local-shell-command-map
2483 (let ((map (make-sparse-keymap)))
2484 (set-keymap-parent map minibuffer-local-map)
2485 (define-key map "\t" 'completion-at-point)
2486 map)
2487 "Keymap used for completing shell commands in minibuffer.")
2488
2489 (defun read-shell-command (prompt &optional initial-contents hist &rest args)
2490 "Read a shell command from the minibuffer.
2491 The arguments are the same as the ones of `read-from-minibuffer',
2492 except READ and KEYMAP are missing and HIST defaults
2493 to `shell-command-history'."
2494 (require 'shell)
2495 (minibuffer-with-setup-hook
2496 (lambda ()
2497 (shell-completion-vars)
2498 (set (make-local-variable 'minibuffer-default-add-function)
2499 'minibuffer-default-add-shell-commands))
2500 (apply 'read-from-minibuffer prompt initial-contents
2501 minibuffer-local-shell-command-map
2502 nil
2503 (or hist 'shell-command-history)
2504 args)))
2505
2506 (defcustom async-shell-command-buffer 'confirm-new-buffer
2507 "What to do when the output buffer is used by another shell command.
2508 This option specifies how to resolve the conflict where a new command
2509 wants to direct its output to the buffer `*Async Shell Command*',
2510 but this buffer is already taken by another running shell command.
2511
2512 The value `confirm-kill-process' is used to ask for confirmation before
2513 killing the already running process and running a new process
2514 in the same buffer, `confirm-new-buffer' for confirmation before running
2515 the command in a new buffer with a name other than the default buffer name,
2516 `new-buffer' for doing the same without confirmation,
2517 `confirm-rename-buffer' for confirmation before renaming the existing
2518 output buffer and running a new command in the default buffer,
2519 `rename-buffer' for doing the same without confirmation."
2520 :type '(choice (const :tag "Confirm killing of running command"
2521 confirm-kill-process)
2522 (const :tag "Confirm creation of a new buffer"
2523 confirm-new-buffer)
2524 (const :tag "Create a new buffer"
2525 new-buffer)
2526 (const :tag "Confirm renaming of existing buffer"
2527 confirm-rename-buffer)
2528 (const :tag "Rename the existing buffer"
2529 rename-buffer))
2530 :group 'shell
2531 :version "24.3")
2532
2533 (defun async-shell-command (command &optional output-buffer error-buffer)
2534 "Execute string COMMAND asynchronously in background.
2535
2536 Like `shell-command', but adds `&' at the end of COMMAND
2537 to execute it asynchronously.
2538
2539 The output appears in the buffer `*Async Shell Command*'.
2540 That buffer is in shell mode.
2541
2542 In Elisp, you will often be better served by calling `start-process'
2543 directly, since it offers more control and does not impose the use of a
2544 shell (with its need to quote arguments)."
2545 (interactive
2546 (list
2547 (read-shell-command "Async shell command: " nil nil
2548 (let ((filename
2549 (cond
2550 (buffer-file-name)
2551 ((eq major-mode 'dired-mode)
2552 (dired-get-filename nil t)))))
2553 (and filename (file-relative-name filename))))
2554 current-prefix-arg
2555 shell-command-default-error-buffer))
2556 (unless (string-match "&[ \t]*\\'" command)
2557 (setq command (concat command " &")))
2558 (shell-command command output-buffer error-buffer))
2559
2560 (defun shell-command (command &optional output-buffer error-buffer)
2561 "Execute string COMMAND in inferior shell; display output, if any.
2562 With prefix argument, insert the COMMAND's output at point.
2563
2564 If COMMAND ends in `&', execute it asynchronously.
2565 The output appears in the buffer `*Async Shell Command*'.
2566 That buffer is in shell mode. You can also use
2567 `async-shell-command' that automatically adds `&'.
2568
2569 Otherwise, COMMAND is executed synchronously. The output appears in
2570 the buffer `*Shell Command Output*'. If the output is short enough to
2571 display in the echo area (which is determined by the variables
2572 `resize-mini-windows' and `max-mini-window-height'), it is shown
2573 there, but it is nonetheless available in buffer `*Shell Command
2574 Output*' even though that buffer is not automatically displayed.
2575
2576 To specify a coding system for converting non-ASCII characters
2577 in the shell command output, use \\[universal-coding-system-argument] \
2578 before this command.
2579
2580 Noninteractive callers can specify coding systems by binding
2581 `coding-system-for-read' and `coding-system-for-write'.
2582
2583 The optional second argument OUTPUT-BUFFER, if non-nil,
2584 says to put the output in some other buffer.
2585 If OUTPUT-BUFFER is a buffer or buffer name, put the output there.
2586 If OUTPUT-BUFFER is not a buffer and not nil,
2587 insert output in current buffer. (This cannot be done asynchronously.)
2588 In either case, the buffer is first erased, and the output is
2589 inserted after point (leaving mark after it).
2590
2591 If the command terminates without error, but generates output,
2592 and you did not specify \"insert it in the current buffer\",
2593 the output can be displayed in the echo area or in its buffer.
2594 If the output is short enough to display in the echo area
2595 \(determined by the variable `max-mini-window-height' if
2596 `resize-mini-windows' is non-nil), it is shown there.
2597 Otherwise,the buffer containing the output is displayed.
2598
2599 If there is output and an error, and you did not specify \"insert it
2600 in the current buffer\", a message about the error goes at the end
2601 of the output.
2602
2603 If there is no output, or if output is inserted in the current buffer,
2604 then `*Shell Command Output*' is deleted.
2605
2606 If the optional third argument ERROR-BUFFER is non-nil, it is a buffer
2607 or buffer name to which to direct the command's standard error output.
2608 If it is nil, error output is mingled with regular output.
2609 In an interactive call, the variable `shell-command-default-error-buffer'
2610 specifies the value of ERROR-BUFFER.
2611
2612 In Elisp, you will often be better served by calling `call-process' or
2613 `start-process' directly, since it offers more control and does not impose
2614 the use of a shell (with its need to quote arguments)."
2615
2616 (interactive
2617 (list
2618 (read-shell-command "Shell command: " nil nil
2619 (let ((filename
2620 (cond
2621 (buffer-file-name)
2622 ((eq major-mode 'dired-mode)
2623 (dired-get-filename nil t)))))
2624 (and filename (file-relative-name filename))))
2625 current-prefix-arg
2626 shell-command-default-error-buffer))
2627 ;; Look for a handler in case default-directory is a remote file name.
2628 (let ((handler
2629 (find-file-name-handler (directory-file-name default-directory)
2630 'shell-command)))
2631 (if handler
2632 (funcall handler 'shell-command command output-buffer error-buffer)
2633 (if (and output-buffer
2634 (not (or (bufferp output-buffer) (stringp output-buffer))))
2635 ;; Output goes in current buffer.
2636 (let ((error-file
2637 (if error-buffer
2638 (make-temp-file
2639 (expand-file-name "scor"
2640 (or small-temporary-file-directory
2641 temporary-file-directory)))
2642 nil)))
2643 (barf-if-buffer-read-only)
2644 (push-mark nil t)
2645 ;; We do not use -f for csh; we will not support broken use of
2646 ;; .cshrcs. Even the BSD csh manual says to use
2647 ;; "if ($?prompt) exit" before things which are not useful
2648 ;; non-interactively. Besides, if someone wants their other
2649 ;; aliases for shell commands then they can still have them.
2650 (call-process shell-file-name nil
2651 (if error-file
2652 (list t error-file)
2653 t)
2654 nil shell-command-switch command)
2655 (when (and error-file (file-exists-p error-file))
2656 (if (< 0 (nth 7 (file-attributes error-file)))
2657 (with-current-buffer (get-buffer-create error-buffer)
2658 (let ((pos-from-end (- (point-max) (point))))
2659 (or (bobp)
2660 (insert "\f\n"))
2661 ;; Do no formatting while reading error file,
2662 ;; because that can run a shell command, and we
2663 ;; don't want that to cause an infinite recursion.
2664 (format-insert-file error-file nil)
2665 ;; Put point after the inserted errors.
2666 (goto-char (- (point-max) pos-from-end)))
2667 (display-buffer (current-buffer))))
2668 (delete-file error-file))
2669 ;; This is like exchange-point-and-mark, but doesn't
2670 ;; activate the mark. It is cleaner to avoid activation,
2671 ;; even though the command loop would deactivate the mark
2672 ;; because we inserted text.
2673 (goto-char (prog1 (mark t)
2674 (set-marker (mark-marker) (point)
2675 (current-buffer)))))
2676 ;; Output goes in a separate buffer.
2677 ;; Preserve the match data in case called from a program.
2678 (save-match-data
2679 (if (string-match "[ \t]*&[ \t]*\\'" command)
2680 ;; Command ending with ampersand means asynchronous.
2681 (let ((buffer (get-buffer-create
2682 (or output-buffer "*Async Shell Command*")))
2683 (directory default-directory)
2684 proc)
2685 ;; Remove the ampersand.
2686 (setq command (substring command 0 (match-beginning 0)))
2687 ;; Ask the user what to do with already running process.
2688 (setq proc (get-buffer-process buffer))
2689 (when proc
2690 (cond
2691 ((eq async-shell-command-buffer 'confirm-kill-process)
2692 ;; If will kill a process, query first.
2693 (if (yes-or-no-p "A command is running in the default buffer. Kill it? ")
2694 (kill-process proc)
2695 (error "Shell command in progress")))
2696 ((eq async-shell-command-buffer 'confirm-new-buffer)
2697 ;; If will create a new buffer, query first.
2698 (if (yes-or-no-p "A command is running in the default buffer. Use a new buffer? ")
2699 (setq buffer (generate-new-buffer
2700 (or output-buffer "*Async Shell Command*")))
2701 (error "Shell command in progress")))
2702 ((eq async-shell-command-buffer 'new-buffer)
2703 ;; It will create a new buffer.
2704 (setq buffer (generate-new-buffer
2705 (or output-buffer "*Async Shell Command*"))))
2706 ((eq async-shell-command-buffer 'confirm-rename-buffer)
2707 ;; If will rename the buffer, query first.
2708 (if (yes-or-no-p "A command is running in the default buffer. Rename it? ")
2709 (progn
2710 (with-current-buffer buffer
2711 (rename-uniquely))
2712 (setq buffer (get-buffer-create
2713 (or output-buffer "*Async Shell Command*"))))
2714 (error "Shell command in progress")))
2715 ((eq async-shell-command-buffer 'rename-buffer)
2716 ;; It will rename the buffer.
2717 (with-current-buffer buffer
2718 (rename-uniquely))
2719 (setq buffer (get-buffer-create
2720 (or output-buffer "*Async Shell Command*"))))))
2721 (with-current-buffer buffer
2722 (setq buffer-read-only nil)
2723 ;; Setting buffer-read-only to nil doesn't suffice
2724 ;; if some text has a non-nil read-only property,
2725 ;; which comint sometimes adds for prompts.
2726 (let ((inhibit-read-only t))
2727 (erase-buffer))
2728 (display-buffer buffer)
2729 (setq default-directory directory)
2730 (setq proc (start-process "Shell" buffer shell-file-name
2731 shell-command-switch command))
2732 (setq mode-line-process '(":%s"))
2733 (require 'shell) (shell-mode)
2734 (set-process-sentinel proc 'shell-command-sentinel)
2735 ;; Use the comint filter for proper handling of carriage motion
2736 ;; (see `comint-inhibit-carriage-motion'),.
2737 (set-process-filter proc 'comint-output-filter)
2738 ))
2739 ;; Otherwise, command is executed synchronously.
2740 (shell-command-on-region (point) (point) command
2741 output-buffer nil error-buffer)))))))
2742
2743 (defun display-message-or-buffer (message
2744 &optional buffer-name not-this-window frame)
2745 "Display MESSAGE in the echo area if possible, otherwise in a pop-up buffer.
2746 MESSAGE may be either a string or a buffer.
2747
2748 A buffer is displayed using `display-buffer' if MESSAGE is too long for
2749 the maximum height of the echo area, as defined by `max-mini-window-height'
2750 if `resize-mini-windows' is non-nil.
2751
2752 Returns either the string shown in the echo area, or when a pop-up
2753 buffer is used, the window used to display it.
2754
2755 If MESSAGE is a string, then the optional argument BUFFER-NAME is the
2756 name of the buffer used to display it in the case where a pop-up buffer
2757 is used, defaulting to `*Message*'. In the case where MESSAGE is a
2758 string and it is displayed in the echo area, it is not specified whether
2759 the contents are inserted into the buffer anyway.
2760
2761 Optional arguments NOT-THIS-WINDOW and FRAME are as for `display-buffer',
2762 and only used if a buffer is displayed."
2763 (cond ((and (stringp message) (not (string-match "\n" message)))
2764 ;; Trivial case where we can use the echo area
2765 (message "%s" message))
2766 ((and (stringp message)
2767 (= (string-match "\n" message) (1- (length message))))
2768 ;; Trivial case where we can just remove single trailing newline
2769 (message "%s" (substring message 0 (1- (length message)))))
2770 (t
2771 ;; General case
2772 (with-current-buffer
2773 (if (bufferp message)
2774 message
2775 (get-buffer-create (or buffer-name "*Message*")))
2776
2777 (unless (bufferp message)
2778 (erase-buffer)
2779 (insert message))
2780
2781 (let ((lines
2782 (if (= (buffer-size) 0)
2783 0
2784 (count-screen-lines nil nil nil (minibuffer-window)))))
2785 (cond ((= lines 0))
2786 ((and (or (<= lines 1)
2787 (<= lines
2788 (if resize-mini-windows
2789 (cond ((floatp max-mini-window-height)
2790 (* (frame-height)
2791 max-mini-window-height))
2792 ((integerp max-mini-window-height)
2793 max-mini-window-height)
2794 (t
2795 1))
2796 1)))
2797 ;; Don't use the echo area if the output buffer is
2798 ;; already displayed in the selected frame.
2799 (not (get-buffer-window (current-buffer))))
2800 ;; Echo area
2801 (goto-char (point-max))
2802 (when (bolp)
2803 (backward-char 1))
2804 (message "%s" (buffer-substring (point-min) (point))))
2805 (t
2806 ;; Buffer
2807 (goto-char (point-min))
2808 (display-buffer (current-buffer)
2809 not-this-window frame))))))))
2810
2811
2812 ;; We have a sentinel to prevent insertion of a termination message
2813 ;; in the buffer itself.
2814 (defun shell-command-sentinel (process signal)
2815 (if (memq (process-status process) '(exit signal))
2816 (message "%s: %s."
2817 (car (cdr (cdr (process-command process))))
2818 (substring signal 0 -1))))
2819
2820 (defun shell-command-on-region (start end command
2821 &optional output-buffer replace
2822 error-buffer display-error-buffer)
2823 "Execute string COMMAND in inferior shell with region as input.
2824 Normally display output (if any) in temp buffer `*Shell Command Output*';
2825 Prefix arg means replace the region with it. Return the exit code of
2826 COMMAND.
2827
2828 To specify a coding system for converting non-ASCII characters
2829 in the input and output to the shell command, use \\[universal-coding-system-argument]
2830 before this command. By default, the input (from the current buffer)
2831 is encoded using coding-system specified by `process-coding-system-alist',
2832 falling back to `default-process-coding-system' if no match for COMMAND
2833 is found in `process-coding-system-alist'.
2834
2835 Noninteractive callers can specify coding systems by binding
2836 `coding-system-for-read' and `coding-system-for-write'.
2837
2838 If the command generates output, the output may be displayed
2839 in the echo area or in a buffer.
2840 If the output is short enough to display in the echo area
2841 \(determined by the variable `max-mini-window-height' if
2842 `resize-mini-windows' is non-nil), it is shown there.
2843 Otherwise it is displayed in the buffer `*Shell Command Output*'.
2844 The output is available in that buffer in both cases.
2845
2846 If there is output and an error, a message about the error
2847 appears at the end of the output. If there is no output, or if
2848 output is inserted in the current buffer, the buffer `*Shell
2849 Command Output*' is deleted.
2850
2851 Optional fourth arg OUTPUT-BUFFER specifies where to put the
2852 command's output. If the value is a buffer or buffer name,
2853 put the output there. If the value is nil, use the buffer
2854 `*Shell Command Output*'. Any other value, excluding nil,
2855 means to insert the output in the current buffer. In either case,
2856 the output is inserted after point (leaving mark after it).
2857
2858 Optional fifth arg REPLACE, if non-nil, means to insert the
2859 output in place of text from START to END, putting point and mark
2860 around it.
2861
2862 Optional sixth arg ERROR-BUFFER, if non-nil, specifies a buffer
2863 or buffer name to which to direct the command's standard error
2864 output. If nil, error output is mingled with regular output.
2865 When called interactively, `shell-command-default-error-buffer'
2866 is used for ERROR-BUFFER.
2867
2868 Optional seventh arg DISPLAY-ERROR-BUFFER, if non-nil, means to
2869 display the error buffer if there were any errors. When called
2870 interactively, this is t."
2871 (interactive (let (string)
2872 (unless (mark)
2873 (error "The mark is not set now, so there is no region"))
2874 ;; Do this before calling region-beginning
2875 ;; and region-end, in case subprocess output
2876 ;; relocates them while we are in the minibuffer.
2877 (setq string (read-shell-command "Shell command on region: "))
2878 ;; call-interactively recognizes region-beginning and
2879 ;; region-end specially, leaving them in the history.
2880 (list (region-beginning) (region-end)
2881 string
2882 current-prefix-arg
2883 current-prefix-arg
2884 shell-command-default-error-buffer
2885 t)))
2886 (let ((error-file
2887 (if error-buffer
2888 (make-temp-file
2889 (expand-file-name "scor"
2890 (or small-temporary-file-directory
2891 temporary-file-directory)))
2892 nil))
2893 exit-status)
2894 (if (or replace
2895 (and output-buffer
2896 (not (or (bufferp output-buffer) (stringp output-buffer)))))
2897 ;; Replace specified region with output from command.
2898 (let ((swap (and replace (< start end))))
2899 ;; Don't muck with mark unless REPLACE says we should.
2900 (goto-char start)
2901 (and replace (push-mark (point) 'nomsg))
2902 (setq exit-status
2903 (call-process-region start end shell-file-name replace
2904 (if error-file
2905 (list t error-file)
2906 t)
2907 nil shell-command-switch command))
2908 ;; It is rude to delete a buffer which the command is not using.
2909 ;; (let ((shell-buffer (get-buffer "*Shell Command Output*")))
2910 ;; (and shell-buffer (not (eq shell-buffer (current-buffer)))
2911 ;; (kill-buffer shell-buffer)))
2912 ;; Don't muck with mark unless REPLACE says we should.
2913 (and replace swap (exchange-point-and-mark)))
2914 ;; No prefix argument: put the output in a temp buffer,
2915 ;; replacing its entire contents.
2916 (let ((buffer (get-buffer-create
2917 (or output-buffer "*Shell Command Output*"))))
2918 (unwind-protect
2919 (if (eq buffer (current-buffer))
2920 ;; If the input is the same buffer as the output,
2921 ;; delete everything but the specified region,
2922 ;; then replace that region with the output.
2923 (progn (setq buffer-read-only nil)
2924 (delete-region (max start end) (point-max))
2925 (delete-region (point-min) (min start end))
2926 (setq exit-status
2927 (call-process-region (point-min) (point-max)
2928 shell-file-name t
2929 (if error-file
2930 (list t error-file)
2931 t)
2932 nil shell-command-switch
2933 command)))
2934 ;; Clear the output buffer, then run the command with
2935 ;; output there.
2936 (let ((directory default-directory))
2937 (with-current-buffer buffer
2938 (setq buffer-read-only nil)
2939 (if (not output-buffer)
2940 (setq default-directory directory))
2941 (erase-buffer)))
2942 (setq exit-status
2943 (call-process-region start end shell-file-name nil
2944 (if error-file
2945 (list buffer error-file)
2946 buffer)
2947 nil shell-command-switch command)))
2948 ;; Report the output.
2949 (with-current-buffer buffer
2950 (setq mode-line-process
2951 (cond ((null exit-status)
2952 " - Error")
2953 ((stringp exit-status)
2954 (format " - Signal [%s]" exit-status))
2955 ((not (equal 0 exit-status))
2956 (format " - Exit [%d]" exit-status)))))
2957 (if (with-current-buffer buffer (> (point-max) (point-min)))
2958 ;; There's some output, display it
2959 (display-message-or-buffer buffer)
2960 ;; No output; error?
2961 (let ((output
2962 (if (and error-file
2963 (< 0 (nth 7 (file-attributes error-file))))
2964 (format "some error output%s"
2965 (if shell-command-default-error-buffer
2966 (format " to the \"%s\" buffer"
2967 shell-command-default-error-buffer)
2968 ""))
2969 "no output")))
2970 (cond ((null exit-status)
2971 (message "(Shell command failed with error)"))
2972 ((equal 0 exit-status)
2973 (message "(Shell command succeeded with %s)"
2974 output))
2975 ((stringp exit-status)
2976 (message "(Shell command killed by signal %s)"
2977 exit-status))
2978 (t
2979 (message "(Shell command failed with code %d and %s)"
2980 exit-status output))))
2981 ;; Don't kill: there might be useful info in the undo-log.
2982 ;; (kill-buffer buffer)
2983 ))))
2984
2985 (when (and error-file (file-exists-p error-file))
2986 (if (< 0 (nth 7 (file-attributes error-file)))
2987 (with-current-buffer (get-buffer-create error-buffer)
2988 (let ((pos-from-end (- (point-max) (point))))
2989 (or (bobp)
2990 (insert "\f\n"))
2991 ;; Do no formatting while reading error file,
2992 ;; because that can run a shell command, and we
2993 ;; don't want that to cause an infinite recursion.
2994 (format-insert-file error-file nil)
2995 ;; Put point after the inserted errors.
2996 (goto-char (- (point-max) pos-from-end)))
2997 (and display-error-buffer
2998 (display-buffer (current-buffer)))))
2999 (delete-file error-file))
3000 exit-status))
3001
3002 (defun shell-command-to-string (command)
3003 "Execute shell command COMMAND and return its output as a string."
3004 (with-output-to-string
3005 (with-current-buffer
3006 standard-output
3007 (process-file shell-file-name nil t nil shell-command-switch command))))
3008
3009 (defun process-file (program &optional infile buffer display &rest args)
3010 "Process files synchronously in a separate process.
3011 Similar to `call-process', but may invoke a file handler based on
3012 `default-directory'. The current working directory of the
3013 subprocess is `default-directory'.
3014
3015 File names in INFILE and BUFFER are handled normally, but file
3016 names in ARGS should be relative to `default-directory', as they
3017 are passed to the process verbatim. \(This is a difference to
3018 `call-process' which does not support file handlers for INFILE
3019 and BUFFER.\)
3020
3021 Some file handlers might not support all variants, for example
3022 they might behave as if DISPLAY was nil, regardless of the actual
3023 value passed."
3024 (let ((fh (find-file-name-handler default-directory 'process-file))
3025 lc stderr-file)
3026 (unwind-protect
3027 (if fh (apply fh 'process-file program infile buffer display args)
3028 (when infile (setq lc (file-local-copy infile)))
3029 (setq stderr-file (when (and (consp buffer) (stringp (cadr buffer)))
3030 (make-temp-file "emacs")))
3031 (prog1
3032 (apply 'call-process program
3033 (or lc infile)
3034 (if stderr-file (list (car buffer) stderr-file) buffer)
3035 display args)
3036 (when stderr-file (copy-file stderr-file (cadr buffer) t))))
3037 (when stderr-file (delete-file stderr-file))
3038 (when lc (delete-file lc)))))
3039
3040 (defvar process-file-side-effects t
3041 "Whether a call of `process-file' changes remote files.
3042
3043 By default, this variable is always set to `t', meaning that a
3044 call of `process-file' could potentially change any file on a
3045 remote host. When set to `nil', a file handler could optimize
3046 its behavior with respect to remote file attribute caching.
3047
3048 You should only ever change this variable with a let-binding;
3049 never with `setq'.")
3050
3051 (defun start-file-process (name buffer program &rest program-args)
3052 "Start a program in a subprocess. Return the process object for it.
3053
3054 Similar to `start-process', but may invoke a file handler based on
3055 `default-directory'. See Info node `(elisp)Magic File Names'.
3056
3057 This handler ought to run PROGRAM, perhaps on the local host,
3058 perhaps on a remote host that corresponds to `default-directory'.
3059 In the latter case, the local part of `default-directory' becomes
3060 the working directory of the process.
3061
3062 PROGRAM and PROGRAM-ARGS might be file names. They are not
3063 objects of file handler invocation. File handlers might not
3064 support pty association, if PROGRAM is nil."
3065 (let ((fh (find-file-name-handler default-directory 'start-file-process)))
3066 (if fh (apply fh 'start-file-process name buffer program program-args)
3067 (apply 'start-process name buffer program program-args))))
3068 \f
3069 ;;;; Process menu
3070
3071 (defvar tabulated-list-format)
3072 (defvar tabulated-list-entries)
3073 (defvar tabulated-list-sort-key)
3074 (declare-function tabulated-list-init-header "tabulated-list" ())
3075 (declare-function tabulated-list-print "tabulated-list"
3076 (&optional remember-pos))
3077
3078 (defvar process-menu-query-only nil)
3079
3080 (define-derived-mode process-menu-mode tabulated-list-mode "Process Menu"
3081 "Major mode for listing the processes called by Emacs."
3082 (setq tabulated-list-format [("Process" 15 t)
3083 ("Status" 7 t)
3084 ("Buffer" 15 t)
3085 ("TTY" 12 t)
3086 ("Command" 0 t)])
3087 (make-local-variable 'process-menu-query-only)
3088 (setq tabulated-list-sort-key (cons "Process" nil))
3089 (add-hook 'tabulated-list-revert-hook 'list-processes--refresh nil t)
3090 (tabulated-list-init-header))
3091
3092 (defun list-processes--refresh ()
3093 "Recompute the list of processes for the Process List buffer.
3094 Also, delete any process that is exited or signaled."
3095 (setq tabulated-list-entries nil)
3096 (dolist (p (process-list))
3097 (cond ((memq (process-status p) '(exit signal closed))
3098 (delete-process p))
3099 ((or (not process-menu-query-only)
3100 (process-query-on-exit-flag p))
3101 (let* ((buf (process-buffer p))
3102 (type (process-type p))
3103 (name (process-name p))
3104 (status (symbol-name (process-status p)))
3105 (buf-label (if (buffer-live-p buf)
3106 `(,(buffer-name buf)
3107 face link
3108 help-echo ,(concat "Visit buffer `"
3109 (buffer-name buf) "'")
3110 follow-link t
3111 process-buffer ,buf
3112 action process-menu-visit-buffer)
3113 "--"))
3114 (tty (or (process-tty-name p) "--"))
3115 (cmd
3116 (if (memq type '(network serial))
3117 (let ((contact (process-contact p t)))
3118 (if (eq type 'network)
3119 (format "(%s %s)"
3120 (if (plist-get contact :type)
3121 "datagram"
3122 "network")
3123 (if (plist-get contact :server)
3124 (format "server on %s"
3125 (or
3126 (plist-get contact :host)
3127 (plist-get contact :local)))
3128 (format "connection to %s"
3129 (plist-get contact :host))))
3130 (format "(serial port %s%s)"
3131 (or (plist-get contact :port) "?")
3132 (let ((speed (plist-get contact :speed)))
3133 (if speed
3134 (format " at %s b/s" speed)
3135 "")))))
3136 (mapconcat 'identity (process-command p) " "))))
3137 (push (list p (vector name status buf-label tty cmd))
3138 tabulated-list-entries))))))
3139
3140 (defun process-menu-visit-buffer (button)
3141 (display-buffer (button-get button 'process-buffer)))
3142
3143 (defun list-processes (&optional query-only buffer)
3144 "Display a list of all processes that are Emacs sub-processes.
3145 If optional argument QUERY-ONLY is non-nil, only processes with
3146 the query-on-exit flag set are listed.
3147 Any process listed as exited or signaled is actually eliminated
3148 after the listing is made.
3149 Optional argument BUFFER specifies a buffer to use, instead of
3150 \"*Process List*\".
3151 The return value is always nil.
3152
3153 This function lists only processes that were launched by Emacs. To
3154 see other processes running on the system, use `list-system-processes'."
3155 (interactive)
3156 (or (fboundp 'process-list)
3157 (error "Asynchronous subprocesses are not supported on this system"))
3158 (unless (bufferp buffer)
3159 (setq buffer (get-buffer-create "*Process List*")))
3160 (with-current-buffer buffer
3161 (process-menu-mode)
3162 (setq process-menu-query-only query-only)
3163 (list-processes--refresh)
3164 (tabulated-list-print))
3165 (display-buffer buffer)
3166 nil)
3167 \f
3168 (defvar universal-argument-map
3169 (let ((map (make-sparse-keymap)))
3170 (define-key map [t] 'universal-argument-other-key)
3171 (define-key map (vector meta-prefix-char t) 'universal-argument-other-key)
3172 (define-key map [switch-frame] nil)
3173 (define-key map [?\C-u] 'universal-argument-more)
3174 (define-key map [?-] 'universal-argument-minus)
3175 (define-key map [?0] 'digit-argument)
3176 (define-key map [?1] 'digit-argument)
3177 (define-key map [?2] 'digit-argument)
3178 (define-key map [?3] 'digit-argument)
3179 (define-key map [?4] 'digit-argument)
3180 (define-key map [?5] 'digit-argument)
3181 (define-key map [?6] 'digit-argument)
3182 (define-key map [?7] 'digit-argument)
3183 (define-key map [?8] 'digit-argument)
3184 (define-key map [?9] 'digit-argument)
3185 (define-key map [kp-0] 'digit-argument)
3186 (define-key map [kp-1] 'digit-argument)
3187 (define-key map [kp-2] 'digit-argument)
3188 (define-key map [kp-3] 'digit-argument)
3189 (define-key map [kp-4] 'digit-argument)
3190 (define-key map [kp-5] 'digit-argument)
3191 (define-key map [kp-6] 'digit-argument)
3192 (define-key map [kp-7] 'digit-argument)
3193 (define-key map [kp-8] 'digit-argument)
3194 (define-key map [kp-9] 'digit-argument)
3195 (define-key map [kp-subtract] 'universal-argument-minus)
3196 map)
3197 "Keymap used while processing \\[universal-argument].")
3198
3199 (defvar universal-argument-num-events nil
3200 "Number of argument-specifying events read by `universal-argument'.
3201 `universal-argument-other-key' uses this to discard those events
3202 from (this-command-keys), and reread only the final command.")
3203
3204 (defvar saved-overriding-map t
3205 "The saved value of `overriding-terminal-local-map'.
3206 That variable gets restored to this value on exiting \"universal
3207 argument mode\".")
3208
3209 (defun save&set-overriding-map (map)
3210 "Set `overriding-terminal-local-map' to MAP."
3211 (when (eq saved-overriding-map t)
3212 (setq saved-overriding-map overriding-terminal-local-map)
3213 (setq overriding-terminal-local-map map)))
3214
3215 (defun restore-overriding-map ()
3216 "Restore `overriding-terminal-local-map' to its saved value."
3217 (setq overriding-terminal-local-map saved-overriding-map)
3218 (setq saved-overriding-map t))
3219
3220 (defun universal-argument ()
3221 "Begin a numeric argument for the following command.
3222 Digits or minus sign following \\[universal-argument] make up the numeric argument.
3223 \\[universal-argument] following the digits or minus sign ends the argument.
3224 \\[universal-argument] without digits or minus sign provides 4 as argument.
3225 Repeating \\[universal-argument] without digits or minus sign
3226 multiplies the argument by 4 each time.
3227 For some commands, just \\[universal-argument] by itself serves as a flag
3228 which is different in effect from any particular numeric argument.
3229 These commands include \\[set-mark-command] and \\[start-kbd-macro]."
3230 (interactive)
3231 (setq prefix-arg (list 4))
3232 (setq universal-argument-num-events (length (this-command-keys)))
3233 (save&set-overriding-map universal-argument-map))
3234
3235 ;; A subsequent C-u means to multiply the factor by 4 if we've typed
3236 ;; nothing but C-u's; otherwise it means to terminate the prefix arg.
3237 (defun universal-argument-more (arg)
3238 (interactive "P")
3239 (if (consp arg)
3240 (setq prefix-arg (list (* 4 (car arg))))
3241 (if (eq arg '-)
3242 (setq prefix-arg (list -4))
3243 (setq prefix-arg arg)
3244 (restore-overriding-map)))
3245 (setq universal-argument-num-events (length (this-command-keys))))
3246
3247 (defun negative-argument (arg)
3248 "Begin a negative numeric argument for the next command.
3249 \\[universal-argument] following digits or minus sign ends the argument."
3250 (interactive "P")
3251 (cond ((integerp arg)
3252 (setq prefix-arg (- arg)))
3253 ((eq arg '-)
3254 (setq prefix-arg nil))
3255 (t
3256 (setq prefix-arg '-)))
3257 (setq universal-argument-num-events (length (this-command-keys)))
3258 (save&set-overriding-map universal-argument-map))
3259
3260 (defun digit-argument (arg)
3261 "Part of the numeric argument for the next command.
3262 \\[universal-argument] following digits or minus sign ends the argument."
3263 (interactive "P")
3264 (let* ((char (if (integerp last-command-event)
3265 last-command-event
3266 (get last-command-event 'ascii-character)))
3267 (digit (- (logand char ?\177) ?0)))
3268 (cond ((integerp arg)
3269 (setq prefix-arg (+ (* arg 10)
3270 (if (< arg 0) (- digit) digit))))
3271 ((eq arg '-)
3272 ;; Treat -0 as just -, so that -01 will work.
3273 (setq prefix-arg (if (zerop digit) '- (- digit))))
3274 (t
3275 (setq prefix-arg digit))))
3276 (setq universal-argument-num-events (length (this-command-keys)))
3277 (save&set-overriding-map universal-argument-map))
3278
3279 ;; For backward compatibility, minus with no modifiers is an ordinary
3280 ;; command if digits have already been entered.
3281 (defun universal-argument-minus (arg)
3282 (interactive "P")
3283 (if (integerp arg)
3284 (universal-argument-other-key arg)
3285 (negative-argument arg)))
3286
3287 ;; Anything else terminates the argument and is left in the queue to be
3288 ;; executed as a command.
3289 (defun universal-argument-other-key (arg)
3290 (interactive "P")
3291 (setq prefix-arg arg)
3292 (let* ((key (this-command-keys))
3293 (keylist (listify-key-sequence key)))
3294 (setq unread-command-events
3295 (append (nthcdr universal-argument-num-events keylist)
3296 unread-command-events)))
3297 (reset-this-command-lengths)
3298 (restore-overriding-map))
3299 \f
3300
3301 (defvar filter-buffer-substring-functions nil
3302 "This variable is a wrapper hook around `filter-buffer-substring'.")
3303 (make-obsolete-variable 'filter-buffer-substring-functions
3304 'filter-buffer-substring-function "24.4")
3305
3306 (defvar filter-buffer-substring-function #'buffer-substring--filter
3307 "Function to perform the filtering in `filter-buffer-substring'.
3308 The function is called with 3 arguments:
3309 \(BEG END DELETE). The arguments BEG, END, and DELETE are the same
3310 as those of `filter-buffer-substring' in each case.
3311 It should return the buffer substring between BEG and END, after filtering.")
3312
3313 (defvar buffer-substring-filters nil
3314 "List of filter functions for `filter-buffer-substring'.
3315 Each function must accept a single argument, a string, and return
3316 a string. The buffer substring is passed to the first function
3317 in the list, and the return value of each function is passed to
3318 the next.
3319 As a special convention, point is set to the start of the buffer text
3320 being operated on (i.e., the first argument of `filter-buffer-substring')
3321 before these functions are called.")
3322 (make-obsolete-variable 'buffer-substring-filters
3323 'filter-buffer-substring-function "24.1")
3324
3325 (defun filter-buffer-substring (beg end &optional delete)
3326 "Return the buffer substring between BEG and END, after filtering.
3327 The hook `filter-buffer-substring-function' performs the actual filtering.
3328 By default, no filtering is done.
3329
3330 If DELETE is non-nil, the text between BEG and END is deleted
3331 from the buffer.
3332
3333 This function should be used instead of `buffer-substring',
3334 `buffer-substring-no-properties', or `delete-and-extract-region'
3335 when you want to allow filtering to take place. For example,
3336 major or minor modes can use `filter-buffer-substring-function' to
3337 extract characters that are special to a buffer, and should not
3338 be copied into other buffers."
3339 (funcall filter-buffer-substring-function beg end delete))
3340
3341 (defun buffer-substring--filter (beg end &optional delete)
3342 (with-wrapper-hook filter-buffer-substring-functions (beg end delete)
3343 (cond
3344 ((or delete buffer-substring-filters)
3345 (save-excursion
3346 (goto-char beg)
3347 (let ((string (if delete (delete-and-extract-region beg end)
3348 (buffer-substring beg end))))
3349 (dolist (filter buffer-substring-filters)
3350 (setq string (funcall filter string)))
3351 string)))
3352 (t
3353 (buffer-substring beg end)))))
3354
3355
3356 ;;;; Window system cut and paste hooks.
3357
3358 (defvar interprogram-cut-function nil
3359 "Function to call to make a killed region available to other programs.
3360 Most window systems provide a facility for cutting and pasting
3361 text between different programs, such as the clipboard on X and
3362 MS-Windows, or the pasteboard on Nextstep/Mac OS.
3363
3364 This variable holds a function that Emacs calls whenever text is
3365 put in the kill ring, to make the new kill available to other
3366 programs. The function takes one argument, TEXT, which is a
3367 string containing the text which should be made available.")
3368
3369 (defvar interprogram-paste-function nil
3370 "Function to call to get text cut from other programs.
3371 Most window systems provide a facility for cutting and pasting
3372 text between different programs, such as the clipboard on X and
3373 MS-Windows, or the pasteboard on Nextstep/Mac OS.
3374
3375 This variable holds a function that Emacs calls to obtain text
3376 that other programs have provided for pasting. The function is
3377 called with no arguments. If no other program has provided text
3378 to paste, the function should return nil (in which case the
3379 caller, usually `current-kill', should use the top of the Emacs
3380 kill ring). If another program has provided text to paste, the
3381 function should return that text as a string (in which case the
3382 caller should put this string in the kill ring as the latest
3383 kill).
3384
3385 The function may also return a list of strings if the window
3386 system supports multiple selections. The first string will be
3387 used as the pasted text, but the other will be placed in the kill
3388 ring for easy access via `yank-pop'.
3389
3390 Note that the function should return a string only if a program
3391 other than Emacs has provided a string for pasting; if Emacs
3392 provided the most recent string, the function should return nil.
3393 If it is difficult to tell whether Emacs or some other program
3394 provided the current string, it is probably good enough to return
3395 nil if the string is equal (according to `string=') to the last
3396 text Emacs provided.")
3397 \f
3398
3399
3400 ;;;; The kill ring data structure.
3401
3402 (defvar kill-ring nil
3403 "List of killed text sequences.
3404 Since the kill ring is supposed to interact nicely with cut-and-paste
3405 facilities offered by window systems, use of this variable should
3406 interact nicely with `interprogram-cut-function' and
3407 `interprogram-paste-function'. The functions `kill-new',
3408 `kill-append', and `current-kill' are supposed to implement this
3409 interaction; you may want to use them instead of manipulating the kill
3410 ring directly.")
3411
3412 (defcustom kill-ring-max 60
3413 "Maximum length of kill ring before oldest elements are thrown away."
3414 :type 'integer
3415 :group 'killing)
3416
3417 (defvar kill-ring-yank-pointer nil
3418 "The tail of the kill ring whose car is the last thing yanked.")
3419
3420 (defcustom save-interprogram-paste-before-kill nil
3421 "Save clipboard strings into kill ring before replacing them.
3422 When one selects something in another program to paste it into Emacs,
3423 but kills something in Emacs before actually pasting it,
3424 this selection is gone unless this variable is non-nil,
3425 in which case the other program's selection is saved in the `kill-ring'
3426 before the Emacs kill and one can still paste it using \\[yank] \\[yank-pop]."
3427 :type 'boolean
3428 :group 'killing
3429 :version "23.2")
3430
3431 (defcustom kill-do-not-save-duplicates nil
3432 "Do not add a new string to `kill-ring' if it duplicates the last one.
3433 The comparison is done using `equal-including-properties'."
3434 :type 'boolean
3435 :group 'killing
3436 :version "23.2")
3437
3438 (defun kill-new (string &optional replace yank-handler)
3439 "Make STRING the latest kill in the kill ring.
3440 Set `kill-ring-yank-pointer' to point to it.
3441 If `interprogram-cut-function' is non-nil, apply it to STRING.
3442 Optional second argument REPLACE non-nil means that STRING will replace
3443 the front of the kill ring, rather than being added to the list.
3444
3445 When `save-interprogram-paste-before-kill' and `interprogram-paste-function'
3446 are non-nil, saves the interprogram paste string(s) into `kill-ring' before
3447 STRING.
3448
3449 When the yank handler has a non-nil PARAM element, the original STRING
3450 argument is not used by `insert-for-yank'. However, since Lisp code
3451 may access and use elements from the kill ring directly, the STRING
3452 argument should still be a \"useful\" string for such uses."
3453 (if (> (length string) 0)
3454 (if yank-handler
3455 (put-text-property 0 (length string)
3456 'yank-handler yank-handler string))
3457 (if yank-handler
3458 (signal 'args-out-of-range
3459 (list string "yank-handler specified for empty string"))))
3460 (unless (and kill-do-not-save-duplicates
3461 ;; Due to text properties such as 'yank-handler that
3462 ;; can alter the contents to yank, comparison using
3463 ;; `equal' is unsafe.
3464 (equal-including-properties string (car kill-ring)))
3465 (if (fboundp 'menu-bar-update-yank-menu)
3466 (menu-bar-update-yank-menu string (and replace (car kill-ring)))))
3467 (when save-interprogram-paste-before-kill
3468 (let ((interprogram-paste (and interprogram-paste-function
3469 (funcall interprogram-paste-function))))
3470 (when interprogram-paste
3471 (dolist (s (if (listp interprogram-paste)
3472 (nreverse interprogram-paste)
3473 (list interprogram-paste)))
3474 (unless (and kill-do-not-save-duplicates
3475 (equal-including-properties s (car kill-ring)))
3476 (push s kill-ring))))))
3477 (unless (and kill-do-not-save-duplicates
3478 (equal-including-properties string (car kill-ring)))
3479 (if (and replace kill-ring)
3480 (setcar kill-ring string)
3481 (push string kill-ring)
3482 (if (> (length kill-ring) kill-ring-max)
3483 (setcdr (nthcdr (1- kill-ring-max) kill-ring) nil))))
3484 (setq kill-ring-yank-pointer kill-ring)
3485 (if interprogram-cut-function
3486 (funcall interprogram-cut-function string)))
3487 (set-advertised-calling-convention
3488 'kill-new '(string &optional replace) "23.3")
3489
3490 (defun kill-append (string before-p &optional yank-handler)
3491 "Append STRING to the end of the latest kill in the kill ring.
3492 If BEFORE-P is non-nil, prepend STRING to the kill.
3493 If `interprogram-cut-function' is set, pass the resulting kill to it."
3494 (let* ((cur (car kill-ring)))
3495 (kill-new (if before-p (concat string cur) (concat cur string))
3496 (or (= (length cur) 0)
3497 (equal yank-handler (get-text-property 0 'yank-handler cur)))
3498 yank-handler)))
3499 (set-advertised-calling-convention 'kill-append '(string before-p) "23.3")
3500
3501 (defcustom yank-pop-change-selection nil
3502 "Whether rotating the kill ring changes the window system selection.
3503 If non-nil, whenever the kill ring is rotated (usually via the
3504 `yank-pop' command), Emacs also calls `interprogram-cut-function'
3505 to copy the new kill to the window system selection."
3506 :type 'boolean
3507 :group 'killing
3508 :version "23.1")
3509
3510 (defun current-kill (n &optional do-not-move)
3511 "Rotate the yanking point by N places, and then return that kill.
3512 If N is zero and `interprogram-paste-function' is set to a
3513 function that returns a string or a list of strings, and if that
3514 function doesn't return nil, then that string (or list) is added
3515 to the front of the kill ring and the string (or first string in
3516 the list) is returned as the latest kill.
3517
3518 If N is not zero, and if `yank-pop-change-selection' is
3519 non-nil, use `interprogram-cut-function' to transfer the
3520 kill at the new yank point into the window system selection.
3521
3522 If optional arg DO-NOT-MOVE is non-nil, then don't actually
3523 move the yanking point; just return the Nth kill forward."
3524
3525 (let ((interprogram-paste (and (= n 0)
3526 interprogram-paste-function
3527 (funcall interprogram-paste-function))))
3528 (if interprogram-paste
3529 (progn
3530 ;; Disable the interprogram cut function when we add the new
3531 ;; text to the kill ring, so Emacs doesn't try to own the
3532 ;; selection, with identical text.
3533 (let ((interprogram-cut-function nil))
3534 (if (listp interprogram-paste)
3535 (mapc 'kill-new (nreverse interprogram-paste))
3536 (kill-new interprogram-paste)))
3537 (car kill-ring))
3538 (or kill-ring (error "Kill ring is empty"))
3539 (let ((ARGth-kill-element
3540 (nthcdr (mod (- n (length kill-ring-yank-pointer))
3541 (length kill-ring))
3542 kill-ring)))
3543 (unless do-not-move
3544 (setq kill-ring-yank-pointer ARGth-kill-element)
3545 (when (and yank-pop-change-selection
3546 (> n 0)
3547 interprogram-cut-function)
3548 (funcall interprogram-cut-function (car ARGth-kill-element))))
3549 (car ARGth-kill-element)))))
3550
3551
3552
3553 ;;;; Commands for manipulating the kill ring.
3554
3555 (defcustom kill-read-only-ok nil
3556 "Non-nil means don't signal an error for killing read-only text."
3557 :type 'boolean
3558 :group 'killing)
3559
3560 (defun kill-region (beg end &optional yank-handler)
3561 "Kill (\"cut\") text between point and mark.
3562 This deletes the text from the buffer and saves it in the kill ring.
3563 The command \\[yank] can retrieve it from there.
3564 \(If you want to save the region without killing it, use \\[kill-ring-save].)
3565
3566 If you want to append the killed region to the last killed text,
3567 use \\[append-next-kill] before \\[kill-region].
3568
3569 If the buffer is read-only, Emacs will beep and refrain from deleting
3570 the text, but put the text in the kill ring anyway. This means that
3571 you can use the killing commands to copy text from a read-only buffer.
3572
3573 Lisp programs should use this function for killing text.
3574 (To delete text, use `delete-region'.)
3575 Supply two arguments, character positions indicating the stretch of text
3576 to be killed.
3577 Any command that calls this function is a \"kill command\".
3578 If the previous command was also a kill command,
3579 the text killed this time appends to the text killed last time
3580 to make one entry in the kill ring."
3581 ;; Pass point first, then mark, because the order matters
3582 ;; when calling kill-append.
3583 (interactive (list (point) (mark)))
3584 (unless (and beg end)
3585 (error "The mark is not set now, so there is no region"))
3586 (condition-case nil
3587 (let ((string (filter-buffer-substring beg end t)))
3588 (when string ;STRING is nil if BEG = END
3589 ;; Add that string to the kill ring, one way or another.
3590 (if (eq last-command 'kill-region)
3591 (kill-append string (< end beg) yank-handler)
3592 (kill-new string nil yank-handler)))
3593 (when (or string (eq last-command 'kill-region))
3594 (setq this-command 'kill-region))
3595 (setq deactivate-mark t)
3596 nil)
3597 ((buffer-read-only text-read-only)
3598 ;; The code above failed because the buffer, or some of the characters
3599 ;; in the region, are read-only.
3600 ;; We should beep, in case the user just isn't aware of this.
3601 ;; However, there's no harm in putting
3602 ;; the region's text in the kill ring, anyway.
3603 (copy-region-as-kill beg end)
3604 ;; Set this-command now, so it will be set even if we get an error.
3605 (setq this-command 'kill-region)
3606 ;; This should barf, if appropriate, and give us the correct error.
3607 (if kill-read-only-ok
3608 (progn (message "Read only text copied to kill ring") nil)
3609 ;; Signal an error if the buffer is read-only.
3610 (barf-if-buffer-read-only)
3611 ;; If the buffer isn't read-only, the text is.
3612 (signal 'text-read-only (list (current-buffer)))))))
3613 (set-advertised-calling-convention 'kill-region '(beg end) "23.3")
3614
3615 ;; copy-region-as-kill no longer sets this-command, because it's confusing
3616 ;; to get two copies of the text when the user accidentally types M-w and
3617 ;; then corrects it with the intended C-w.
3618 (defun copy-region-as-kill (beg end)
3619 "Save the region as if killed, but don't kill it.
3620 In Transient Mark mode, deactivate the mark.
3621 If `interprogram-cut-function' is non-nil, also save the text for a window
3622 system cut and paste.
3623
3624 This command's old key binding has been given to `kill-ring-save'."
3625 (interactive "r")
3626 (if (eq last-command 'kill-region)
3627 (kill-append (filter-buffer-substring beg end) (< end beg))
3628 (kill-new (filter-buffer-substring beg end)))
3629 (setq deactivate-mark t)
3630 nil)
3631
3632 (defun kill-ring-save (beg end)
3633 "Save the region as if killed, but don't kill it.
3634 In Transient Mark mode, deactivate the mark.
3635 If `interprogram-cut-function' is non-nil, also save the text for a window
3636 system cut and paste.
3637
3638 If you want to append the killed line to the last killed text,
3639 use \\[append-next-kill] before \\[kill-ring-save].
3640
3641 This command is similar to `copy-region-as-kill', except that it gives
3642 visual feedback indicating the extent of the region being copied."
3643 (interactive "r")
3644 (copy-region-as-kill beg end)
3645 ;; This use of called-interactively-p is correct because the code it
3646 ;; controls just gives the user visual feedback.
3647 (if (called-interactively-p 'interactive)
3648 (indicate-copied-region)))
3649
3650 (defun indicate-copied-region (&optional message-len)
3651 "Indicate that the region text has been copied interactively.
3652 If the mark is visible in the selected window, blink the cursor
3653 between point and mark if there is currently no active region
3654 highlighting.
3655
3656 If the mark lies outside the selected window, display an
3657 informative message containing a sample of the copied text. The
3658 optional argument MESSAGE-LEN, if non-nil, specifies the length
3659 of this sample text; it defaults to 40."
3660 (let ((mark (mark t))
3661 (point (point))
3662 ;; Inhibit quitting so we can make a quit here
3663 ;; look like a C-g typed as a command.
3664 (inhibit-quit t))
3665 (if (pos-visible-in-window-p mark (selected-window))
3666 ;; Swap point-and-mark quickly so as to show the region that
3667 ;; was selected. Don't do it if the region is highlighted.
3668 (unless (and (region-active-p)
3669 (face-background 'region))
3670 ;; Swap point and mark.
3671 (set-marker (mark-marker) (point) (current-buffer))
3672 (goto-char mark)
3673 (sit-for blink-matching-delay)
3674 ;; Swap back.
3675 (set-marker (mark-marker) mark (current-buffer))
3676 (goto-char point)
3677 ;; If user quit, deactivate the mark
3678 ;; as C-g would as a command.
3679 (and quit-flag mark-active
3680 (deactivate-mark)))
3681 (let ((len (min (abs (- mark point))
3682 (or message-len 40))))
3683 (if (< point mark)
3684 ;; Don't say "killed"; that is misleading.
3685 (message "Saved text until \"%s\""
3686 (buffer-substring-no-properties (- mark len) mark))
3687 (message "Saved text from \"%s\""
3688 (buffer-substring-no-properties mark (+ mark len))))))))
3689
3690 (defun append-next-kill (&optional interactive)
3691 "Cause following command, if it kills, to append to previous kill.
3692 The argument is used for internal purposes; do not supply one."
3693 (interactive "p")
3694 ;; We don't use (interactive-p), since that breaks kbd macros.
3695 (if interactive
3696 (progn
3697 (setq this-command 'kill-region)
3698 (message "If the next command is a kill, it will append"))
3699 (setq last-command 'kill-region)))
3700 \f
3701 ;; Yanking.
3702
3703 (defcustom yank-handled-properties
3704 '((font-lock-face . yank-handle-font-lock-face-property)
3705 (category . yank-handle-category-property))
3706 "List of special text property handling conditions for yanking.
3707 Each element should have the form (PROP . FUN), where PROP is a
3708 property symbol and FUN is a function. When the `yank' command
3709 inserts text into the buffer, it scans the inserted text for
3710 stretches of text that have `eq' values of the text property
3711 PROP; for each such stretch of text, FUN is called with three
3712 arguments: the property's value in that text, and the start and
3713 end positions of the text.
3714
3715 This is done prior to removing the properties specified by
3716 `yank-excluded-properties'."
3717 :group 'killing
3718 :version "24.3")
3719
3720 ;; This is actually used in subr.el but defcustom does not work there.
3721 (defcustom yank-excluded-properties
3722 '(category field follow-link fontified font-lock-face help-echo
3723 intangible invisible keymap local-map mouse-face read-only
3724 yank-handler)
3725 "Text properties to discard when yanking.
3726 The value should be a list of text properties to discard or t,
3727 which means to discard all text properties.
3728
3729 See also `yank-handled-properties'."
3730 :type '(choice (const :tag "All" t) (repeat symbol))
3731 :group 'killing
3732 :version "24.3")
3733
3734 (defvar yank-window-start nil)
3735 (defvar yank-undo-function nil
3736 "If non-nil, function used by `yank-pop' to delete last stretch of yanked text.
3737 Function is called with two parameters, START and END corresponding to
3738 the value of the mark and point; it is guaranteed that START <= END.
3739 Normally set from the UNDO element of a yank-handler; see `insert-for-yank'.")
3740
3741 (defun yank-pop (&optional arg)
3742 "Replace just-yanked stretch of killed text with a different stretch.
3743 This command is allowed only immediately after a `yank' or a `yank-pop'.
3744 At such a time, the region contains a stretch of reinserted
3745 previously-killed text. `yank-pop' deletes that text and inserts in its
3746 place a different stretch of killed text.
3747
3748 With no argument, the previous kill is inserted.
3749 With argument N, insert the Nth previous kill.
3750 If N is negative, this is a more recent kill.
3751
3752 The sequence of kills wraps around, so that after the oldest one
3753 comes the newest one.
3754
3755 When this command inserts killed text into the buffer, it honors
3756 `yank-excluded-properties' and `yank-handler' as described in the
3757 doc string for `insert-for-yank-1', which see."
3758 (interactive "*p")
3759 (if (not (eq last-command 'yank))
3760 (error "Previous command was not a yank"))
3761 (setq this-command 'yank)
3762 (unless arg (setq arg 1))
3763 (let ((inhibit-read-only t)
3764 (before (< (point) (mark t))))
3765 (if before
3766 (funcall (or yank-undo-function 'delete-region) (point) (mark t))
3767 (funcall (or yank-undo-function 'delete-region) (mark t) (point)))
3768 (setq yank-undo-function nil)
3769 (set-marker (mark-marker) (point) (current-buffer))
3770 (insert-for-yank (current-kill arg))
3771 ;; Set the window start back where it was in the yank command,
3772 ;; if possible.
3773 (set-window-start (selected-window) yank-window-start t)
3774 (if before
3775 ;; This is like exchange-point-and-mark, but doesn't activate the mark.
3776 ;; It is cleaner to avoid activation, even though the command
3777 ;; loop would deactivate the mark because we inserted text.
3778 (goto-char (prog1 (mark t)
3779 (set-marker (mark-marker) (point) (current-buffer))))))
3780 nil)
3781
3782 (defun yank (&optional arg)
3783 "Reinsert (\"paste\") the last stretch of killed text.
3784 More precisely, reinsert the most recent kill, which is the
3785 stretch of killed text most recently killed OR yanked. Put point
3786 at the end, and set mark at the beginning without activating it.
3787 With just \\[universal-argument] as argument, put point at beginning, and mark at end.
3788 With argument N, reinsert the Nth most recent kill.
3789
3790 When this command inserts text into the buffer, it honors the
3791 `yank-handled-properties' and `yank-excluded-properties'
3792 variables, and the `yank-handler' text property. See
3793 `insert-for-yank-1' for details.
3794
3795 See also the command `yank-pop' (\\[yank-pop])."
3796 (interactive "*P")
3797 (setq yank-window-start (window-start))
3798 ;; If we don't get all the way thru, make last-command indicate that
3799 ;; for the following command.
3800 (setq this-command t)
3801 (push-mark (point))
3802 (insert-for-yank (current-kill (cond
3803 ((listp arg) 0)
3804 ((eq arg '-) -2)
3805 (t (1- arg)))))
3806 (if (consp arg)
3807 ;; This is like exchange-point-and-mark, but doesn't activate the mark.
3808 ;; It is cleaner to avoid activation, even though the command
3809 ;; loop would deactivate the mark because we inserted text.
3810 (goto-char (prog1 (mark t)
3811 (set-marker (mark-marker) (point) (current-buffer)))))
3812 ;; If we do get all the way thru, make this-command indicate that.
3813 (if (eq this-command t)
3814 (setq this-command 'yank))
3815 nil)
3816
3817 (defun rotate-yank-pointer (arg)
3818 "Rotate the yanking point in the kill ring.
3819 With ARG, rotate that many kills forward (or backward, if negative)."
3820 (interactive "p")
3821 (current-kill arg))
3822 \f
3823 ;; Some kill commands.
3824
3825 ;; Internal subroutine of delete-char
3826 (defun kill-forward-chars (arg)
3827 (if (listp arg) (setq arg (car arg)))
3828 (if (eq arg '-) (setq arg -1))
3829 (kill-region (point) (+ (point) arg)))
3830
3831 ;; Internal subroutine of backward-delete-char
3832 (defun kill-backward-chars (arg)
3833 (if (listp arg) (setq arg (car arg)))
3834 (if (eq arg '-) (setq arg -1))
3835 (kill-region (point) (- (point) arg)))
3836
3837 (defcustom backward-delete-char-untabify-method 'untabify
3838 "The method for untabifying when deleting backward.
3839 Can be `untabify' -- turn a tab to many spaces, then delete one space;
3840 `hungry' -- delete all whitespace, both tabs and spaces;
3841 `all' -- delete all whitespace, including tabs, spaces and newlines;
3842 nil -- just delete one character."
3843 :type '(choice (const untabify) (const hungry) (const all) (const nil))
3844 :version "20.3"
3845 :group 'killing)
3846
3847 (defun backward-delete-char-untabify (arg &optional killp)
3848 "Delete characters backward, changing tabs into spaces.
3849 The exact behavior depends on `backward-delete-char-untabify-method'.
3850 Delete ARG chars, and kill (save in kill ring) if KILLP is non-nil.
3851 Interactively, ARG is the prefix arg (default 1)
3852 and KILLP is t if a prefix arg was specified."
3853 (interactive "*p\nP")
3854 (when (eq backward-delete-char-untabify-method 'untabify)
3855 (let ((count arg))
3856 (save-excursion
3857 (while (and (> count 0) (not (bobp)))
3858 (if (= (preceding-char) ?\t)
3859 (let ((col (current-column)))
3860 (forward-char -1)
3861 (setq col (- col (current-column)))
3862 (insert-char ?\s col)
3863 (delete-char 1)))
3864 (forward-char -1)
3865 (setq count (1- count))))))
3866 (let* ((skip (cond ((eq backward-delete-char-untabify-method 'hungry) " \t")
3867 ((eq backward-delete-char-untabify-method 'all)
3868 " \t\n\r")))
3869 (n (if skip
3870 (let* ((oldpt (point))
3871 (wh (- oldpt (save-excursion
3872 (skip-chars-backward skip)
3873 (constrain-to-field nil oldpt)))))
3874 (+ arg (if (zerop wh) 0 (1- wh))))
3875 arg)))
3876 ;; Avoid warning about delete-backward-char
3877 (with-no-warnings (delete-backward-char n killp))))
3878
3879 (defun zap-to-char (arg char)
3880 "Kill up to and including ARGth occurrence of CHAR.
3881 Case is ignored if `case-fold-search' is non-nil in the current buffer.
3882 Goes backward if ARG is negative; error if CHAR not found."
3883 (interactive (list (prefix-numeric-value current-prefix-arg)
3884 (read-char "Zap to char: " t)))
3885 ;; Avoid "obsolete" warnings for translation-table-for-input.
3886 (with-no-warnings
3887 (if (char-table-p translation-table-for-input)
3888 (setq char (or (aref translation-table-for-input char) char))))
3889 (kill-region (point) (progn
3890 (search-forward (char-to-string char) nil nil arg)
3891 (point))))
3892
3893 ;; kill-line and its subroutines.
3894
3895 (defcustom kill-whole-line nil
3896 "If non-nil, `kill-line' with no arg at start of line kills the whole line."
3897 :type 'boolean
3898 :group 'killing)
3899
3900 (defun kill-line (&optional arg)
3901 "Kill the rest of the current line; if no nonblanks there, kill thru newline.
3902 With prefix argument ARG, kill that many lines from point.
3903 Negative arguments kill lines backward.
3904 With zero argument, kills the text before point on the current line.
3905
3906 When calling from a program, nil means \"no arg\",
3907 a number counts as a prefix arg.
3908
3909 To kill a whole line, when point is not at the beginning, type \
3910 \\[move-beginning-of-line] \\[kill-line] \\[kill-line].
3911
3912 If `show-trailing-whitespace' is non-nil, this command will just
3913 kill the rest of the current line, even if there are only
3914 nonblanks there.
3915
3916 If option `kill-whole-line' is non-nil, then this command kills the whole line
3917 including its terminating newline, when used at the beginning of a line
3918 with no argument. As a consequence, you can always kill a whole line
3919 by typing \\[move-beginning-of-line] \\[kill-line].
3920
3921 If you want to append the killed line to the last killed text,
3922 use \\[append-next-kill] before \\[kill-line].
3923
3924 If the buffer is read-only, Emacs will beep and refrain from deleting
3925 the line, but put the line in the kill ring anyway. This means that
3926 you can use this command to copy text from a read-only buffer.
3927 \(If the variable `kill-read-only-ok' is non-nil, then this won't
3928 even beep.)"
3929 (interactive "P")
3930 (kill-region (point)
3931 ;; It is better to move point to the other end of the kill
3932 ;; before killing. That way, in a read-only buffer, point
3933 ;; moves across the text that is copied to the kill ring.
3934 ;; The choice has no effect on undo now that undo records
3935 ;; the value of point from before the command was run.
3936 (progn
3937 (if arg
3938 (forward-visible-line (prefix-numeric-value arg))
3939 (if (eobp)
3940 (signal 'end-of-buffer nil))
3941 (let ((end
3942 (save-excursion
3943 (end-of-visible-line) (point))))
3944 (if (or (save-excursion
3945 ;; If trailing whitespace is visible,
3946 ;; don't treat it as nothing.
3947 (unless show-trailing-whitespace
3948 (skip-chars-forward " \t" end))
3949 (= (point) end))
3950 (and kill-whole-line (bolp)))
3951 (forward-visible-line 1)
3952 (goto-char end))))
3953 (point))))
3954
3955 (defun kill-whole-line (&optional arg)
3956 "Kill current line.
3957 With prefix ARG, kill that many lines starting from the current line.
3958 If ARG is negative, kill backward. Also kill the preceding newline.
3959 \(This is meant to make \\[repeat] work well with negative arguments.\)
3960 If ARG is zero, kill current line but exclude the trailing newline."
3961 (interactive "p")
3962 (or arg (setq arg 1))
3963 (if (and (> arg 0) (eobp) (save-excursion (forward-visible-line 0) (eobp)))
3964 (signal 'end-of-buffer nil))
3965 (if (and (< arg 0) (bobp) (save-excursion (end-of-visible-line) (bobp)))
3966 (signal 'beginning-of-buffer nil))
3967 (unless (eq last-command 'kill-region)
3968 (kill-new "")
3969 (setq last-command 'kill-region))
3970 (cond ((zerop arg)
3971 ;; We need to kill in two steps, because the previous command
3972 ;; could have been a kill command, in which case the text
3973 ;; before point needs to be prepended to the current kill
3974 ;; ring entry and the text after point appended. Also, we
3975 ;; need to use save-excursion to avoid copying the same text
3976 ;; twice to the kill ring in read-only buffers.
3977 (save-excursion
3978 (kill-region (point) (progn (forward-visible-line 0) (point))))
3979 (kill-region (point) (progn (end-of-visible-line) (point))))
3980 ((< arg 0)
3981 (save-excursion
3982 (kill-region (point) (progn (end-of-visible-line) (point))))
3983 (kill-region (point)
3984 (progn (forward-visible-line (1+ arg))
3985 (unless (bobp) (backward-char))
3986 (point))))
3987 (t
3988 (save-excursion
3989 (kill-region (point) (progn (forward-visible-line 0) (point))))
3990 (kill-region (point)
3991 (progn (forward-visible-line arg) (point))))))
3992
3993 (defun forward-visible-line (arg)
3994 "Move forward by ARG lines, ignoring currently invisible newlines only.
3995 If ARG is negative, move backward -ARG lines.
3996 If ARG is zero, move to the beginning of the current line."
3997 (condition-case nil
3998 (if (> arg 0)
3999 (progn
4000 (while (> arg 0)
4001 (or (zerop (forward-line 1))
4002 (signal 'end-of-buffer nil))
4003 ;; If the newline we just skipped is invisible,
4004 ;; don't count it.
4005 (let ((prop
4006 (get-char-property (1- (point)) 'invisible)))
4007 (if (if (eq buffer-invisibility-spec t)
4008 prop
4009 (or (memq prop buffer-invisibility-spec)
4010 (assq prop buffer-invisibility-spec)))
4011 (setq arg (1+ arg))))
4012 (setq arg (1- arg)))
4013 ;; If invisible text follows, and it is a number of complete lines,
4014 ;; skip it.
4015 (let ((opoint (point)))
4016 (while (and (not (eobp))
4017 (let ((prop
4018 (get-char-property (point) 'invisible)))
4019 (if (eq buffer-invisibility-spec t)
4020 prop
4021 (or (memq prop buffer-invisibility-spec)
4022 (assq prop buffer-invisibility-spec)))))
4023 (goto-char
4024 (if (get-text-property (point) 'invisible)
4025 (or (next-single-property-change (point) 'invisible)
4026 (point-max))
4027 (next-overlay-change (point)))))
4028 (unless (bolp)
4029 (goto-char opoint))))
4030 (let ((first t))
4031 (while (or first (<= arg 0))
4032 (if first
4033 (beginning-of-line)
4034 (or (zerop (forward-line -1))
4035 (signal 'beginning-of-buffer nil)))
4036 ;; If the newline we just moved to is invisible,
4037 ;; don't count it.
4038 (unless (bobp)
4039 (let ((prop
4040 (get-char-property (1- (point)) 'invisible)))
4041 (unless (if (eq buffer-invisibility-spec t)
4042 prop
4043 (or (memq prop buffer-invisibility-spec)
4044 (assq prop buffer-invisibility-spec)))
4045 (setq arg (1+ arg)))))
4046 (setq first nil))
4047 ;; If invisible text follows, and it is a number of complete lines,
4048 ;; skip it.
4049 (let ((opoint (point)))
4050 (while (and (not (bobp))
4051 (let ((prop
4052 (get-char-property (1- (point)) 'invisible)))
4053 (if (eq buffer-invisibility-spec t)
4054 prop
4055 (or (memq prop buffer-invisibility-spec)
4056 (assq prop buffer-invisibility-spec)))))
4057 (goto-char
4058 (if (get-text-property (1- (point)) 'invisible)
4059 (or (previous-single-property-change (point) 'invisible)
4060 (point-min))
4061 (previous-overlay-change (point)))))
4062 (unless (bolp)
4063 (goto-char opoint)))))
4064 ((beginning-of-buffer end-of-buffer)
4065 nil)))
4066
4067 (defun end-of-visible-line ()
4068 "Move to end of current visible line."
4069 (end-of-line)
4070 ;; If the following character is currently invisible,
4071 ;; skip all characters with that same `invisible' property value,
4072 ;; then find the next newline.
4073 (while (and (not (eobp))
4074 (save-excursion
4075 (skip-chars-forward "^\n")
4076 (let ((prop
4077 (get-char-property (point) 'invisible)))
4078 (if (eq buffer-invisibility-spec t)
4079 prop
4080 (or (memq prop buffer-invisibility-spec)
4081 (assq prop buffer-invisibility-spec))))))
4082 (skip-chars-forward "^\n")
4083 (if (get-text-property (point) 'invisible)
4084 (goto-char (or (next-single-property-change (point) 'invisible)
4085 (point-max)))
4086 (goto-char (next-overlay-change (point))))
4087 (end-of-line)))
4088 \f
4089 (defun insert-buffer (buffer)
4090 "Insert after point the contents of BUFFER.
4091 Puts mark after the inserted text.
4092 BUFFER may be a buffer or a buffer name.
4093
4094 This function is meant for the user to run interactively.
4095 Don't call it from programs: use `insert-buffer-substring' instead!"
4096 (interactive
4097 (list
4098 (progn
4099 (barf-if-buffer-read-only)
4100 (read-buffer "Insert buffer: "
4101 (if (eq (selected-window) (next-window))
4102 (other-buffer (current-buffer))
4103 (window-buffer (next-window)))
4104 t))))
4105 (push-mark
4106 (save-excursion
4107 (insert-buffer-substring (get-buffer buffer))
4108 (point)))
4109 nil)
4110
4111 (defun append-to-buffer (buffer start end)
4112 "Append to specified buffer the text of the region.
4113 It is inserted into that buffer before its point.
4114
4115 When calling from a program, give three arguments:
4116 BUFFER (or buffer name), START and END.
4117 START and END specify the portion of the current buffer to be copied."
4118 (interactive
4119 (list (read-buffer "Append to buffer: " (other-buffer (current-buffer) t))
4120 (region-beginning) (region-end)))
4121 (let* ((oldbuf (current-buffer))
4122 (append-to (get-buffer-create buffer))
4123 (windows (get-buffer-window-list append-to t t))
4124 point)
4125 (save-excursion
4126 (with-current-buffer append-to
4127 (setq point (point))
4128 (barf-if-buffer-read-only)
4129 (insert-buffer-substring oldbuf start end)
4130 (dolist (window windows)
4131 (when (= (window-point window) point)
4132 (set-window-point window (point))))))))
4133
4134 (defun prepend-to-buffer (buffer start end)
4135 "Prepend to specified buffer the text of the region.
4136 It is inserted into that buffer after its point.
4137
4138 When calling from a program, give three arguments:
4139 BUFFER (or buffer name), START and END.
4140 START and END specify the portion of the current buffer to be copied."
4141 (interactive "BPrepend to buffer: \nr")
4142 (let ((oldbuf (current-buffer)))
4143 (with-current-buffer (get-buffer-create buffer)
4144 (barf-if-buffer-read-only)
4145 (save-excursion
4146 (insert-buffer-substring oldbuf start end)))))
4147
4148 (defun copy-to-buffer (buffer start end)
4149 "Copy to specified buffer the text of the region.
4150 It is inserted into that buffer, replacing existing text there.
4151
4152 When calling from a program, give three arguments:
4153 BUFFER (or buffer name), START and END.
4154 START and END specify the portion of the current buffer to be copied."
4155 (interactive "BCopy to buffer: \nr")
4156 (let ((oldbuf (current-buffer)))
4157 (with-current-buffer (get-buffer-create buffer)
4158 (barf-if-buffer-read-only)
4159 (erase-buffer)
4160 (save-excursion
4161 (insert-buffer-substring oldbuf start end)))))
4162 \f
4163 (define-error 'mark-inactive (purecopy "The mark is not active now"))
4164
4165 (defvar activate-mark-hook nil
4166 "Hook run when the mark becomes active.
4167 It is also run at the end of a command, if the mark is active and
4168 it is possible that the region may have changed.")
4169
4170 (defvar deactivate-mark-hook nil
4171 "Hook run when the mark becomes inactive.")
4172
4173 (defun mark (&optional force)
4174 "Return this buffer's mark value as integer, or nil if never set.
4175
4176 In Transient Mark mode, this function signals an error if
4177 the mark is not active. However, if `mark-even-if-inactive' is non-nil,
4178 or the argument FORCE is non-nil, it disregards whether the mark
4179 is active, and returns an integer or nil in the usual way.
4180
4181 If you are using this in an editing command, you are most likely making
4182 a mistake; see the documentation of `set-mark'."
4183 (if (or force (not transient-mark-mode) mark-active mark-even-if-inactive)
4184 (marker-position (mark-marker))
4185 (signal 'mark-inactive nil)))
4186
4187 (defun deactivate-mark (&optional force)
4188 "Deactivate the mark.
4189 If Transient Mark mode is disabled, this function normally does
4190 nothing; but if FORCE is non-nil, it deactivates the mark anyway.
4191
4192 Deactivating the mark sets `mark-active' to nil, updates the
4193 primary selection according to `select-active-regions', and runs
4194 `deactivate-mark-hook'.
4195
4196 If Transient Mark mode was temporarily enabled, reset the value
4197 of the variable `transient-mark-mode'; if this causes Transient
4198 Mark mode to be disabled, don't change `mark-active' to nil or
4199 run `deactivate-mark-hook'."
4200 (when (or transient-mark-mode force)
4201 (when (and (if (eq select-active-regions 'only)
4202 (eq (car-safe transient-mark-mode) 'only)
4203 select-active-regions)
4204 (region-active-p)
4205 (display-selections-p))
4206 ;; The var `saved-region-selection', if non-nil, is the text in
4207 ;; the region prior to the last command modifying the buffer.
4208 ;; Set the selection to that, or to the current region.
4209 (cond (saved-region-selection
4210 (x-set-selection 'PRIMARY saved-region-selection)
4211 (setq saved-region-selection nil))
4212 ;; If another program has acquired the selection, region
4213 ;; deactivation should not clobber it (Bug#11772).
4214 ((and (/= (region-beginning) (region-end))
4215 (or (x-selection-owner-p 'PRIMARY)
4216 (null (x-selection-exists-p 'PRIMARY))))
4217 (x-set-selection 'PRIMARY
4218 (buffer-substring (region-beginning)
4219 (region-end))))))
4220 (if (and (null force)
4221 (or (eq transient-mark-mode 'lambda)
4222 (and (eq (car-safe transient-mark-mode) 'only)
4223 (null (cdr transient-mark-mode)))))
4224 ;; When deactivating a temporary region, don't change
4225 ;; `mark-active' or run `deactivate-mark-hook'.
4226 (setq transient-mark-mode nil)
4227 (if (eq (car-safe transient-mark-mode) 'only)
4228 (setq transient-mark-mode (cdr transient-mark-mode)))
4229 (setq mark-active nil)
4230 (run-hooks 'deactivate-mark-hook))))
4231
4232 (defun activate-mark ()
4233 "Activate the mark."
4234 (when (mark t)
4235 (setq mark-active t)
4236 (unless transient-mark-mode
4237 (setq transient-mark-mode 'lambda))
4238 (run-hooks 'activate-mark-hook)))
4239
4240 (defun set-mark (pos)
4241 "Set this buffer's mark to POS. Don't use this function!
4242 That is to say, don't use this function unless you want
4243 the user to see that the mark has moved, and you want the previous
4244 mark position to be lost.
4245
4246 Normally, when a new mark is set, the old one should go on the stack.
4247 This is why most applications should use `push-mark', not `set-mark'.
4248
4249 Novice Emacs Lisp programmers often try to use the mark for the wrong
4250 purposes. The mark saves a location for the user's convenience.
4251 Most editing commands should not alter the mark.
4252 To remember a location for internal use in the Lisp program,
4253 store it in a Lisp variable. Example:
4254
4255 (let ((beg (point))) (forward-line 1) (delete-region beg (point)))."
4256
4257 (if pos
4258 (progn
4259 (setq mark-active t)
4260 (run-hooks 'activate-mark-hook)
4261 (set-marker (mark-marker) pos (current-buffer)))
4262 ;; Normally we never clear mark-active except in Transient Mark mode.
4263 ;; But when we actually clear out the mark value too, we must
4264 ;; clear mark-active in any mode.
4265 (deactivate-mark t)
4266 (set-marker (mark-marker) nil)))
4267
4268 (defcustom use-empty-active-region nil
4269 "Whether \"region-aware\" commands should act on empty regions.
4270 If nil, region-aware commands treat empty regions as inactive.
4271 If non-nil, region-aware commands treat the region as active as
4272 long as the mark is active, even if the region is empty.
4273
4274 Region-aware commands are those that act on the region if it is
4275 active and Transient Mark mode is enabled, and on the text near
4276 point otherwise."
4277 :type 'boolean
4278 :version "23.1"
4279 :group 'editing-basics)
4280
4281 (defun use-region-p ()
4282 "Return t if the region is active and it is appropriate to act on it.
4283 This is used by commands that act specially on the region under
4284 Transient Mark mode.
4285
4286 The return value is t if Transient Mark mode is enabled and the
4287 mark is active; furthermore, if `use-empty-active-region' is nil,
4288 the region must not be empty. Otherwise, the return value is nil.
4289
4290 For some commands, it may be appropriate to ignore the value of
4291 `use-empty-active-region'; in that case, use `region-active-p'."
4292 (and (region-active-p)
4293 (or use-empty-active-region (> (region-end) (region-beginning)))))
4294
4295 (defun region-active-p ()
4296 "Return t if Transient Mark mode is enabled and the mark is active.
4297
4298 Some commands act specially on the region when Transient Mark
4299 mode is enabled. Usually, such commands should use
4300 `use-region-p' instead of this function, because `use-region-p'
4301 also checks the value of `use-empty-active-region'."
4302 (and transient-mark-mode mark-active))
4303
4304 (defvar mark-ring nil
4305 "The list of former marks of the current buffer, most recent first.")
4306 (make-variable-buffer-local 'mark-ring)
4307 (put 'mark-ring 'permanent-local t)
4308
4309 (defcustom mark-ring-max 16
4310 "Maximum size of mark ring. Start discarding off end if gets this big."
4311 :type 'integer
4312 :group 'editing-basics)
4313
4314 (defvar global-mark-ring nil
4315 "The list of saved global marks, most recent first.")
4316
4317 (defcustom global-mark-ring-max 16
4318 "Maximum size of global mark ring. \
4319 Start discarding off end if gets this big."
4320 :type 'integer
4321 :group 'editing-basics)
4322
4323 (defun pop-to-mark-command ()
4324 "Jump to mark, and pop a new position for mark off the ring.
4325 \(Does not affect global mark ring\)."
4326 (interactive)
4327 (if (null (mark t))
4328 (error "No mark set in this buffer")
4329 (if (= (point) (mark t))
4330 (message "Mark popped"))
4331 (goto-char (mark t))
4332 (pop-mark)))
4333
4334 (defun push-mark-command (arg &optional nomsg)
4335 "Set mark at where point is.
4336 If no prefix ARG and mark is already set there, just activate it.
4337 Display `Mark set' unless the optional second arg NOMSG is non-nil."
4338 (interactive "P")
4339 (let ((mark (marker-position (mark-marker))))
4340 (if (or arg (null mark) (/= mark (point)))
4341 (push-mark nil nomsg t)
4342 (setq mark-active t)
4343 (run-hooks 'activate-mark-hook)
4344 (unless nomsg
4345 (message "Mark activated")))))
4346
4347 (defcustom set-mark-command-repeat-pop nil
4348 "Non-nil means repeating \\[set-mark-command] after popping mark pops it again.
4349 That means that C-u \\[set-mark-command] \\[set-mark-command]
4350 will pop the mark twice, and
4351 C-u \\[set-mark-command] \\[set-mark-command] \\[set-mark-command]
4352 will pop the mark three times.
4353
4354 A value of nil means \\[set-mark-command]'s behavior does not change
4355 after C-u \\[set-mark-command]."
4356 :type 'boolean
4357 :group 'editing-basics)
4358
4359 (defun set-mark-command (arg)
4360 "Set the mark where point is, or jump to the mark.
4361 Setting the mark also alters the region, which is the text
4362 between point and mark; this is the closest equivalent in
4363 Emacs to what some editors call the \"selection\".
4364
4365 With no prefix argument, set the mark at point, and push the
4366 old mark position on local mark ring. Also push the old mark on
4367 global mark ring, if the previous mark was set in another buffer.
4368
4369 When Transient Mark Mode is off, immediately repeating this
4370 command activates `transient-mark-mode' temporarily.
4371
4372 With prefix argument \(e.g., \\[universal-argument] \\[set-mark-command]\), \
4373 jump to the mark, and set the mark from
4374 position popped off the local mark ring \(this does not affect the global
4375 mark ring\). Use \\[pop-global-mark] to jump to a mark popped off the global
4376 mark ring \(see `pop-global-mark'\).
4377
4378 If `set-mark-command-repeat-pop' is non-nil, repeating
4379 the \\[set-mark-command] command with no prefix argument pops the next position
4380 off the local (or global) mark ring and jumps there.
4381
4382 With \\[universal-argument] \\[universal-argument] as prefix
4383 argument, unconditionally set mark where point is, even if
4384 `set-mark-command-repeat-pop' is non-nil.
4385
4386 Novice Emacs Lisp programmers often try to use the mark for the wrong
4387 purposes. See the documentation of `set-mark' for more information."
4388 (interactive "P")
4389 (cond ((eq transient-mark-mode 'lambda)
4390 (setq transient-mark-mode nil))
4391 ((eq (car-safe transient-mark-mode) 'only)
4392 (deactivate-mark)))
4393 (cond
4394 ((and (consp arg) (> (prefix-numeric-value arg) 4))
4395 (push-mark-command nil))
4396 ((not (eq this-command 'set-mark-command))
4397 (if arg
4398 (pop-to-mark-command)
4399 (push-mark-command t)))
4400 ((and set-mark-command-repeat-pop
4401 (eq last-command 'pop-to-mark-command))
4402 (setq this-command 'pop-to-mark-command)
4403 (pop-to-mark-command))
4404 ((and set-mark-command-repeat-pop
4405 (eq last-command 'pop-global-mark)
4406 (not arg))
4407 (setq this-command 'pop-global-mark)
4408 (pop-global-mark))
4409 (arg
4410 (setq this-command 'pop-to-mark-command)
4411 (pop-to-mark-command))
4412 ((eq last-command 'set-mark-command)
4413 (if (region-active-p)
4414 (progn
4415 (deactivate-mark)
4416 (message "Mark deactivated"))
4417 (activate-mark)
4418 (message "Mark activated")))
4419 (t
4420 (push-mark-command nil))))
4421
4422 (defun push-mark (&optional location nomsg activate)
4423 "Set mark at LOCATION (point, by default) and push old mark on mark ring.
4424 If the last global mark pushed was not in the current buffer,
4425 also push LOCATION on the global mark ring.
4426 Display `Mark set' unless the optional second arg NOMSG is non-nil.
4427
4428 Novice Emacs Lisp programmers often try to use the mark for the wrong
4429 purposes. See the documentation of `set-mark' for more information.
4430
4431 In Transient Mark mode, activate mark if optional third arg ACTIVATE non-nil."
4432 (unless (null (mark t))
4433 (setq mark-ring (cons (copy-marker (mark-marker)) mark-ring))
4434 (when (> (length mark-ring) mark-ring-max)
4435 (move-marker (car (nthcdr mark-ring-max mark-ring)) nil)
4436 (setcdr (nthcdr (1- mark-ring-max) mark-ring) nil)))
4437 (set-marker (mark-marker) (or location (point)) (current-buffer))
4438 ;; Now push the mark on the global mark ring.
4439 (if (and global-mark-ring
4440 (eq (marker-buffer (car global-mark-ring)) (current-buffer)))
4441 ;; The last global mark pushed was in this same buffer.
4442 ;; Don't push another one.
4443 nil
4444 (setq global-mark-ring (cons (copy-marker (mark-marker)) global-mark-ring))
4445 (when (> (length global-mark-ring) global-mark-ring-max)
4446 (move-marker (car (nthcdr global-mark-ring-max global-mark-ring)) nil)
4447 (setcdr (nthcdr (1- global-mark-ring-max) global-mark-ring) nil)))
4448 (or nomsg executing-kbd-macro (> (minibuffer-depth) 0)
4449 (message "Mark set"))
4450 (if (or activate (not transient-mark-mode))
4451 (set-mark (mark t)))
4452 nil)
4453
4454 (defun pop-mark ()
4455 "Pop off mark ring into the buffer's actual mark.
4456 Does not set point. Does nothing if mark ring is empty."
4457 (when mark-ring
4458 (setq mark-ring (nconc mark-ring (list (copy-marker (mark-marker)))))
4459 (set-marker (mark-marker) (+ 0 (car mark-ring)) (current-buffer))
4460 (move-marker (car mark-ring) nil)
4461 (if (null (mark t)) (ding))
4462 (setq mark-ring (cdr mark-ring)))
4463 (deactivate-mark))
4464
4465 (define-obsolete-function-alias
4466 'exchange-dot-and-mark 'exchange-point-and-mark "23.3")
4467 (defun exchange-point-and-mark (&optional arg)
4468 "Put the mark where point is now, and point where the mark is now.
4469 This command works even when the mark is not active,
4470 and it reactivates the mark.
4471
4472 If Transient Mark mode is on, a prefix ARG deactivates the mark
4473 if it is active, and otherwise avoids reactivating it. If
4474 Transient Mark mode is off, a prefix ARG enables Transient Mark
4475 mode temporarily."
4476 (interactive "P")
4477 (let ((omark (mark t))
4478 (temp-highlight (eq (car-safe transient-mark-mode) 'only)))
4479 (if (null omark)
4480 (error "No mark set in this buffer"))
4481 (deactivate-mark)
4482 (set-mark (point))
4483 (goto-char omark)
4484 (cond (temp-highlight
4485 (setq transient-mark-mode (cons 'only transient-mark-mode)))
4486 ((or (and arg (region-active-p)) ; (xor arg (not (region-active-p)))
4487 (not (or arg (region-active-p))))
4488 (deactivate-mark))
4489 (t (activate-mark)))
4490 nil))
4491
4492 (defcustom shift-select-mode t
4493 "When non-nil, shifted motion keys activate the mark momentarily.
4494
4495 While the mark is activated in this way, any shift-translated point
4496 motion key extends the region, and if Transient Mark mode was off, it
4497 is temporarily turned on. Furthermore, the mark will be deactivated
4498 by any subsequent point motion key that was not shift-translated, or
4499 by any action that normally deactivates the mark in Transient Mark mode.
4500
4501 See `this-command-keys-shift-translated' for the meaning of
4502 shift-translation."
4503 :type 'boolean
4504 :group 'editing-basics)
4505
4506 (defun handle-shift-selection ()
4507 "Activate/deactivate mark depending on invocation thru shift translation.
4508 This function is called by `call-interactively' when a command
4509 with a `^' character in its `interactive' spec is invoked, before
4510 running the command itself.
4511
4512 If `shift-select-mode' is enabled and the command was invoked
4513 through shift translation, set the mark and activate the region
4514 temporarily, unless it was already set in this way. See
4515 `this-command-keys-shift-translated' for the meaning of shift
4516 translation.
4517
4518 Otherwise, if the region has been activated temporarily,
4519 deactivate it, and restore the variable `transient-mark-mode' to
4520 its earlier value."
4521 (cond ((and shift-select-mode this-command-keys-shift-translated)
4522 (unless (and mark-active
4523 (eq (car-safe transient-mark-mode) 'only))
4524 (setq transient-mark-mode
4525 (cons 'only
4526 (unless (eq transient-mark-mode 'lambda)
4527 transient-mark-mode)))
4528 (push-mark nil nil t)))
4529 ((eq (car-safe transient-mark-mode) 'only)
4530 (setq transient-mark-mode (cdr transient-mark-mode))
4531 (deactivate-mark))))
4532
4533 (define-minor-mode transient-mark-mode
4534 "Toggle Transient Mark mode.
4535 With a prefix argument ARG, enable Transient Mark mode if ARG is
4536 positive, and disable it otherwise. If called from Lisp, enable
4537 Transient Mark mode if ARG is omitted or nil.
4538
4539 Transient Mark mode is a global minor mode. When enabled, the
4540 region is highlighted whenever the mark is active. The mark is
4541 \"deactivated\" by changing the buffer, and after certain other
4542 operations that set the mark but whose main purpose is something
4543 else--for example, incremental search, \\[beginning-of-buffer], and \\[end-of-buffer].
4544
4545 You can also deactivate the mark by typing \\[keyboard-quit] or
4546 \\[keyboard-escape-quit].
4547
4548 Many commands change their behavior when Transient Mark mode is
4549 in effect and the mark is active, by acting on the region instead
4550 of their usual default part of the buffer's text. Examples of
4551 such commands include \\[comment-dwim], \\[flush-lines], \\[keep-lines],
4552 \\[query-replace], \\[query-replace-regexp], \\[ispell], and \\[undo].
4553 To see the documentation of commands which are sensitive to the
4554 Transient Mark mode, invoke \\[apropos-documentation] and type \"transient\"
4555 or \"mark.*active\" at the prompt."
4556 :global t
4557 ;; It's defined in C/cus-start, this stops the d-m-m macro defining it again.
4558 :variable transient-mark-mode)
4559
4560 (defvar widen-automatically t
4561 "Non-nil means it is ok for commands to call `widen' when they want to.
4562 Some commands will do this in order to go to positions outside
4563 the current accessible part of the buffer.
4564
4565 If `widen-automatically' is nil, these commands will do something else
4566 as a fallback, and won't change the buffer bounds.")
4567
4568 (defvar non-essential nil
4569 "Whether the currently executing code is performing an essential task.
4570 This variable should be non-nil only when running code which should not
4571 disturb the user. E.g. it can be used to prevent Tramp from prompting the
4572 user for a password when we are simply scanning a set of files in the
4573 background or displaying possible completions before the user even asked
4574 for it.")
4575
4576 (defun pop-global-mark ()
4577 "Pop off global mark ring and jump to the top location."
4578 (interactive)
4579 ;; Pop entries which refer to non-existent buffers.
4580 (while (and global-mark-ring (not (marker-buffer (car global-mark-ring))))
4581 (setq global-mark-ring (cdr global-mark-ring)))
4582 (or global-mark-ring
4583 (error "No global mark set"))
4584 (let* ((marker (car global-mark-ring))
4585 (buffer (marker-buffer marker))
4586 (position (marker-position marker)))
4587 (setq global-mark-ring (nconc (cdr global-mark-ring)
4588 (list (car global-mark-ring))))
4589 (set-buffer buffer)
4590 (or (and (>= position (point-min))
4591 (<= position (point-max)))
4592 (if widen-automatically
4593 (widen)
4594 (error "Global mark position is outside accessible part of buffer")))
4595 (goto-char position)
4596 (switch-to-buffer buffer)))
4597 \f
4598 (defcustom next-line-add-newlines nil
4599 "If non-nil, `next-line' inserts newline to avoid `end of buffer' error."
4600 :type 'boolean
4601 :version "21.1"
4602 :group 'editing-basics)
4603
4604 (defun next-line (&optional arg try-vscroll)
4605 "Move cursor vertically down ARG lines.
4606 Interactively, vscroll tall lines if `auto-window-vscroll' is enabled.
4607 Non-interactively, use TRY-VSCROLL to control whether to vscroll tall
4608 lines: if either `auto-window-vscroll' or TRY-VSCROLL is nil, this
4609 function will not vscroll.
4610
4611 ARG defaults to 1.
4612
4613 If there is no character in the target line exactly under the current column,
4614 the cursor is positioned after the character in that line which spans this
4615 column, or at the end of the line if it is not long enough.
4616 If there is no line in the buffer after this one, behavior depends on the
4617 value of `next-line-add-newlines'. If non-nil, it inserts a newline character
4618 to create a line, and moves the cursor to that line. Otherwise it moves the
4619 cursor to the end of the buffer.
4620
4621 If the variable `line-move-visual' is non-nil, this command moves
4622 by display lines. Otherwise, it moves by buffer lines, without
4623 taking variable-width characters or continued lines into account.
4624
4625 The command \\[set-goal-column] can be used to create
4626 a semipermanent goal column for this command.
4627 Then instead of trying to move exactly vertically (or as close as possible),
4628 this command moves to the specified goal column (or as close as possible).
4629 The goal column is stored in the variable `goal-column', which is nil
4630 when there is no goal column. Note that setting `goal-column'
4631 overrides `line-move-visual' and causes this command to move by buffer
4632 lines rather than by display lines.
4633
4634 If you are thinking of using this in a Lisp program, consider
4635 using `forward-line' instead. It is usually easier to use
4636 and more reliable (no dependence on goal column, etc.)."
4637 (interactive "^p\np")
4638 (or arg (setq arg 1))
4639 (if (and next-line-add-newlines (= arg 1))
4640 (if (save-excursion (end-of-line) (eobp))
4641 ;; When adding a newline, don't expand an abbrev.
4642 (let ((abbrev-mode nil))
4643 (end-of-line)
4644 (insert (if use-hard-newlines hard-newline "\n")))
4645 (line-move arg nil nil try-vscroll))
4646 (if (called-interactively-p 'interactive)
4647 (condition-case err
4648 (line-move arg nil nil try-vscroll)
4649 ((beginning-of-buffer end-of-buffer)
4650 (signal (car err) (cdr err))))
4651 (line-move arg nil nil try-vscroll)))
4652 nil)
4653
4654 (defun previous-line (&optional arg try-vscroll)
4655 "Move cursor vertically up ARG lines.
4656 Interactively, vscroll tall lines if `auto-window-vscroll' is enabled.
4657 Non-interactively, use TRY-VSCROLL to control whether to vscroll tall
4658 lines: if either `auto-window-vscroll' or TRY-VSCROLL is nil, this
4659 function will not vscroll.
4660
4661 ARG defaults to 1.
4662
4663 If there is no character in the target line exactly over the current column,
4664 the cursor is positioned after the character in that line which spans this
4665 column, or at the end of the line if it is not long enough.
4666
4667 If the variable `line-move-visual' is non-nil, this command moves
4668 by display lines. Otherwise, it moves by buffer lines, without
4669 taking variable-width characters or continued lines into account.
4670
4671 The command \\[set-goal-column] can be used to create
4672 a semipermanent goal column for this command.
4673 Then instead of trying to move exactly vertically (or as close as possible),
4674 this command moves to the specified goal column (or as close as possible).
4675 The goal column is stored in the variable `goal-column', which is nil
4676 when there is no goal column. Note that setting `goal-column'
4677 overrides `line-move-visual' and causes this command to move by buffer
4678 lines rather than by display lines.
4679
4680 If you are thinking of using this in a Lisp program, consider using
4681 `forward-line' with a negative argument instead. It is usually easier
4682 to use and more reliable (no dependence on goal column, etc.)."
4683 (interactive "^p\np")
4684 (or arg (setq arg 1))
4685 (if (called-interactively-p 'interactive)
4686 (condition-case err
4687 (line-move (- arg) nil nil try-vscroll)
4688 ((beginning-of-buffer end-of-buffer)
4689 (signal (car err) (cdr err))))
4690 (line-move (- arg) nil nil try-vscroll))
4691 nil)
4692
4693 (defcustom track-eol nil
4694 "Non-nil means vertical motion starting at end of line keeps to ends of lines.
4695 This means moving to the end of each line moved onto.
4696 The beginning of a blank line does not count as the end of a line.
4697 This has no effect when the variable `line-move-visual' is non-nil."
4698 :type 'boolean
4699 :group 'editing-basics)
4700
4701 (defcustom goal-column nil
4702 "Semipermanent goal column for vertical motion, as set by \\[set-goal-column], or nil.
4703 A non-nil setting overrides the variable `line-move-visual', which see."
4704 :type '(choice integer
4705 (const :tag "None" nil))
4706 :group 'editing-basics)
4707 (make-variable-buffer-local 'goal-column)
4708
4709 (defvar temporary-goal-column 0
4710 "Current goal column for vertical motion.
4711 It is the column where point was at the start of the current run
4712 of vertical motion commands.
4713
4714 When moving by visual lines via the function `line-move-visual', it is a cons
4715 cell (COL . HSCROLL), where COL is the x-position, in pixels,
4716 divided by the default column width, and HSCROLL is the number of
4717 columns by which window is scrolled from left margin.
4718
4719 When the `track-eol' feature is doing its job, the value is
4720 `most-positive-fixnum'.")
4721
4722 (defcustom line-move-ignore-invisible t
4723 "Non-nil means \\[next-line] and \\[previous-line] ignore invisible lines.
4724 Outline mode sets this."
4725 :type 'boolean
4726 :group 'editing-basics)
4727
4728 (defcustom line-move-visual t
4729 "When non-nil, `line-move' moves point by visual lines.
4730 This movement is based on where the cursor is displayed on the
4731 screen, instead of relying on buffer contents alone. It takes
4732 into account variable-width characters and line continuation.
4733 If nil, `line-move' moves point by logical lines.
4734 A non-nil setting of `goal-column' overrides the value of this variable
4735 and forces movement by logical lines.
4736 A window that is horizontally scrolled also forces movement by logical
4737 lines."
4738 :type 'boolean
4739 :group 'editing-basics
4740 :version "23.1")
4741
4742 (defun default-font-height ()
4743 "Return the height in pixels of the current buffer's default face font."
4744 (let ((default-font (face-font 'default)))
4745 (cond
4746 ((and (display-multi-font-p)
4747 ;; Avoid calling font-info if the frame's default font was
4748 ;; not changed since the frame was created. That's because
4749 ;; font-info is expensive for some fonts, see bug #14838.
4750 (not (string= (frame-parameter nil 'font) default-font)))
4751 (aref (font-info default-font) 3))
4752 (t (frame-char-height)))))
4753
4754 (defun default-line-height ()
4755 "Return the pixel height of current buffer's default-face text line.
4756
4757 The value includes `line-spacing', if any, defined for the buffer
4758 or the frame."
4759 (let ((dfh (default-font-height))
4760 (lsp (if (display-graphic-p)
4761 (or line-spacing
4762 (default-value 'line-spacing)
4763 (frame-parameter nil 'line-spacing)
4764 0)
4765 0)))
4766 (if (floatp lsp)
4767 (setq lsp (* dfh lsp)))
4768 (+ dfh lsp)))
4769
4770 (defun window-screen-lines ()
4771 "Return the number of screen lines in the text area of the selected window.
4772
4773 This is different from `window-text-height' in that this function counts
4774 lines in units of the height of the font used by the default face displayed
4775 in the window, not in units of the frame's default font, and also accounts
4776 for `line-spacing', if any, defined for the window's buffer or frame.
4777
4778 The value is a floating-point number."
4779 (let ((canonical (window-text-height))
4780 (fch (frame-char-height))
4781 (dlh (default-line-height)))
4782 (/ (* (float canonical) fch) dlh)))
4783
4784 ;; Returns non-nil if partial move was done.
4785 (defun line-move-partial (arg noerror to-end)
4786 (if (< arg 0)
4787 ;; Move backward (up).
4788 ;; If already vscrolled, reduce vscroll
4789 (let ((vs (window-vscroll nil t))
4790 (dlh (default-line-height)))
4791 (when (> vs dlh)
4792 (set-window-vscroll nil (- vs dlh) t)))
4793
4794 ;; Move forward (down).
4795 (let* ((lh (window-line-height -1))
4796 (rowh (car lh))
4797 (vpos (nth 1 lh))
4798 (ypos (nth 2 lh))
4799 (rbot (nth 3 lh))
4800 (this-lh (window-line-height))
4801 (this-height (car this-lh))
4802 (this-ypos (nth 2 this-lh))
4803 (dlh (default-line-height))
4804 (wslines (window-screen-lines))
4805 (edges (window-inside-pixel-edges))
4806 (winh (- (nth 3 edges) (nth 1 edges) 1))
4807 py vs last-line)
4808 (if (> (mod wslines 1.0) 0.0)
4809 (setq wslines (round (+ wslines 0.5))))
4810 (when (or (null lh)
4811 (>= rbot dlh)
4812 (<= ypos (- dlh))
4813 (null this-lh)
4814 (<= this-ypos (- dlh)))
4815 (unless lh
4816 (let ((wend (pos-visible-in-window-p t nil t)))
4817 (setq rbot (nth 3 wend)
4818 rowh (nth 4 wend)
4819 vpos (nth 5 wend))))
4820 (unless this-lh
4821 (let ((wstart (pos-visible-in-window-p nil nil t)))
4822 (setq this-ypos (nth 2 wstart)
4823 this-height (nth 4 wstart))))
4824 (setq py
4825 (or (nth 1 this-lh)
4826 (let ((ppos (posn-at-point))
4827 col-row)
4828 (setq col-row (posn-actual-col-row ppos))
4829 (if col-row
4830 (- (cdr col-row) (window-vscroll))
4831 (cdr (posn-col-row ppos))))))
4832 ;; VPOS > 0 means the last line is only partially visible.
4833 ;; But if the part that is visible is at least as tall as the
4834 ;; default font, that means the line is actually fully
4835 ;; readable, and something like line-spacing is hidden. So in
4836 ;; that case we accept the last line in the window as still
4837 ;; visible, and consider the margin as starting one line
4838 ;; later.
4839 (if (and vpos (> vpos 0))
4840 (if (and rowh
4841 (>= rowh (default-font-height))
4842 (< rowh dlh))
4843 (setq last-line (min (- wslines scroll-margin) vpos))
4844 (setq last-line (min (- wslines scroll-margin 1) (1- vpos)))))
4845 (cond
4846 ;; If last line of window is fully visible, and vscrolling
4847 ;; more would make this line invisible, move forward.
4848 ((and (or (< (setq vs (window-vscroll nil t)) dlh)
4849 (null this-height)
4850 (<= this-height dlh))
4851 (or (null rbot) (= rbot 0)))
4852 nil)
4853 ;; If cursor is not in the bottom scroll margin, and the
4854 ;; current line is is not too tall, move forward.
4855 ((and (or (null this-height) (<= this-height winh))
4856 vpos
4857 (> vpos 0)
4858 (< py last-line))
4859 nil)
4860 ;; When already vscrolled, we vscroll some more if we can,
4861 ;; or clear vscroll and move forward at end of tall image.
4862 ((> vs 0)
4863 (when (or (and rbot (> rbot 0))
4864 (and this-height (> this-height dlh)))
4865 (set-window-vscroll nil (+ vs dlh) t)))
4866 ;; If cursor just entered the bottom scroll margin, move forward,
4867 ;; but also optionally vscroll one line so redisplay won't recenter.
4868 ((and vpos
4869 (> vpos 0)
4870 (= py last-line))
4871 ;; Don't vscroll if the partially-visible line at window
4872 ;; bottom is not too tall (a.k.a. "just one more text
4873 ;; line"): in that case, we do want redisplay to behave
4874 ;; normally, i.e. recenter or whatever.
4875 ;;
4876 ;; Note: ROWH + RBOT from the value returned by
4877 ;; pos-visible-in-window-p give the total height of the
4878 ;; partially-visible glyph row at the end of the window. As
4879 ;; we are dealing with floats, we disregard sub-pixel
4880 ;; discrepancies between that and DLH.
4881 (if (and rowh rbot (>= (- (+ rowh rbot) winh) 1))
4882 (set-window-vscroll nil dlh t))
4883 (line-move-1 arg noerror to-end)
4884 t)
4885 ;; If there are lines above the last line, scroll-up one line.
4886 ((and vpos (> vpos 0))
4887 (scroll-up 1)
4888 t)
4889 ;; Finally, start vscroll.
4890 (t
4891 (set-window-vscroll nil dlh t)))))))
4892
4893
4894 ;; This is like line-move-1 except that it also performs
4895 ;; vertical scrolling of tall images if appropriate.
4896 ;; That is not really a clean thing to do, since it mixes
4897 ;; scrolling with cursor motion. But so far we don't have
4898 ;; a cleaner solution to the problem of making C-n do something
4899 ;; useful given a tall image.
4900 (defun line-move (arg &optional noerror to-end try-vscroll)
4901 (if noninteractive
4902 (forward-line arg)
4903 (unless (and auto-window-vscroll try-vscroll
4904 ;; Only vscroll for single line moves
4905 (= (abs arg) 1)
4906 ;; Under scroll-conservatively, the display engine
4907 ;; does this better.
4908 (zerop scroll-conservatively)
4909 ;; But don't vscroll in a keyboard macro.
4910 (not defining-kbd-macro)
4911 (not executing-kbd-macro)
4912 (line-move-partial arg noerror to-end))
4913 (set-window-vscroll nil 0 t)
4914 (if (and line-move-visual
4915 ;; Display-based column are incompatible with goal-column.
4916 (not goal-column)
4917 ;; When the text in the window is scrolled to the left,
4918 ;; display-based motion doesn't make sense (because each
4919 ;; logical line occupies exactly one screen line).
4920 (not (> (window-hscroll) 0)))
4921 (prog1 (line-move-visual arg noerror)
4922 ;; If we moved into a tall line, set vscroll to make
4923 ;; scrolling through tall images more smooth.
4924 (let ((lh (line-pixel-height))
4925 (edges (window-inside-pixel-edges))
4926 (dlh (default-line-height))
4927 winh)
4928 (setq winh (- (nth 3 edges) (nth 1 edges) 1))
4929 (if (and (< arg 0)
4930 (< (point) (window-start))
4931 (> lh winh))
4932 (set-window-vscroll
4933 nil
4934 (- lh dlh) t))))
4935 (line-move-1 arg noerror to-end)))))
4936
4937 ;; Display-based alternative to line-move-1.
4938 ;; Arg says how many lines to move. The value is t if we can move the
4939 ;; specified number of lines.
4940 (defun line-move-visual (arg &optional noerror)
4941 (let ((opoint (point))
4942 (hscroll (window-hscroll))
4943 target-hscroll)
4944 ;; Check if the previous command was a line-motion command, or if
4945 ;; we were called from some other command.
4946 (if (and (consp temporary-goal-column)
4947 (memq last-command `(next-line previous-line ,this-command)))
4948 ;; If so, there's no need to reset `temporary-goal-column',
4949 ;; but we may need to hscroll.
4950 (if (or (/= (cdr temporary-goal-column) hscroll)
4951 (> (cdr temporary-goal-column) 0))
4952 (setq target-hscroll (cdr temporary-goal-column)))
4953 ;; Otherwise, we should reset `temporary-goal-column'.
4954 (let ((posn (posn-at-point)))
4955 (cond
4956 ;; Handle the `overflow-newline-into-fringe' case:
4957 ((eq (nth 1 posn) 'right-fringe)
4958 (setq temporary-goal-column (cons (- (window-width) 1) hscroll)))
4959 ((car (posn-x-y posn))
4960 (setq temporary-goal-column
4961 (cons (/ (float (car (posn-x-y posn)))
4962 (frame-char-width)) hscroll))))))
4963 (if target-hscroll
4964 (set-window-hscroll (selected-window) target-hscroll))
4965 ;; vertical-motion can move more than it was asked to if it moves
4966 ;; across display strings with newlines. We don't want to ring
4967 ;; the bell and announce beginning/end of buffer in that case.
4968 (or (and (or (and (>= arg 0)
4969 (>= (vertical-motion
4970 (cons (or goal-column
4971 (if (consp temporary-goal-column)
4972 (car temporary-goal-column)
4973 temporary-goal-column))
4974 arg))
4975 arg))
4976 (and (< arg 0)
4977 (<= (vertical-motion
4978 (cons (or goal-column
4979 (if (consp temporary-goal-column)
4980 (car temporary-goal-column)
4981 temporary-goal-column))
4982 arg))
4983 arg)))
4984 (or (>= arg 0)
4985 (/= (point) opoint)
4986 ;; If the goal column lies on a display string,
4987 ;; `vertical-motion' advances the cursor to the end
4988 ;; of the string. For arg < 0, this can cause the
4989 ;; cursor to get stuck. (Bug#3020).
4990 (= (vertical-motion arg) arg)))
4991 (unless noerror
4992 (signal (if (< arg 0) 'beginning-of-buffer 'end-of-buffer)
4993 nil)))))
4994
4995 ;; This is the guts of next-line and previous-line.
4996 ;; Arg says how many lines to move.
4997 ;; The value is t if we can move the specified number of lines.
4998 (defun line-move-1 (arg &optional noerror _to-end)
4999 ;; Don't run any point-motion hooks, and disregard intangibility,
5000 ;; for intermediate positions.
5001 (let ((inhibit-point-motion-hooks t)
5002 (opoint (point))
5003 (orig-arg arg))
5004 (if (consp temporary-goal-column)
5005 (setq temporary-goal-column (+ (car temporary-goal-column)
5006 (cdr temporary-goal-column))))
5007 (unwind-protect
5008 (progn
5009 (if (not (memq last-command '(next-line previous-line)))
5010 (setq temporary-goal-column
5011 (if (and track-eol (eolp)
5012 ;; Don't count beg of empty line as end of line
5013 ;; unless we just did explicit end-of-line.
5014 (or (not (bolp)) (eq last-command 'move-end-of-line)))
5015 most-positive-fixnum
5016 (current-column))))
5017
5018 (if (not (or (integerp selective-display)
5019 line-move-ignore-invisible))
5020 ;; Use just newline characters.
5021 ;; Set ARG to 0 if we move as many lines as requested.
5022 (or (if (> arg 0)
5023 (progn (if (> arg 1) (forward-line (1- arg)))
5024 ;; This way of moving forward ARG lines
5025 ;; verifies that we have a newline after the last one.
5026 ;; It doesn't get confused by intangible text.
5027 (end-of-line)
5028 (if (zerop (forward-line 1))
5029 (setq arg 0)))
5030 (and (zerop (forward-line arg))
5031 (bolp)
5032 (setq arg 0)))
5033 (unless noerror
5034 (signal (if (< arg 0)
5035 'beginning-of-buffer
5036 'end-of-buffer)
5037 nil)))
5038 ;; Move by arg lines, but ignore invisible ones.
5039 (let (done)
5040 (while (and (> arg 0) (not done))
5041 ;; If the following character is currently invisible,
5042 ;; skip all characters with that same `invisible' property value.
5043 (while (and (not (eobp)) (invisible-p (point)))
5044 (goto-char (next-char-property-change (point))))
5045 ;; Move a line.
5046 ;; We don't use `end-of-line', since we want to escape
5047 ;; from field boundaries occurring exactly at point.
5048 (goto-char (constrain-to-field
5049 (let ((inhibit-field-text-motion t))
5050 (line-end-position))
5051 (point) t t
5052 'inhibit-line-move-field-capture))
5053 ;; If there's no invisibility here, move over the newline.
5054 (cond
5055 ((eobp)
5056 (if (not noerror)
5057 (signal 'end-of-buffer nil)
5058 (setq done t)))
5059 ((and (> arg 1) ;; Use vertical-motion for last move
5060 (not (integerp selective-display))
5061 (not (invisible-p (point))))
5062 ;; We avoid vertical-motion when possible
5063 ;; because that has to fontify.
5064 (forward-line 1))
5065 ;; Otherwise move a more sophisticated way.
5066 ((zerop (vertical-motion 1))
5067 (if (not noerror)
5068 (signal 'end-of-buffer nil)
5069 (setq done t))))
5070 (unless done
5071 (setq arg (1- arg))))
5072 ;; The logic of this is the same as the loop above,
5073 ;; it just goes in the other direction.
5074 (while (and (< arg 0) (not done))
5075 ;; For completely consistency with the forward-motion
5076 ;; case, we should call beginning-of-line here.
5077 ;; However, if point is inside a field and on a
5078 ;; continued line, the call to (vertical-motion -1)
5079 ;; below won't move us back far enough; then we return
5080 ;; to the same column in line-move-finish, and point
5081 ;; gets stuck -- cyd
5082 (forward-line 0)
5083 (cond
5084 ((bobp)
5085 (if (not noerror)
5086 (signal 'beginning-of-buffer nil)
5087 (setq done t)))
5088 ((and (< arg -1) ;; Use vertical-motion for last move
5089 (not (integerp selective-display))
5090 (not (invisible-p (1- (point)))))
5091 (forward-line -1))
5092 ((zerop (vertical-motion -1))
5093 (if (not noerror)
5094 (signal 'beginning-of-buffer nil)
5095 (setq done t))))
5096 (unless done
5097 (setq arg (1+ arg))
5098 (while (and ;; Don't move over previous invis lines
5099 ;; if our target is the middle of this line.
5100 (or (zerop (or goal-column temporary-goal-column))
5101 (< arg 0))
5102 (not (bobp)) (invisible-p (1- (point))))
5103 (goto-char (previous-char-property-change (point))))))))
5104 ;; This is the value the function returns.
5105 (= arg 0))
5106
5107 (cond ((> arg 0)
5108 ;; If we did not move down as far as desired, at least go
5109 ;; to end of line. Be sure to call point-entered and
5110 ;; point-left-hooks.
5111 (let* ((npoint (prog1 (line-end-position)
5112 (goto-char opoint)))
5113 (inhibit-point-motion-hooks nil))
5114 (goto-char npoint)))
5115 ((< arg 0)
5116 ;; If we did not move up as far as desired,
5117 ;; at least go to beginning of line.
5118 (let* ((npoint (prog1 (line-beginning-position)
5119 (goto-char opoint)))
5120 (inhibit-point-motion-hooks nil))
5121 (goto-char npoint)))
5122 (t
5123 (line-move-finish (or goal-column temporary-goal-column)
5124 opoint (> orig-arg 0)))))))
5125
5126 (defun line-move-finish (column opoint forward)
5127 (let ((repeat t))
5128 (while repeat
5129 ;; Set REPEAT to t to repeat the whole thing.
5130 (setq repeat nil)
5131
5132 (let (new
5133 (old (point))
5134 (line-beg (line-beginning-position))
5135 (line-end
5136 ;; Compute the end of the line
5137 ;; ignoring effectively invisible newlines.
5138 (save-excursion
5139 ;; Like end-of-line but ignores fields.
5140 (skip-chars-forward "^\n")
5141 (while (and (not (eobp)) (invisible-p (point)))
5142 (goto-char (next-char-property-change (point)))
5143 (skip-chars-forward "^\n"))
5144 (point))))
5145
5146 ;; Move to the desired column.
5147 (line-move-to-column (truncate column))
5148
5149 ;; Corner case: suppose we start out in a field boundary in
5150 ;; the middle of a continued line. When we get to
5151 ;; line-move-finish, point is at the start of a new *screen*
5152 ;; line but the same text line; then line-move-to-column would
5153 ;; move us backwards. Test using C-n with point on the "x" in
5154 ;; (insert "a" (propertize "x" 'field t) (make-string 89 ?y))
5155 (and forward
5156 (< (point) old)
5157 (goto-char old))
5158
5159 (setq new (point))
5160
5161 ;; Process intangibility within a line.
5162 ;; With inhibit-point-motion-hooks bound to nil, a call to
5163 ;; goto-char moves point past intangible text.
5164
5165 ;; However, inhibit-point-motion-hooks controls both the
5166 ;; intangibility and the point-entered/point-left hooks. The
5167 ;; following hack avoids calling the point-* hooks
5168 ;; unnecessarily. Note that we move *forward* past intangible
5169 ;; text when the initial and final points are the same.
5170 (goto-char new)
5171 (let ((inhibit-point-motion-hooks nil))
5172 (goto-char new)
5173
5174 ;; If intangibility moves us to a different (later) place
5175 ;; in the same line, use that as the destination.
5176 (if (<= (point) line-end)
5177 (setq new (point))
5178 ;; If that position is "too late",
5179 ;; try the previous allowable position.
5180 ;; See if it is ok.
5181 (backward-char)
5182 (if (if forward
5183 ;; If going forward, don't accept the previous
5184 ;; allowable position if it is before the target line.
5185 (< line-beg (point))
5186 ;; If going backward, don't accept the previous
5187 ;; allowable position if it is still after the target line.
5188 (<= (point) line-end))
5189 (setq new (point))
5190 ;; As a last resort, use the end of the line.
5191 (setq new line-end))))
5192
5193 ;; Now move to the updated destination, processing fields
5194 ;; as well as intangibility.
5195 (goto-char opoint)
5196 (let ((inhibit-point-motion-hooks nil))
5197 (goto-char
5198 ;; Ignore field boundaries if the initial and final
5199 ;; positions have the same `field' property, even if the
5200 ;; fields are non-contiguous. This seems to be "nicer"
5201 ;; behavior in many situations.
5202 (if (eq (get-char-property new 'field)
5203 (get-char-property opoint 'field))
5204 new
5205 (constrain-to-field new opoint t t
5206 'inhibit-line-move-field-capture))))
5207
5208 ;; If all this moved us to a different line,
5209 ;; retry everything within that new line.
5210 (when (or (< (point) line-beg) (> (point) line-end))
5211 ;; Repeat the intangibility and field processing.
5212 (setq repeat t))))))
5213
5214 (defun line-move-to-column (col)
5215 "Try to find column COL, considering invisibility.
5216 This function works only in certain cases,
5217 because what we really need is for `move-to-column'
5218 and `current-column' to be able to ignore invisible text."
5219 (if (zerop col)
5220 (beginning-of-line)
5221 (move-to-column col))
5222
5223 (when (and line-move-ignore-invisible
5224 (not (bolp)) (invisible-p (1- (point))))
5225 (let ((normal-location (point))
5226 (normal-column (current-column)))
5227 ;; If the following character is currently invisible,
5228 ;; skip all characters with that same `invisible' property value.
5229 (while (and (not (eobp))
5230 (invisible-p (point)))
5231 (goto-char (next-char-property-change (point))))
5232 ;; Have we advanced to a larger column position?
5233 (if (> (current-column) normal-column)
5234 ;; We have made some progress towards the desired column.
5235 ;; See if we can make any further progress.
5236 (line-move-to-column (+ (current-column) (- col normal-column)))
5237 ;; Otherwise, go to the place we originally found
5238 ;; and move back over invisible text.
5239 ;; that will get us to the same place on the screen
5240 ;; but with a more reasonable buffer position.
5241 (goto-char normal-location)
5242 (let ((line-beg (line-beginning-position)))
5243 (while (and (not (bolp)) (invisible-p (1- (point))))
5244 (goto-char (previous-char-property-change (point) line-beg))))))))
5245
5246 (defun move-end-of-line (arg)
5247 "Move point to end of current line as displayed.
5248 With argument ARG not nil or 1, move forward ARG - 1 lines first.
5249 If point reaches the beginning or end of buffer, it stops there.
5250
5251 To ignore the effects of the `intangible' text or overlay
5252 property, bind `inhibit-point-motion-hooks' to t.
5253 If there is an image in the current line, this function
5254 disregards newlines that are part of the text on which the image
5255 rests."
5256 (interactive "^p")
5257 (or arg (setq arg 1))
5258 (let (done)
5259 (while (not done)
5260 (let ((newpos
5261 (save-excursion
5262 (let ((goal-column 0)
5263 (line-move-visual nil))
5264 (and (line-move arg t)
5265 ;; With bidi reordering, we may not be at bol,
5266 ;; so make sure we are.
5267 (skip-chars-backward "^\n")
5268 (not (bobp))
5269 (progn
5270 (while (and (not (bobp)) (invisible-p (1- (point))))
5271 (goto-char (previous-single-char-property-change
5272 (point) 'invisible)))
5273 (backward-char 1)))
5274 (point)))))
5275 (goto-char newpos)
5276 (if (and (> (point) newpos)
5277 (eq (preceding-char) ?\n))
5278 (backward-char 1)
5279 (if (and (> (point) newpos) (not (eobp))
5280 (not (eq (following-char) ?\n)))
5281 ;; If we skipped something intangible and now we're not
5282 ;; really at eol, keep going.
5283 (setq arg 1)
5284 (setq done t)))))))
5285
5286 (defun move-beginning-of-line (arg)
5287 "Move point to beginning of current line as displayed.
5288 \(If there's an image in the line, this disregards newlines
5289 which are part of the text that the image rests on.)
5290
5291 With argument ARG not nil or 1, move forward ARG - 1 lines first.
5292 If point reaches the beginning or end of buffer, it stops there.
5293 To ignore intangibility, bind `inhibit-point-motion-hooks' to t."
5294 (interactive "^p")
5295 (or arg (setq arg 1))
5296
5297 (let ((orig (point))
5298 first-vis first-vis-field-value)
5299
5300 ;; Move by lines, if ARG is not 1 (the default).
5301 (if (/= arg 1)
5302 (let ((line-move-visual nil))
5303 (line-move (1- arg) t)))
5304
5305 ;; Move to beginning-of-line, ignoring fields and invisible text.
5306 (skip-chars-backward "^\n")
5307 (while (and (not (bobp)) (invisible-p (1- (point))))
5308 (goto-char (previous-char-property-change (point)))
5309 (skip-chars-backward "^\n"))
5310
5311 ;; Now find first visible char in the line
5312 (while (and (not (eobp)) (invisible-p (point)))
5313 (goto-char (next-char-property-change (point))))
5314 (setq first-vis (point))
5315
5316 ;; See if fields would stop us from reaching FIRST-VIS.
5317 (setq first-vis-field-value
5318 (constrain-to-field first-vis orig (/= arg 1) t nil))
5319
5320 (goto-char (if (/= first-vis-field-value first-vis)
5321 ;; If yes, obey them.
5322 first-vis-field-value
5323 ;; Otherwise, move to START with attention to fields.
5324 ;; (It is possible that fields never matter in this case.)
5325 (constrain-to-field (point) orig
5326 (/= arg 1) t nil)))))
5327
5328
5329 ;; Many people have said they rarely use this feature, and often type
5330 ;; it by accident. Maybe it shouldn't even be on a key.
5331 (put 'set-goal-column 'disabled t)
5332
5333 (defun set-goal-column (arg)
5334 "Set the current horizontal position as a goal for \\[next-line] and \\[previous-line].
5335 Those commands will move to this position in the line moved to
5336 rather than trying to keep the same horizontal position.
5337 With a non-nil argument ARG, clears out the goal column
5338 so that \\[next-line] and \\[previous-line] resume vertical motion.
5339 The goal column is stored in the variable `goal-column'."
5340 (interactive "P")
5341 (if arg
5342 (progn
5343 (setq goal-column nil)
5344 (message "No goal column"))
5345 (setq goal-column (current-column))
5346 ;; The older method below can be erroneous if `set-goal-column' is bound
5347 ;; to a sequence containing %
5348 ;;(message (substitute-command-keys
5349 ;;"Goal column %d (use \\[set-goal-column] with an arg to unset it)")
5350 ;;goal-column)
5351 (message "%s"
5352 (concat
5353 (format "Goal column %d " goal-column)
5354 (substitute-command-keys
5355 "(use \\[set-goal-column] with an arg to unset it)")))
5356
5357 )
5358 nil)
5359 \f
5360 ;;; Editing based on visual lines, as opposed to logical lines.
5361
5362 (defun end-of-visual-line (&optional n)
5363 "Move point to end of current visual line.
5364 With argument N not nil or 1, move forward N - 1 visual lines first.
5365 If point reaches the beginning or end of buffer, it stops there.
5366 To ignore intangibility, bind `inhibit-point-motion-hooks' to t."
5367 (interactive "^p")
5368 (or n (setq n 1))
5369 (if (/= n 1)
5370 (let ((line-move-visual t))
5371 (line-move (1- n) t)))
5372 ;; Unlike `move-beginning-of-line', `move-end-of-line' doesn't
5373 ;; constrain to field boundaries, so we don't either.
5374 (vertical-motion (cons (window-width) 0)))
5375
5376 (defun beginning-of-visual-line (&optional n)
5377 "Move point to beginning of current visual line.
5378 With argument N not nil or 1, move forward N - 1 visual lines first.
5379 If point reaches the beginning or end of buffer, it stops there.
5380 To ignore intangibility, bind `inhibit-point-motion-hooks' to t."
5381 (interactive "^p")
5382 (or n (setq n 1))
5383 (let ((opoint (point)))
5384 (if (/= n 1)
5385 (let ((line-move-visual t))
5386 (line-move (1- n) t)))
5387 (vertical-motion 0)
5388 ;; Constrain to field boundaries, like `move-beginning-of-line'.
5389 (goto-char (constrain-to-field (point) opoint (/= n 1)))))
5390
5391 (defun kill-visual-line (&optional arg)
5392 "Kill the rest of the visual line.
5393 With prefix argument ARG, kill that many visual lines from point.
5394 If ARG is negative, kill visual lines backward.
5395 If ARG is zero, kill the text before point on the current visual
5396 line.
5397
5398 If you want to append the killed line to the last killed text,
5399 use \\[append-next-kill] before \\[kill-line].
5400
5401 If the buffer is read-only, Emacs will beep and refrain from deleting
5402 the line, but put the line in the kill ring anyway. This means that
5403 you can use this command to copy text from a read-only buffer.
5404 \(If the variable `kill-read-only-ok' is non-nil, then this won't
5405 even beep.)"
5406 (interactive "P")
5407 ;; Like in `kill-line', it's better to move point to the other end
5408 ;; of the kill before killing.
5409 (let ((opoint (point))
5410 (kill-whole-line (and kill-whole-line (bolp))))
5411 (if arg
5412 (vertical-motion (prefix-numeric-value arg))
5413 (end-of-visual-line 1)
5414 (if (= (point) opoint)
5415 (vertical-motion 1)
5416 ;; Skip any trailing whitespace at the end of the visual line.
5417 ;; We used to do this only if `show-trailing-whitespace' is
5418 ;; nil, but that's wrong; the correct thing would be to check
5419 ;; whether the trailing whitespace is highlighted. But, it's
5420 ;; OK to just do this unconditionally.
5421 (skip-chars-forward " \t")))
5422 (kill-region opoint (if (and kill-whole-line (looking-at "\n"))
5423 (1+ (point))
5424 (point)))))
5425
5426 (defun next-logical-line (&optional arg try-vscroll)
5427 "Move cursor vertically down ARG lines.
5428 This is identical to `next-line', except that it always moves
5429 by logical lines instead of visual lines, ignoring the value of
5430 the variable `line-move-visual'."
5431 (interactive "^p\np")
5432 (let ((line-move-visual nil))
5433 (with-no-warnings
5434 (next-line arg try-vscroll))))
5435
5436 (defun previous-logical-line (&optional arg try-vscroll)
5437 "Move cursor vertically up ARG lines.
5438 This is identical to `previous-line', except that it always moves
5439 by logical lines instead of visual lines, ignoring the value of
5440 the variable `line-move-visual'."
5441 (interactive "^p\np")
5442 (let ((line-move-visual nil))
5443 (with-no-warnings
5444 (previous-line arg try-vscroll))))
5445
5446 (defgroup visual-line nil
5447 "Editing based on visual lines."
5448 :group 'convenience
5449 :version "23.1")
5450
5451 (defvar visual-line-mode-map
5452 (let ((map (make-sparse-keymap)))
5453 (define-key map [remap kill-line] 'kill-visual-line)
5454 (define-key map [remap move-beginning-of-line] 'beginning-of-visual-line)
5455 (define-key map [remap move-end-of-line] 'end-of-visual-line)
5456 ;; These keybindings interfere with xterm function keys. Are
5457 ;; there any other suitable bindings?
5458 ;; (define-key map "\M-[" 'previous-logical-line)
5459 ;; (define-key map "\M-]" 'next-logical-line)
5460 map))
5461
5462 (defcustom visual-line-fringe-indicators '(nil nil)
5463 "How fringe indicators are shown for wrapped lines in `visual-line-mode'.
5464 The value should be a list of the form (LEFT RIGHT), where LEFT
5465 and RIGHT are symbols representing the bitmaps to display, to
5466 indicate wrapped lines, in the left and right fringes respectively.
5467 See also `fringe-indicator-alist'.
5468 The default is not to display fringe indicators for wrapped lines.
5469 This variable does not affect fringe indicators displayed for
5470 other purposes."
5471 :type '(list (choice (const :tag "Hide left indicator" nil)
5472 (const :tag "Left curly arrow" left-curly-arrow)
5473 (symbol :tag "Other bitmap"))
5474 (choice (const :tag "Hide right indicator" nil)
5475 (const :tag "Right curly arrow" right-curly-arrow)
5476 (symbol :tag "Other bitmap")))
5477 :set (lambda (symbol value)
5478 (dolist (buf (buffer-list))
5479 (with-current-buffer buf
5480 (when (and (boundp 'visual-line-mode)
5481 (symbol-value 'visual-line-mode))
5482 (setq fringe-indicator-alist
5483 (cons (cons 'continuation value)
5484 (assq-delete-all
5485 'continuation
5486 (copy-tree fringe-indicator-alist)))))))
5487 (set-default symbol value)))
5488
5489 (defvar visual-line--saved-state nil)
5490
5491 (define-minor-mode visual-line-mode
5492 "Toggle visual line based editing (Visual Line mode).
5493 With a prefix argument ARG, enable Visual Line mode if ARG is
5494 positive, and disable it otherwise. If called from Lisp, enable
5495 the mode if ARG is omitted or nil.
5496
5497 When Visual Line mode is enabled, `word-wrap' is turned on in
5498 this buffer, and simple editing commands are redefined to act on
5499 visual lines, not logical lines. See Info node `Visual Line
5500 Mode' for details."
5501 :keymap visual-line-mode-map
5502 :group 'visual-line
5503 :lighter " Wrap"
5504 (if visual-line-mode
5505 (progn
5506 (set (make-local-variable 'visual-line--saved-state) nil)
5507 ;; Save the local values of some variables, to be restored if
5508 ;; visual-line-mode is turned off.
5509 (dolist (var '(line-move-visual truncate-lines
5510 truncate-partial-width-windows
5511 word-wrap fringe-indicator-alist))
5512 (if (local-variable-p var)
5513 (push (cons var (symbol-value var))
5514 visual-line--saved-state)))
5515 (set (make-local-variable 'line-move-visual) t)
5516 (set (make-local-variable 'truncate-partial-width-windows) nil)
5517 (setq truncate-lines nil
5518 word-wrap t
5519 fringe-indicator-alist
5520 (cons (cons 'continuation visual-line-fringe-indicators)
5521 fringe-indicator-alist)))
5522 (kill-local-variable 'line-move-visual)
5523 (kill-local-variable 'word-wrap)
5524 (kill-local-variable 'truncate-lines)
5525 (kill-local-variable 'truncate-partial-width-windows)
5526 (kill-local-variable 'fringe-indicator-alist)
5527 (dolist (saved visual-line--saved-state)
5528 (set (make-local-variable (car saved)) (cdr saved)))
5529 (kill-local-variable 'visual-line--saved-state)))
5530
5531 (defun turn-on-visual-line-mode ()
5532 (visual-line-mode 1))
5533
5534 (define-globalized-minor-mode global-visual-line-mode
5535 visual-line-mode turn-on-visual-line-mode)
5536
5537 \f
5538 (defun transpose-chars (arg)
5539 "Interchange characters around point, moving forward one character.
5540 With prefix arg ARG, effect is to take character before point
5541 and drag it forward past ARG other characters (backward if ARG negative).
5542 If no argument and at end of line, the previous two chars are exchanged."
5543 (interactive "*P")
5544 (and (null arg) (eolp) (forward-char -1))
5545 (transpose-subr 'forward-char (prefix-numeric-value arg)))
5546
5547 (defun transpose-words (arg)
5548 "Interchange words around point, leaving point at end of them.
5549 With prefix arg ARG, effect is to take word before or around point
5550 and drag it forward past ARG other words (backward if ARG negative).
5551 If ARG is zero, the words around or after point and around or after mark
5552 are interchanged."
5553 ;; FIXME: `foo a!nd bar' should transpose into `bar and foo'.
5554 (interactive "*p")
5555 (transpose-subr 'forward-word arg))
5556
5557 (defun transpose-sexps (arg)
5558 "Like \\[transpose-words] but applies to sexps.
5559 Does not work on a sexp that point is in the middle of
5560 if it is a list or string."
5561 (interactive "*p")
5562 (transpose-subr
5563 (lambda (arg)
5564 ;; Here we should try to simulate the behavior of
5565 ;; (cons (progn (forward-sexp x) (point))
5566 ;; (progn (forward-sexp (- x)) (point)))
5567 ;; Except that we don't want to rely on the second forward-sexp
5568 ;; putting us back to where we want to be, since forward-sexp-function
5569 ;; might do funny things like infix-precedence.
5570 (if (if (> arg 0)
5571 (looking-at "\\sw\\|\\s_")
5572 (and (not (bobp))
5573 (save-excursion (forward-char -1) (looking-at "\\sw\\|\\s_"))))
5574 ;; Jumping over a symbol. We might be inside it, mind you.
5575 (progn (funcall (if (> arg 0)
5576 'skip-syntax-backward 'skip-syntax-forward)
5577 "w_")
5578 (cons (save-excursion (forward-sexp arg) (point)) (point)))
5579 ;; Otherwise, we're between sexps. Take a step back before jumping
5580 ;; to make sure we'll obey the same precedence no matter which direction
5581 ;; we're going.
5582 (funcall (if (> arg 0) 'skip-syntax-backward 'skip-syntax-forward) " .")
5583 (cons (save-excursion (forward-sexp arg) (point))
5584 (progn (while (or (forward-comment (if (> arg 0) 1 -1))
5585 (not (zerop (funcall (if (> arg 0)
5586 'skip-syntax-forward
5587 'skip-syntax-backward)
5588 ".")))))
5589 (point)))))
5590 arg 'special))
5591
5592 (defun transpose-lines (arg)
5593 "Exchange current line and previous line, leaving point after both.
5594 With argument ARG, takes previous line and moves it past ARG lines.
5595 With argument 0, interchanges line point is in with line mark is in."
5596 (interactive "*p")
5597 (transpose-subr (function
5598 (lambda (arg)
5599 (if (> arg 0)
5600 (progn
5601 ;; Move forward over ARG lines,
5602 ;; but create newlines if necessary.
5603 (setq arg (forward-line arg))
5604 (if (/= (preceding-char) ?\n)
5605 (setq arg (1+ arg)))
5606 (if (> arg 0)
5607 (newline arg)))
5608 (forward-line arg))))
5609 arg))
5610
5611 ;; FIXME seems to leave point BEFORE the current object when ARG = 0,
5612 ;; which seems inconsistent with the ARG /= 0 case.
5613 ;; FIXME document SPECIAL.
5614 (defun transpose-subr (mover arg &optional special)
5615 "Subroutine to do the work of transposing objects.
5616 Works for lines, sentences, paragraphs, etc. MOVER is a function that
5617 moves forward by units of the given object (e.g. forward-sentence,
5618 forward-paragraph). If ARG is zero, exchanges the current object
5619 with the one containing mark. If ARG is an integer, moves the
5620 current object past ARG following (if ARG is positive) or
5621 preceding (if ARG is negative) objects, leaving point after the
5622 current object."
5623 (let ((aux (if special mover
5624 (lambda (x)
5625 (cons (progn (funcall mover x) (point))
5626 (progn (funcall mover (- x)) (point))))))
5627 pos1 pos2)
5628 (cond
5629 ((= arg 0)
5630 (save-excursion
5631 (setq pos1 (funcall aux 1))
5632 (goto-char (or (mark) (error "No mark set in this buffer")))
5633 (setq pos2 (funcall aux 1))
5634 (transpose-subr-1 pos1 pos2))
5635 (exchange-point-and-mark))
5636 ((> arg 0)
5637 (setq pos1 (funcall aux -1))
5638 (setq pos2 (funcall aux arg))
5639 (transpose-subr-1 pos1 pos2)
5640 (goto-char (car pos2)))
5641 (t
5642 (setq pos1 (funcall aux -1))
5643 (goto-char (car pos1))
5644 (setq pos2 (funcall aux arg))
5645 (transpose-subr-1 pos1 pos2)))))
5646
5647 (defun transpose-subr-1 (pos1 pos2)
5648 (when (> (car pos1) (cdr pos1)) (setq pos1 (cons (cdr pos1) (car pos1))))
5649 (when (> (car pos2) (cdr pos2)) (setq pos2 (cons (cdr pos2) (car pos2))))
5650 (when (> (car pos1) (car pos2))
5651 (let ((swap pos1))
5652 (setq pos1 pos2 pos2 swap)))
5653 (if (> (cdr pos1) (car pos2)) (error "Don't have two things to transpose"))
5654 (atomic-change-group
5655 ;; This sequence of insertions attempts to preserve marker
5656 ;; positions at the start and end of the transposed objects.
5657 (let* ((word (buffer-substring (car pos2) (cdr pos2)))
5658 (len1 (- (cdr pos1) (car pos1)))
5659 (len2 (length word))
5660 (boundary (make-marker)))
5661 (set-marker boundary (car pos2))
5662 (goto-char (cdr pos1))
5663 (insert-before-markers word)
5664 (setq word (delete-and-extract-region (car pos1) (+ (car pos1) len1)))
5665 (goto-char boundary)
5666 (insert word)
5667 (goto-char (+ boundary len1))
5668 (delete-region (point) (+ (point) len2))
5669 (set-marker boundary nil))))
5670 \f
5671 (defun backward-word (&optional arg)
5672 "Move backward until encountering the beginning of a word.
5673 With argument ARG, do this that many times."
5674 (interactive "^p")
5675 (forward-word (- (or arg 1))))
5676
5677 (defun mark-word (&optional arg allow-extend)
5678 "Set mark ARG words away from point.
5679 The place mark goes is the same place \\[forward-word] would
5680 move to with the same argument.
5681 Interactively, if this command is repeated
5682 or (in Transient Mark mode) if the mark is active,
5683 it marks the next ARG words after the ones already marked."
5684 (interactive "P\np")
5685 (cond ((and allow-extend
5686 (or (and (eq last-command this-command) (mark t))
5687 (region-active-p)))
5688 (setq arg (if arg (prefix-numeric-value arg)
5689 (if (< (mark) (point)) -1 1)))
5690 (set-mark
5691 (save-excursion
5692 (goto-char (mark))
5693 (forward-word arg)
5694 (point))))
5695 (t
5696 (push-mark
5697 (save-excursion
5698 (forward-word (prefix-numeric-value arg))
5699 (point))
5700 nil t))))
5701
5702 (defun kill-word (arg)
5703 "Kill characters forward until encountering the end of a word.
5704 With argument ARG, do this that many times."
5705 (interactive "p")
5706 (kill-region (point) (progn (forward-word arg) (point))))
5707
5708 (defun backward-kill-word (arg)
5709 "Kill characters backward until encountering the beginning of a word.
5710 With argument ARG, do this that many times."
5711 (interactive "p")
5712 (kill-word (- arg)))
5713
5714 (defun current-word (&optional strict really-word)
5715 "Return the symbol or word that point is on (or a nearby one) as a string.
5716 The return value includes no text properties.
5717 If optional arg STRICT is non-nil, return nil unless point is within
5718 or adjacent to a symbol or word. In all cases the value can be nil
5719 if there is no word nearby.
5720 The function, belying its name, normally finds a symbol.
5721 If optional arg REALLY-WORD is non-nil, it finds just a word."
5722 (save-excursion
5723 (let* ((oldpoint (point)) (start (point)) (end (point))
5724 (syntaxes (if really-word "w" "w_"))
5725 (not-syntaxes (concat "^" syntaxes)))
5726 (skip-syntax-backward syntaxes) (setq start (point))
5727 (goto-char oldpoint)
5728 (skip-syntax-forward syntaxes) (setq end (point))
5729 (when (and (eq start oldpoint) (eq end oldpoint)
5730 ;; Point is neither within nor adjacent to a word.
5731 (not strict))
5732 ;; Look for preceding word in same line.
5733 (skip-syntax-backward not-syntaxes (line-beginning-position))
5734 (if (bolp)
5735 ;; No preceding word in same line.
5736 ;; Look for following word in same line.
5737 (progn
5738 (skip-syntax-forward not-syntaxes (line-end-position))
5739 (setq start (point))
5740 (skip-syntax-forward syntaxes)
5741 (setq end (point)))
5742 (setq end (point))
5743 (skip-syntax-backward syntaxes)
5744 (setq start (point))))
5745 ;; If we found something nonempty, return it as a string.
5746 (unless (= start end)
5747 (buffer-substring-no-properties start end)))))
5748 \f
5749 (defcustom fill-prefix nil
5750 "String for filling to insert at front of new line, or nil for none."
5751 :type '(choice (const :tag "None" nil)
5752 string)
5753 :group 'fill)
5754 (make-variable-buffer-local 'fill-prefix)
5755 (put 'fill-prefix 'safe-local-variable 'string-or-null-p)
5756
5757 (defcustom auto-fill-inhibit-regexp nil
5758 "Regexp to match lines which should not be auto-filled."
5759 :type '(choice (const :tag "None" nil)
5760 regexp)
5761 :group 'fill)
5762
5763 (defun do-auto-fill ()
5764 "The default value for `normal-auto-fill-function'.
5765 This is the default auto-fill function, some major modes use a different one.
5766 Returns t if it really did any work."
5767 (let (fc justify give-up
5768 (fill-prefix fill-prefix))
5769 (if (or (not (setq justify (current-justification)))
5770 (null (setq fc (current-fill-column)))
5771 (and (eq justify 'left)
5772 (<= (current-column) fc))
5773 (and auto-fill-inhibit-regexp
5774 (save-excursion (beginning-of-line)
5775 (looking-at auto-fill-inhibit-regexp))))
5776 nil ;; Auto-filling not required
5777 (if (memq justify '(full center right))
5778 (save-excursion (unjustify-current-line)))
5779
5780 ;; Choose a fill-prefix automatically.
5781 (when (and adaptive-fill-mode
5782 (or (null fill-prefix) (string= fill-prefix "")))
5783 (let ((prefix
5784 (fill-context-prefix
5785 (save-excursion (fill-forward-paragraph -1) (point))
5786 (save-excursion (fill-forward-paragraph 1) (point)))))
5787 (and prefix (not (equal prefix ""))
5788 ;; Use auto-indentation rather than a guessed empty prefix.
5789 (not (and fill-indent-according-to-mode
5790 (string-match "\\`[ \t]*\\'" prefix)))
5791 (setq fill-prefix prefix))))
5792
5793 (while (and (not give-up) (> (current-column) fc))
5794 ;; Determine where to split the line.
5795 (let* (after-prefix
5796 (fill-point
5797 (save-excursion
5798 (beginning-of-line)
5799 (setq after-prefix (point))
5800 (and fill-prefix
5801 (looking-at (regexp-quote fill-prefix))
5802 (setq after-prefix (match-end 0)))
5803 (move-to-column (1+ fc))
5804 (fill-move-to-break-point after-prefix)
5805 (point))))
5806
5807 ;; See whether the place we found is any good.
5808 (if (save-excursion
5809 (goto-char fill-point)
5810 (or (bolp)
5811 ;; There is no use breaking at end of line.
5812 (save-excursion (skip-chars-forward " ") (eolp))
5813 ;; It is futile to split at the end of the prefix
5814 ;; since we would just insert the prefix again.
5815 (and after-prefix (<= (point) after-prefix))
5816 ;; Don't split right after a comment starter
5817 ;; since we would just make another comment starter.
5818 (and comment-start-skip
5819 (let ((limit (point)))
5820 (beginning-of-line)
5821 (and (re-search-forward comment-start-skip
5822 limit t)
5823 (eq (point) limit))))))
5824 ;; No good place to break => stop trying.
5825 (setq give-up t)
5826 ;; Ok, we have a useful place to break the line. Do it.
5827 (let ((prev-column (current-column)))
5828 ;; If point is at the fill-point, do not `save-excursion'.
5829 ;; Otherwise, if a comment prefix or fill-prefix is inserted,
5830 ;; point will end up before it rather than after it.
5831 (if (save-excursion
5832 (skip-chars-backward " \t")
5833 (= (point) fill-point))
5834 (default-indent-new-line t)
5835 (save-excursion
5836 (goto-char fill-point)
5837 (default-indent-new-line t)))
5838 ;; Now do justification, if required
5839 (if (not (eq justify 'left))
5840 (save-excursion
5841 (end-of-line 0)
5842 (justify-current-line justify nil t)))
5843 ;; If making the new line didn't reduce the hpos of
5844 ;; the end of the line, then give up now;
5845 ;; trying again will not help.
5846 (if (>= (current-column) prev-column)
5847 (setq give-up t))))))
5848 ;; Justify last line.
5849 (justify-current-line justify t t)
5850 t)))
5851
5852 (defvar comment-line-break-function 'comment-indent-new-line
5853 "Mode-specific function which line breaks and continues a comment.
5854 This function is called during auto-filling when a comment syntax
5855 is defined.
5856 The function should take a single optional argument, which is a flag
5857 indicating whether it should use soft newlines.")
5858
5859 (defun default-indent-new-line (&optional soft)
5860 "Break line at point and indent.
5861 If a comment syntax is defined, call `comment-indent-new-line'.
5862
5863 The inserted newline is marked hard if variable `use-hard-newlines' is true,
5864 unless optional argument SOFT is non-nil."
5865 (interactive)
5866 (if comment-start
5867 (funcall comment-line-break-function soft)
5868 ;; Insert the newline before removing empty space so that markers
5869 ;; get preserved better.
5870 (if soft (insert-and-inherit ?\n) (newline 1))
5871 (save-excursion (forward-char -1) (delete-horizontal-space))
5872 (delete-horizontal-space)
5873
5874 (if (and fill-prefix (not adaptive-fill-mode))
5875 ;; Blindly trust a non-adaptive fill-prefix.
5876 (progn
5877 (indent-to-left-margin)
5878 (insert-before-markers-and-inherit fill-prefix))
5879
5880 (cond
5881 ;; If there's an adaptive prefix, use it unless we're inside
5882 ;; a comment and the prefix is not a comment starter.
5883 (fill-prefix
5884 (indent-to-left-margin)
5885 (insert-and-inherit fill-prefix))
5886 ;; If we're not inside a comment, just try to indent.
5887 (t (indent-according-to-mode))))))
5888
5889 (defvar normal-auto-fill-function 'do-auto-fill
5890 "The function to use for `auto-fill-function' if Auto Fill mode is turned on.
5891 Some major modes set this.")
5892
5893 (put 'auto-fill-function :minor-mode-function 'auto-fill-mode)
5894 ;; `functions' and `hooks' are usually unsafe to set, but setting
5895 ;; auto-fill-function to nil in a file-local setting is safe and
5896 ;; can be useful to prevent auto-filling.
5897 (put 'auto-fill-function 'safe-local-variable 'null)
5898
5899 (define-minor-mode auto-fill-mode
5900 "Toggle automatic line breaking (Auto Fill mode).
5901 With a prefix argument ARG, enable Auto Fill mode if ARG is
5902 positive, and disable it otherwise. If called from Lisp, enable
5903 the mode if ARG is omitted or nil.
5904
5905 When Auto Fill mode is enabled, inserting a space at a column
5906 beyond `current-fill-column' automatically breaks the line at a
5907 previous space.
5908
5909 When `auto-fill-mode' is on, the `auto-fill-function' variable is
5910 non-`nil'.
5911
5912 The value of `normal-auto-fill-function' specifies the function to use
5913 for `auto-fill-function' when turning Auto Fill mode on."
5914 :variable (auto-fill-function
5915 . (lambda (v) (setq auto-fill-function
5916 (if v normal-auto-fill-function)))))
5917
5918 ;; This holds a document string used to document auto-fill-mode.
5919 (defun auto-fill-function ()
5920 "Automatically break line at a previous space, in insertion of text."
5921 nil)
5922
5923 (defun turn-on-auto-fill ()
5924 "Unconditionally turn on Auto Fill mode."
5925 (auto-fill-mode 1))
5926
5927 (defun turn-off-auto-fill ()
5928 "Unconditionally turn off Auto Fill mode."
5929 (auto-fill-mode -1))
5930
5931 (custom-add-option 'text-mode-hook 'turn-on-auto-fill)
5932
5933 (defun set-fill-column (arg)
5934 "Set `fill-column' to specified argument.
5935 Use \\[universal-argument] followed by a number to specify a column.
5936 Just \\[universal-argument] as argument means to use the current column."
5937 (interactive
5938 (list (or current-prefix-arg
5939 ;; We used to use current-column silently, but C-x f is too easily
5940 ;; typed as a typo for C-x C-f, so we turned it into an error and
5941 ;; now an interactive prompt.
5942 (read-number "Set fill-column to: " (current-column)))))
5943 (if (consp arg)
5944 (setq arg (current-column)))
5945 (if (not (integerp arg))
5946 ;; Disallow missing argument; it's probably a typo for C-x C-f.
5947 (error "set-fill-column requires an explicit argument")
5948 (message "Fill column set to %d (was %d)" arg fill-column)
5949 (setq fill-column arg)))
5950 \f
5951 (defun set-selective-display (arg)
5952 "Set `selective-display' to ARG; clear it if no arg.
5953 When the value of `selective-display' is a number > 0,
5954 lines whose indentation is >= that value are not displayed.
5955 The variable `selective-display' has a separate value for each buffer."
5956 (interactive "P")
5957 (if (eq selective-display t)
5958 (error "selective-display already in use for marked lines"))
5959 (let ((current-vpos
5960 (save-restriction
5961 (narrow-to-region (point-min) (point))
5962 (goto-char (window-start))
5963 (vertical-motion (window-height)))))
5964 (setq selective-display
5965 (and arg (prefix-numeric-value arg)))
5966 (recenter current-vpos))
5967 (set-window-start (selected-window) (window-start))
5968 (princ "selective-display set to " t)
5969 (prin1 selective-display t)
5970 (princ "." t))
5971
5972 (defvaralias 'indicate-unused-lines 'indicate-empty-lines)
5973
5974 (defun toggle-truncate-lines (&optional arg)
5975 "Toggle truncating of long lines for the current buffer.
5976 When truncating is off, long lines are folded.
5977 With prefix argument ARG, truncate long lines if ARG is positive,
5978 otherwise fold them. Note that in side-by-side windows, this
5979 command has no effect if `truncate-partial-width-windows' is
5980 non-nil."
5981 (interactive "P")
5982 (setq truncate-lines
5983 (if (null arg)
5984 (not truncate-lines)
5985 (> (prefix-numeric-value arg) 0)))
5986 (force-mode-line-update)
5987 (unless truncate-lines
5988 (let ((buffer (current-buffer)))
5989 (walk-windows (lambda (window)
5990 (if (eq buffer (window-buffer window))
5991 (set-window-hscroll window 0)))
5992 nil t)))
5993 (message "Truncate long lines %s"
5994 (if truncate-lines "enabled" "disabled")))
5995
5996 (defun toggle-word-wrap (&optional arg)
5997 "Toggle whether to use word-wrapping for continuation lines.
5998 With prefix argument ARG, wrap continuation lines at word boundaries
5999 if ARG is positive, otherwise wrap them at the right screen edge.
6000 This command toggles the value of `word-wrap'. It has no effect
6001 if long lines are truncated."
6002 (interactive "P")
6003 (setq word-wrap
6004 (if (null arg)
6005 (not word-wrap)
6006 (> (prefix-numeric-value arg) 0)))
6007 (force-mode-line-update)
6008 (message "Word wrapping %s"
6009 (if word-wrap "enabled" "disabled")))
6010
6011 (defvar overwrite-mode-textual (purecopy " Ovwrt")
6012 "The string displayed in the mode line when in overwrite mode.")
6013 (defvar overwrite-mode-binary (purecopy " Bin Ovwrt")
6014 "The string displayed in the mode line when in binary overwrite mode.")
6015
6016 (define-minor-mode overwrite-mode
6017 "Toggle Overwrite mode.
6018 With a prefix argument ARG, enable Overwrite mode if ARG is
6019 positive, and disable it otherwise. If called from Lisp, enable
6020 the mode if ARG is omitted or nil.
6021
6022 When Overwrite mode is enabled, printing characters typed in
6023 replace existing text on a one-for-one basis, rather than pushing
6024 it to the right. At the end of a line, such characters extend
6025 the line. Before a tab, such characters insert until the tab is
6026 filled in. \\[quoted-insert] still inserts characters in
6027 overwrite mode; this is supposed to make it easier to insert
6028 characters when necessary."
6029 :variable (overwrite-mode
6030 . (lambda (v) (setq overwrite-mode (if v 'overwrite-mode-textual)))))
6031
6032 (define-minor-mode binary-overwrite-mode
6033 "Toggle Binary Overwrite mode.
6034 With a prefix argument ARG, enable Binary Overwrite mode if ARG
6035 is positive, and disable it otherwise. If called from Lisp,
6036 enable the mode if ARG is omitted or nil.
6037
6038 When Binary Overwrite mode is enabled, printing characters typed
6039 in replace existing text. Newlines are not treated specially, so
6040 typing at the end of a line joins the line to the next, with the
6041 typed character between them. Typing before a tab character
6042 simply replaces the tab with the character typed.
6043 \\[quoted-insert] replaces the text at the cursor, just as
6044 ordinary typing characters do.
6045
6046 Note that Binary Overwrite mode is not its own minor mode; it is
6047 a specialization of overwrite mode, entered by setting the
6048 `overwrite-mode' variable to `overwrite-mode-binary'."
6049 :variable (overwrite-mode
6050 . (lambda (v) (setq overwrite-mode (if v 'overwrite-mode-binary)))))
6051
6052 (define-minor-mode line-number-mode
6053 "Toggle line number display in the mode line (Line Number mode).
6054 With a prefix argument ARG, enable Line Number mode if ARG is
6055 positive, and disable it otherwise. If called from Lisp, enable
6056 the mode if ARG is omitted or nil.
6057
6058 Line numbers do not appear for very large buffers and buffers
6059 with very long lines; see variables `line-number-display-limit'
6060 and `line-number-display-limit-width'."
6061 :init-value t :global t :group 'mode-line)
6062
6063 (define-minor-mode column-number-mode
6064 "Toggle column number display in the mode line (Column Number mode).
6065 With a prefix argument ARG, enable Column Number mode if ARG is
6066 positive, and disable it otherwise.
6067
6068 If called from Lisp, enable the mode if ARG is omitted or nil."
6069 :global t :group 'mode-line)
6070
6071 (define-minor-mode size-indication-mode
6072 "Toggle buffer size display in the mode line (Size Indication mode).
6073 With a prefix argument ARG, enable Size Indication mode if ARG is
6074 positive, and disable it otherwise.
6075
6076 If called from Lisp, enable the mode if ARG is omitted or nil."
6077 :global t :group 'mode-line)
6078
6079 (define-minor-mode auto-save-mode
6080 "Toggle auto-saving in the current buffer (Auto Save mode).
6081 With a prefix argument ARG, enable Auto Save 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 :variable ((and buffer-auto-save-file-name
6086 ;; If auto-save is off because buffer has shrunk,
6087 ;; then toggling should turn it on.
6088 (>= buffer-saved-size 0))
6089 . (lambda (val)
6090 (setq buffer-auto-save-file-name
6091 (cond
6092 ((null val) nil)
6093 ((and buffer-file-name auto-save-visited-file-name
6094 (not buffer-read-only))
6095 buffer-file-name)
6096 (t (make-auto-save-file-name))))))
6097 ;; If -1 was stored here, to temporarily turn off saving,
6098 ;; turn it back on.
6099 (and (< buffer-saved-size 0)
6100 (setq buffer-saved-size 0)))
6101 \f
6102 (defgroup paren-blinking nil
6103 "Blinking matching of parens and expressions."
6104 :prefix "blink-matching-"
6105 :group 'paren-matching)
6106
6107 (defcustom blink-matching-paren t
6108 "Non-nil means show matching open-paren when close-paren is inserted."
6109 :type 'boolean
6110 :group 'paren-blinking)
6111
6112 (defcustom blink-matching-paren-on-screen t
6113 "Non-nil means show matching open-paren when it is on screen.
6114 If nil, don't show it (but the open-paren can still be shown
6115 when it is off screen).
6116
6117 This variable has no effect if `blink-matching-paren' is nil.
6118 \(In that case, the open-paren is never shown.)
6119 It is also ignored if `show-paren-mode' is enabled."
6120 :type 'boolean
6121 :group 'paren-blinking)
6122
6123 (defcustom blink-matching-paren-distance (* 100 1024)
6124 "If non-nil, maximum distance to search backwards for matching open-paren.
6125 If nil, search stops at the beginning of the accessible portion of the buffer."
6126 :version "23.2" ; 25->100k
6127 :type '(choice (const nil) integer)
6128 :group 'paren-blinking)
6129
6130 (defcustom blink-matching-delay 1
6131 "Time in seconds to delay after showing a matching paren."
6132 :type 'number
6133 :group 'paren-blinking)
6134
6135 (defcustom blink-matching-paren-dont-ignore-comments nil
6136 "If nil, `blink-matching-paren' ignores comments.
6137 More precisely, when looking for the matching parenthesis,
6138 it skips the contents of comments that end before point."
6139 :type 'boolean
6140 :group 'paren-blinking)
6141
6142 (defun blink-matching-check-mismatch (start end)
6143 "Return whether or not START...END are matching parens.
6144 END is the current point and START is the blink position.
6145 START might be nil if no matching starter was found.
6146 Returns non-nil if we find there is a mismatch."
6147 (let* ((end-syntax (syntax-after (1- end)))
6148 (matching-paren (and (consp end-syntax)
6149 (eq (syntax-class end-syntax) 5)
6150 (cdr end-syntax))))
6151 ;; For self-matched chars like " and $, we can't know when they're
6152 ;; mismatched or unmatched, so we can only do it for parens.
6153 (when matching-paren
6154 (not (and start
6155 (or
6156 (eq (char-after start) matching-paren)
6157 ;; The cdr might hold a new paren-class info rather than
6158 ;; a matching-char info, in which case the two CDRs
6159 ;; should match.
6160 (eq matching-paren (cdr-safe (syntax-after start)))))))))
6161
6162 (defvar blink-matching-check-function #'blink-matching-check-mismatch
6163 "Function to check parentheses mismatches.
6164 The function takes two arguments (START and END) where START is the
6165 position just before the opening token and END is the position right after.
6166 START can be nil, if it was not found.
6167 The function should return non-nil if the two tokens do not match.")
6168
6169 (defun blink-matching-open ()
6170 "Move cursor momentarily to the beginning of the sexp before point."
6171 (interactive)
6172 (when (and (not (bobp))
6173 blink-matching-paren)
6174 (let* ((oldpos (point))
6175 (message-log-max nil) ; Don't log messages about paren matching.
6176 (blinkpos
6177 (save-excursion
6178 (save-restriction
6179 (if blink-matching-paren-distance
6180 (narrow-to-region
6181 (max (minibuffer-prompt-end) ;(point-min) unless minibuf.
6182 (- (point) blink-matching-paren-distance))
6183 oldpos))
6184 (let ((parse-sexp-ignore-comments
6185 (and parse-sexp-ignore-comments
6186 (not blink-matching-paren-dont-ignore-comments))))
6187 (condition-case ()
6188 (progn
6189 (forward-sexp -1)
6190 ;; backward-sexp skips backward over prefix chars,
6191 ;; so move back to the matching paren.
6192 (while (and (< (point) (1- oldpos))
6193 (let ((code (syntax-after (point))))
6194 (or (eq (syntax-class code) 6)
6195 (eq (logand 1048576 (car code))
6196 1048576))))
6197 (forward-char 1))
6198 (point))
6199 (error nil))))))
6200 (mismatch (funcall blink-matching-check-function blinkpos oldpos)))
6201 (cond
6202 (mismatch
6203 (if blinkpos
6204 (if (minibufferp)
6205 (minibuffer-message "Mismatched parentheses")
6206 (message "Mismatched parentheses"))
6207 (if (minibufferp)
6208 (minibuffer-message "No matching parenthesis found")
6209 (message "No matching parenthesis found"))))
6210 ((not blinkpos) nil)
6211 ((pos-visible-in-window-p blinkpos)
6212 ;; Matching open within window, temporarily move to blinkpos but only
6213 ;; if `blink-matching-paren-on-screen' is non-nil.
6214 (and blink-matching-paren-on-screen
6215 (not show-paren-mode)
6216 (save-excursion
6217 (goto-char blinkpos)
6218 (sit-for blink-matching-delay))))
6219 (t
6220 (save-excursion
6221 (goto-char blinkpos)
6222 (let ((open-paren-line-string
6223 ;; Show what precedes the open in its line, if anything.
6224 (cond
6225 ((save-excursion (skip-chars-backward " \t") (not (bolp)))
6226 (buffer-substring (line-beginning-position)
6227 (1+ blinkpos)))
6228 ;; Show what follows the open in its line, if anything.
6229 ((save-excursion
6230 (forward-char 1)
6231 (skip-chars-forward " \t")
6232 (not (eolp)))
6233 (buffer-substring blinkpos
6234 (line-end-position)))
6235 ;; Otherwise show the previous nonblank line,
6236 ;; if there is one.
6237 ((save-excursion (skip-chars-backward "\n \t") (not (bobp)))
6238 (concat
6239 (buffer-substring (progn
6240 (skip-chars-backward "\n \t")
6241 (line-beginning-position))
6242 (progn (end-of-line)
6243 (skip-chars-backward " \t")
6244 (point)))
6245 ;; Replace the newline and other whitespace with `...'.
6246 "..."
6247 (buffer-substring blinkpos (1+ blinkpos))))
6248 ;; There is nothing to show except the char itself.
6249 (t (buffer-substring blinkpos (1+ blinkpos))))))
6250 (message "Matches %s"
6251 (substring-no-properties open-paren-line-string)))))))))
6252
6253 (defvar blink-paren-function 'blink-matching-open
6254 "Function called, if non-nil, whenever a close parenthesis is inserted.
6255 More precisely, a char with closeparen syntax is self-inserted.")
6256
6257 (defun blink-paren-post-self-insert-function ()
6258 (when (and (eq (char-before) last-command-event) ; Sanity check.
6259 (memq (char-syntax last-command-event) '(?\) ?\$))
6260 blink-paren-function
6261 (not executing-kbd-macro)
6262 (not noninteractive)
6263 ;; Verify an even number of quoting characters precede the close.
6264 (= 1 (logand 1 (- (point)
6265 (save-excursion
6266 (forward-char -1)
6267 (skip-syntax-backward "/\\")
6268 (point))))))
6269 (funcall blink-paren-function)))
6270
6271 (add-hook 'post-self-insert-hook #'blink-paren-post-self-insert-function
6272 ;; Most likely, this hook is nil, so this arg doesn't matter,
6273 ;; but I use it as a reminder that this function usually
6274 ;; likes to be run after others since it does `sit-for'.
6275 'append)
6276 \f
6277 ;; This executes C-g typed while Emacs is waiting for a command.
6278 ;; Quitting out of a program does not go through here;
6279 ;; that happens in the QUIT macro at the C code level.
6280 (defun keyboard-quit ()
6281 "Signal a `quit' condition.
6282 During execution of Lisp code, this character causes a quit directly.
6283 At top-level, as an editor command, this simply beeps."
6284 (interactive)
6285 ;; Avoid adding the region to the window selection.
6286 (setq saved-region-selection nil)
6287 (let (select-active-regions)
6288 (deactivate-mark))
6289 (if (fboundp 'kmacro-keyboard-quit)
6290 (kmacro-keyboard-quit))
6291 (setq defining-kbd-macro nil)
6292 (let ((debug-on-quit nil))
6293 (signal 'quit nil)))
6294
6295 (defvar buffer-quit-function nil
6296 "Function to call to \"quit\" the current buffer, or nil if none.
6297 \\[keyboard-escape-quit] calls this function when its more local actions
6298 \(such as canceling a prefix argument, minibuffer or region) do not apply.")
6299
6300 (defun keyboard-escape-quit ()
6301 "Exit the current \"mode\" (in a generalized sense of the word).
6302 This command can exit an interactive command such as `query-replace',
6303 can clear out a prefix argument or a region,
6304 can get out of the minibuffer or other recursive edit,
6305 cancel the use of the current buffer (for special-purpose buffers),
6306 or go back to just one window (by deleting all but the selected window)."
6307 (interactive)
6308 (cond ((eq last-command 'mode-exited) nil)
6309 ((region-active-p)
6310 (deactivate-mark))
6311 ((> (minibuffer-depth) 0)
6312 (abort-recursive-edit))
6313 (current-prefix-arg
6314 nil)
6315 ((> (recursion-depth) 0)
6316 (exit-recursive-edit))
6317 (buffer-quit-function
6318 (funcall buffer-quit-function))
6319 ((not (one-window-p t))
6320 (delete-other-windows))
6321 ((string-match "^ \\*" (buffer-name (current-buffer)))
6322 (bury-buffer))))
6323
6324 (defun play-sound-file (file &optional volume device)
6325 "Play sound stored in FILE.
6326 VOLUME and DEVICE correspond to the keywords of the sound
6327 specification for `play-sound'."
6328 (interactive "fPlay sound file: ")
6329 (let ((sound (list :file file)))
6330 (if volume
6331 (plist-put sound :volume volume))
6332 (if device
6333 (plist-put sound :device device))
6334 (push 'sound sound)
6335 (play-sound sound)))
6336
6337 \f
6338 (defcustom read-mail-command 'rmail
6339 "Your preference for a mail reading package.
6340 This is used by some keybindings which support reading mail.
6341 See also `mail-user-agent' concerning sending mail."
6342 :type '(radio (function-item :tag "Rmail" :format "%t\n" rmail)
6343 (function-item :tag "Gnus" :format "%t\n" gnus)
6344 (function-item :tag "Emacs interface to MH"
6345 :format "%t\n" mh-rmail)
6346 (function :tag "Other"))
6347 :version "21.1"
6348 :group 'mail)
6349
6350 (defcustom mail-user-agent 'message-user-agent
6351 "Your preference for a mail composition package.
6352 Various Emacs Lisp packages (e.g. Reporter) require you to compose an
6353 outgoing email message. This variable lets you specify which
6354 mail-sending package you prefer.
6355
6356 Valid values include:
6357
6358 `message-user-agent' -- use the Message package.
6359 See Info node `(message)'.
6360 `sendmail-user-agent' -- use the Mail package.
6361 See Info node `(emacs)Sending Mail'.
6362 `mh-e-user-agent' -- use the Emacs interface to the MH mail system.
6363 See Info node `(mh-e)'.
6364 `gnus-user-agent' -- like `message-user-agent', but with Gnus
6365 paraphernalia if Gnus is running, particularly
6366 the Gcc: header for archiving.
6367
6368 Additional valid symbols may be available; check with the author of
6369 your package for details. The function should return non-nil if it
6370 succeeds.
6371
6372 See also `read-mail-command' concerning reading mail."
6373 :type '(radio (function-item :tag "Message package"
6374 :format "%t\n"
6375 message-user-agent)
6376 (function-item :tag "Mail package"
6377 :format "%t\n"
6378 sendmail-user-agent)
6379 (function-item :tag "Emacs interface to MH"
6380 :format "%t\n"
6381 mh-e-user-agent)
6382 (function-item :tag "Message with full Gnus features"
6383 :format "%t\n"
6384 gnus-user-agent)
6385 (function :tag "Other"))
6386 :version "23.2" ; sendmail->message
6387 :group 'mail)
6388
6389 (defcustom compose-mail-user-agent-warnings t
6390 "If non-nil, `compose-mail' warns about changes in `mail-user-agent'.
6391 If the value of `mail-user-agent' is the default, and the user
6392 appears to have customizations applying to the old default,
6393 `compose-mail' issues a warning."
6394 :type 'boolean
6395 :version "23.2"
6396 :group 'mail)
6397
6398 (defun rfc822-goto-eoh ()
6399 "If the buffer starts with a mail header, move point to the header's end.
6400 Otherwise, moves to `point-min'.
6401 The end of the header is the start of the next line, if there is one,
6402 else the end of the last line. This function obeys RFC822."
6403 (goto-char (point-min))
6404 (when (re-search-forward
6405 "^\\([:\n]\\|[^: \t\n]+[ \t\n]\\)" nil 'move)
6406 (goto-char (match-beginning 0))))
6407
6408 ;; Used by Rmail (e.g., rmail-forward).
6409 (defvar mail-encode-mml nil
6410 "If non-nil, mail-user-agent's `sendfunc' command should mml-encode
6411 the outgoing message before sending it.")
6412
6413 (defun compose-mail (&optional to subject other-headers continue
6414 switch-function yank-action send-actions
6415 return-action)
6416 "Start composing a mail message to send.
6417 This uses the user's chosen mail composition package
6418 as selected with the variable `mail-user-agent'.
6419 The optional arguments TO and SUBJECT specify recipients
6420 and the initial Subject field, respectively.
6421
6422 OTHER-HEADERS is an alist specifying additional
6423 header fields. Elements look like (HEADER . VALUE) where both
6424 HEADER and VALUE are strings.
6425
6426 CONTINUE, if non-nil, says to continue editing a message already
6427 being composed. Interactively, CONTINUE is the prefix argument.
6428
6429 SWITCH-FUNCTION, if non-nil, is a function to use to
6430 switch to and display the buffer used for mail composition.
6431
6432 YANK-ACTION, if non-nil, is an action to perform, if and when necessary,
6433 to insert the raw text of the message being replied to.
6434 It has the form (FUNCTION . ARGS). The user agent will apply
6435 FUNCTION to ARGS, to insert the raw text of the original message.
6436 \(The user agent will also run `mail-citation-hook', *after* the
6437 original text has been inserted in this way.)
6438
6439 SEND-ACTIONS is a list of actions to call when the message is sent.
6440 Each action has the form (FUNCTION . ARGS).
6441
6442 RETURN-ACTION, if non-nil, is an action for returning to the
6443 caller. It has the form (FUNCTION . ARGS). The function is
6444 called after the mail has been sent or put aside, and the mail
6445 buffer buried."
6446 (interactive
6447 (list nil nil nil current-prefix-arg))
6448
6449 ;; In Emacs 23.2, the default value of `mail-user-agent' changed
6450 ;; from sendmail-user-agent to message-user-agent. Some users may
6451 ;; encounter incompatibilities. This hack tries to detect problems
6452 ;; and warn about them.
6453 (and compose-mail-user-agent-warnings
6454 (eq mail-user-agent 'message-user-agent)
6455 (let (warn-vars)
6456 (dolist (var '(mail-mode-hook mail-send-hook mail-setup-hook
6457 mail-yank-hooks mail-archive-file-name
6458 mail-default-reply-to mail-mailing-lists
6459 mail-self-blind))
6460 (and (boundp var)
6461 (symbol-value var)
6462 (push var warn-vars)))
6463 (when warn-vars
6464 (display-warning 'mail
6465 (format "\
6466 The default mail mode is now Message mode.
6467 You have the following Mail mode variable%s customized:
6468 \n %s\n\nTo use Mail mode, set `mail-user-agent' to sendmail-user-agent.
6469 To disable this warning, set `compose-mail-user-agent-warnings' to nil."
6470 (if (> (length warn-vars) 1) "s" "")
6471 (mapconcat 'symbol-name
6472 warn-vars " "))))))
6473
6474 (let ((function (get mail-user-agent 'composefunc)))
6475 (funcall function to subject other-headers continue switch-function
6476 yank-action send-actions return-action)))
6477
6478 (defun compose-mail-other-window (&optional to subject other-headers continue
6479 yank-action send-actions
6480 return-action)
6481 "Like \\[compose-mail], but edit the outgoing message in another window."
6482 (interactive (list nil nil nil current-prefix-arg))
6483 (compose-mail to subject other-headers continue
6484 'switch-to-buffer-other-window yank-action send-actions
6485 return-action))
6486
6487 (defun compose-mail-other-frame (&optional to subject other-headers continue
6488 yank-action send-actions
6489 return-action)
6490 "Like \\[compose-mail], but edit the outgoing message in another frame."
6491 (interactive (list nil nil nil current-prefix-arg))
6492 (compose-mail to subject other-headers continue
6493 'switch-to-buffer-other-frame yank-action send-actions
6494 return-action))
6495
6496 \f
6497 (defvar set-variable-value-history nil
6498 "History of values entered with `set-variable'.
6499
6500 Maximum length of the history list is determined by the value
6501 of `history-length', which see.")
6502
6503 (defun set-variable (variable value &optional make-local)
6504 "Set VARIABLE to VALUE. VALUE is a Lisp object.
6505 VARIABLE should be a user option variable name, a Lisp variable
6506 meant to be customized by users. You should enter VALUE in Lisp syntax,
6507 so if you want VALUE to be a string, you must surround it with doublequotes.
6508 VALUE is used literally, not evaluated.
6509
6510 If VARIABLE has a `variable-interactive' property, that is used as if
6511 it were the arg to `interactive' (which see) to interactively read VALUE.
6512
6513 If VARIABLE has been defined with `defcustom', then the type information
6514 in the definition is used to check that VALUE is valid.
6515
6516 With a prefix argument, set VARIABLE to VALUE buffer-locally."
6517 (interactive
6518 (let* ((default-var (variable-at-point))
6519 (var (if (custom-variable-p default-var)
6520 (read-variable (format "Set variable (default %s): " default-var)
6521 default-var)
6522 (read-variable "Set variable: ")))
6523 (minibuffer-help-form '(describe-variable var))
6524 (prop (get var 'variable-interactive))
6525 (obsolete (car (get var 'byte-obsolete-variable)))
6526 (prompt (format "Set %s %s to value: " var
6527 (cond ((local-variable-p var)
6528 "(buffer-local)")
6529 ((or current-prefix-arg
6530 (local-variable-if-set-p var))
6531 "buffer-locally")
6532 (t "globally"))))
6533 (val (progn
6534 (when obsolete
6535 (message (concat "`%S' is obsolete; "
6536 (if (symbolp obsolete) "use `%S' instead" "%s"))
6537 var obsolete)
6538 (sit-for 3))
6539 (if prop
6540 ;; Use VAR's `variable-interactive' property
6541 ;; as an interactive spec for prompting.
6542 (call-interactively `(lambda (arg)
6543 (interactive ,prop)
6544 arg))
6545 (read-from-minibuffer prompt nil
6546 read-expression-map t
6547 'set-variable-value-history
6548 (format "%S" (symbol-value var)))))))
6549 (list var val current-prefix-arg)))
6550
6551 (and (custom-variable-p variable)
6552 (not (get variable 'custom-type))
6553 (custom-load-symbol variable))
6554 (let ((type (get variable 'custom-type)))
6555 (when type
6556 ;; Match with custom type.
6557 (require 'cus-edit)
6558 (setq type (widget-convert type))
6559 (unless (widget-apply type :match value)
6560 (error "Value `%S' does not match type %S of %S"
6561 value (car type) variable))))
6562
6563 (if make-local
6564 (make-local-variable variable))
6565
6566 (set variable value)
6567
6568 ;; Force a thorough redisplay for the case that the variable
6569 ;; has an effect on the display, like `tab-width' has.
6570 (force-mode-line-update))
6571 \f
6572 ;; Define the major mode for lists of completions.
6573
6574 (defvar completion-list-mode-map
6575 (let ((map (make-sparse-keymap)))
6576 (define-key map [mouse-2] 'mouse-choose-completion)
6577 (define-key map [follow-link] 'mouse-face)
6578 (define-key map [down-mouse-2] nil)
6579 (define-key map "\C-m" 'choose-completion)
6580 (define-key map "\e\e\e" 'delete-completion-window)
6581 (define-key map [left] 'previous-completion)
6582 (define-key map [right] 'next-completion)
6583 (define-key map "q" 'quit-window)
6584 (define-key map "z" 'kill-this-buffer)
6585 map)
6586 "Local map for completion list buffers.")
6587
6588 ;; Completion mode is suitable only for specially formatted data.
6589 (put 'completion-list-mode 'mode-class 'special)
6590
6591 (defvar completion-reference-buffer nil
6592 "Record the buffer that was current when the completion list was requested.
6593 This is a local variable in the completion list buffer.
6594 Initial value is nil to avoid some compiler warnings.")
6595
6596 (defvar completion-no-auto-exit nil
6597 "Non-nil means `choose-completion-string' should never exit the minibuffer.
6598 This also applies to other functions such as `choose-completion'.")
6599
6600 (defvar completion-base-position nil
6601 "Position of the base of the text corresponding to the shown completions.
6602 This variable is used in the *Completions* buffers.
6603 Its value is a list of the form (START END) where START is the place
6604 where the completion should be inserted and END (if non-nil) is the end
6605 of the text to replace. If END is nil, point is used instead.")
6606
6607 (defvar completion-list-insert-choice-function #'completion--replace
6608 "Function to use to insert the text chosen in *Completions*.
6609 Called with three arguments (BEG END TEXT), it should replace the text
6610 between BEG and END with TEXT. Expected to be set buffer-locally
6611 in the *Completions* buffer.")
6612
6613 (defvar completion-base-size nil
6614 "Number of chars before point not involved in completion.
6615 This is a local variable in the completion list buffer.
6616 It refers to the chars in the minibuffer if completing in the
6617 minibuffer, or in `completion-reference-buffer' otherwise.
6618 Only characters in the field at point are included.
6619
6620 If nil, Emacs determines which part of the tail end of the
6621 buffer's text is involved in completion by comparing the text
6622 directly.")
6623 (make-obsolete-variable 'completion-base-size 'completion-base-position "23.2")
6624
6625 (defun delete-completion-window ()
6626 "Delete the completion list window.
6627 Go to the window from which completion was requested."
6628 (interactive)
6629 (let ((buf completion-reference-buffer))
6630 (if (one-window-p t)
6631 (if (window-dedicated-p) (delete-frame))
6632 (delete-window (selected-window))
6633 (if (get-buffer-window buf)
6634 (select-window (get-buffer-window buf))))))
6635
6636 (defun previous-completion (n)
6637 "Move to the previous item in the completion list."
6638 (interactive "p")
6639 (next-completion (- n)))
6640
6641 (defun next-completion (n)
6642 "Move to the next item in the completion list.
6643 With prefix argument N, move N items (negative N means move backward)."
6644 (interactive "p")
6645 (let ((beg (point-min)) (end (point-max)))
6646 (while (and (> n 0) (not (eobp)))
6647 ;; If in a completion, move to the end of it.
6648 (when (get-text-property (point) 'mouse-face)
6649 (goto-char (next-single-property-change (point) 'mouse-face nil end)))
6650 ;; Move to start of next one.
6651 (unless (get-text-property (point) 'mouse-face)
6652 (goto-char (next-single-property-change (point) 'mouse-face nil end)))
6653 (setq n (1- n)))
6654 (while (and (< n 0) (not (bobp)))
6655 (let ((prop (get-text-property (1- (point)) 'mouse-face)))
6656 ;; If in a completion, move to the start of it.
6657 (when (and prop (eq prop (get-text-property (point) 'mouse-face)))
6658 (goto-char (previous-single-property-change
6659 (point) 'mouse-face nil beg)))
6660 ;; Move to end of the previous completion.
6661 (unless (or (bobp) (get-text-property (1- (point)) 'mouse-face))
6662 (goto-char (previous-single-property-change
6663 (point) 'mouse-face nil beg)))
6664 ;; Move to the start of that one.
6665 (goto-char (previous-single-property-change
6666 (point) 'mouse-face nil beg))
6667 (setq n (1+ n))))))
6668
6669 (defun choose-completion (&optional event)
6670 "Choose the completion at point."
6671 (interactive (list last-nonmenu-event))
6672 ;; In case this is run via the mouse, give temporary modes such as
6673 ;; isearch a chance to turn off.
6674 (run-hooks 'mouse-leave-buffer-hook)
6675 (with-current-buffer (window-buffer (posn-window (event-start event)))
6676 (let ((buffer completion-reference-buffer)
6677 (base-size completion-base-size)
6678 (base-position completion-base-position)
6679 (insert-function completion-list-insert-choice-function)
6680 (choice
6681 (save-excursion
6682 (goto-char (posn-point (event-start event)))
6683 (let (beg end)
6684 (cond
6685 ((and (not (eobp)) (get-text-property (point) 'mouse-face))
6686 (setq end (point) beg (1+ (point))))
6687 ((and (not (bobp))
6688 (get-text-property (1- (point)) 'mouse-face))
6689 (setq end (1- (point)) beg (point)))
6690 (t (error "No completion here")))
6691 (setq beg (previous-single-property-change beg 'mouse-face))
6692 (setq end (or (next-single-property-change end 'mouse-face)
6693 (point-max)))
6694 (buffer-substring-no-properties beg end)))))
6695
6696 (unless (buffer-live-p buffer)
6697 (error "Destination buffer is dead"))
6698 (quit-window nil (posn-window (event-start event)))
6699
6700 (with-current-buffer buffer
6701 (choose-completion-string
6702 choice buffer
6703 (or base-position
6704 (when base-size
6705 ;; Someone's using old completion code that doesn't know
6706 ;; about base-position yet.
6707 (list (+ base-size (field-beginning))))
6708 ;; If all else fails, just guess.
6709 (list (choose-completion-guess-base-position choice)))
6710 insert-function)))))
6711
6712 ;; Delete the longest partial match for STRING
6713 ;; that can be found before POINT.
6714 (defun choose-completion-guess-base-position (string)
6715 (save-excursion
6716 (let ((opoint (point))
6717 len)
6718 ;; Try moving back by the length of the string.
6719 (goto-char (max (- (point) (length string))
6720 (minibuffer-prompt-end)))
6721 ;; See how far back we were actually able to move. That is the
6722 ;; upper bound on how much we can match and delete.
6723 (setq len (- opoint (point)))
6724 (if completion-ignore-case
6725 (setq string (downcase string)))
6726 (while (and (> len 0)
6727 (let ((tail (buffer-substring (point) opoint)))
6728 (if completion-ignore-case
6729 (setq tail (downcase tail)))
6730 (not (string= tail (substring string 0 len)))))
6731 (setq len (1- len))
6732 (forward-char 1))
6733 (point))))
6734
6735 (defun choose-completion-delete-max-match (string)
6736 (declare (obsolete choose-completion-guess-base-position "23.2"))
6737 (delete-region (choose-completion-guess-base-position string) (point)))
6738
6739 (defvar choose-completion-string-functions nil
6740 "Functions that may override the normal insertion of a completion choice.
6741 These functions are called in order with four arguments:
6742 CHOICE - the string to insert in the buffer,
6743 BUFFER - the buffer in which the choice should be inserted,
6744 MINI-P - non-nil if BUFFER is a minibuffer, and
6745 BASE-SIZE - the number of characters in BUFFER before
6746 the string being completed.
6747
6748 If a function in the list returns non-nil, that function is supposed
6749 to have inserted the CHOICE in the BUFFER, and possibly exited
6750 the minibuffer; no further functions will be called.
6751
6752 If all functions in the list return nil, that means to use
6753 the default method of inserting the completion in BUFFER.")
6754
6755 (defun choose-completion-string (choice &optional
6756 buffer base-position insert-function)
6757 "Switch to BUFFER and insert the completion choice CHOICE.
6758 BASE-POSITION says where to insert the completion.
6759 INSERT-FUNCTION says how to insert the completion and falls
6760 back on `completion-list-insert-choice-function' when nil."
6761
6762 ;; If BUFFER is the minibuffer, exit the minibuffer
6763 ;; unless it is reading a file name and CHOICE is a directory,
6764 ;; or completion-no-auto-exit is non-nil.
6765
6766 ;; Some older code may call us passing `base-size' instead of
6767 ;; `base-position'. It's difficult to make any use of `base-size',
6768 ;; so we just ignore it.
6769 (unless (consp base-position)
6770 (message "Obsolete `base-size' passed to choose-completion-string")
6771 (setq base-position nil))
6772
6773 (let* ((buffer (or buffer completion-reference-buffer))
6774 (mini-p (minibufferp buffer)))
6775 ;; If BUFFER is a minibuffer, barf unless it's the currently
6776 ;; active minibuffer.
6777 (if (and mini-p
6778 (not (and (active-minibuffer-window)
6779 (equal buffer
6780 (window-buffer (active-minibuffer-window))))))
6781 (error "Minibuffer is not active for completion")
6782 ;; Set buffer so buffer-local choose-completion-string-functions works.
6783 (set-buffer buffer)
6784 (unless (run-hook-with-args-until-success
6785 'choose-completion-string-functions
6786 ;; The fourth arg used to be `mini-p' but was useless
6787 ;; (since minibufferp can be used on the `buffer' arg)
6788 ;; and indeed unused. The last used to be `base-size', so we
6789 ;; keep it to try and avoid breaking old code.
6790 choice buffer base-position nil)
6791 ;; This remove-text-properties should be unnecessary since `choice'
6792 ;; comes from buffer-substring-no-properties.
6793 ;;(remove-text-properties 0 (length choice) '(mouse-face nil) choice)
6794 ;; Insert the completion into the buffer where it was requested.
6795 (funcall (or insert-function completion-list-insert-choice-function)
6796 (or (car base-position) (point))
6797 (or (cadr base-position) (point))
6798 choice)
6799 ;; Update point in the window that BUFFER is showing in.
6800 (let ((window (get-buffer-window buffer t)))
6801 (set-window-point window (point)))
6802 ;; If completing for the minibuffer, exit it with this choice.
6803 (and (not completion-no-auto-exit)
6804 (minibufferp buffer)
6805 minibuffer-completion-table
6806 ;; If this is reading a file name, and the file name chosen
6807 ;; is a directory, don't exit the minibuffer.
6808 (let* ((result (buffer-substring (field-beginning) (point)))
6809 (bounds
6810 (completion-boundaries result minibuffer-completion-table
6811 minibuffer-completion-predicate
6812 "")))
6813 (if (eq (car bounds) (length result))
6814 ;; The completion chosen leads to a new set of completions
6815 ;; (e.g. it's a directory): don't exit the minibuffer yet.
6816 (let ((mini (active-minibuffer-window)))
6817 (select-window mini)
6818 (when minibuffer-auto-raise
6819 (raise-frame (window-frame mini))))
6820 (exit-minibuffer))))))))
6821
6822 (define-derived-mode completion-list-mode nil "Completion List"
6823 "Major mode for buffers showing lists of possible completions.
6824 Type \\<completion-list-mode-map>\\[choose-completion] in the completion list\
6825 to select the completion near point.
6826 Use \\<completion-list-mode-map>\\[mouse-choose-completion] to select one\
6827 with the mouse.
6828
6829 \\{completion-list-mode-map}"
6830 (set (make-local-variable 'completion-base-size) nil))
6831
6832 (defun completion-list-mode-finish ()
6833 "Finish setup of the completions buffer.
6834 Called from `temp-buffer-show-hook'."
6835 (when (eq major-mode 'completion-list-mode)
6836 (setq buffer-read-only t)))
6837
6838 (add-hook 'temp-buffer-show-hook 'completion-list-mode-finish)
6839
6840
6841 ;; Variables and faces used in `completion-setup-function'.
6842
6843 (defcustom completion-show-help t
6844 "Non-nil means show help message in *Completions* buffer."
6845 :type 'boolean
6846 :version "22.1"
6847 :group 'completion)
6848
6849 ;; This function goes in completion-setup-hook, so that it is called
6850 ;; after the text of the completion list buffer is written.
6851 (defun completion-setup-function ()
6852 (let* ((mainbuf (current-buffer))
6853 (base-dir
6854 ;; FIXME: This is a bad hack. We try to set the default-directory
6855 ;; in the *Completions* buffer so that the relative file names
6856 ;; displayed there can be treated as valid file names, independently
6857 ;; from the completion context. But this suffers from many problems:
6858 ;; - It's not clear when the completions are file names. With some
6859 ;; completion tables (e.g. bzr revision specs), the listed
6860 ;; completions can mix file names and other things.
6861 ;; - It doesn't pay attention to possible quoting.
6862 ;; - With fancy completion styles, the code below will not always
6863 ;; find the right base directory.
6864 (if minibuffer-completing-file-name
6865 (file-name-as-directory
6866 (expand-file-name
6867 (buffer-substring (minibuffer-prompt-end)
6868 (- (point) (or completion-base-size 0))))))))
6869 (with-current-buffer standard-output
6870 (let ((base-size completion-base-size) ;Read before killing localvars.
6871 (base-position completion-base-position)
6872 (insert-fun completion-list-insert-choice-function))
6873 (completion-list-mode)
6874 (set (make-local-variable 'completion-base-size) base-size)
6875 (set (make-local-variable 'completion-base-position) base-position)
6876 (set (make-local-variable 'completion-list-insert-choice-function)
6877 insert-fun))
6878 (set (make-local-variable 'completion-reference-buffer) mainbuf)
6879 (if base-dir (setq default-directory base-dir))
6880 ;; Maybe insert help string.
6881 (when completion-show-help
6882 (goto-char (point-min))
6883 (if (display-mouse-p)
6884 (insert (substitute-command-keys
6885 "Click \\[mouse-choose-completion] on a completion to select it.\n")))
6886 (insert (substitute-command-keys
6887 "In this buffer, type \\[choose-completion] to \
6888 select the completion near point.\n\n"))))))
6889
6890 (add-hook 'completion-setup-hook 'completion-setup-function)
6891
6892 (define-key minibuffer-local-completion-map [prior] 'switch-to-completions)
6893 (define-key minibuffer-local-completion-map "\M-v" 'switch-to-completions)
6894
6895 (defun switch-to-completions ()
6896 "Select the completion list window."
6897 (interactive)
6898 (let ((window (or (get-buffer-window "*Completions*" 0)
6899 ;; Make sure we have a completions window.
6900 (progn (minibuffer-completion-help)
6901 (get-buffer-window "*Completions*" 0)))))
6902 (when window
6903 (select-window window)
6904 ;; In the new buffer, go to the first completion.
6905 ;; FIXME: Perhaps this should be done in `minibuffer-completion-help'.
6906 (when (bobp)
6907 (next-completion 1)))))
6908 \f
6909 ;;; Support keyboard commands to turn on various modifiers.
6910
6911 ;; These functions -- which are not commands -- each add one modifier
6912 ;; to the following event.
6913
6914 (defun event-apply-alt-modifier (_ignore-prompt)
6915 "\\<function-key-map>Add the Alt modifier to the following event.
6916 For example, type \\[event-apply-alt-modifier] & to enter Alt-&."
6917 (vector (event-apply-modifier (read-event) 'alt 22 "A-")))
6918 (defun event-apply-super-modifier (_ignore-prompt)
6919 "\\<function-key-map>Add the Super modifier to the following event.
6920 For example, type \\[event-apply-super-modifier] & to enter Super-&."
6921 (vector (event-apply-modifier (read-event) 'super 23 "s-")))
6922 (defun event-apply-hyper-modifier (_ignore-prompt)
6923 "\\<function-key-map>Add the Hyper modifier to the following event.
6924 For example, type \\[event-apply-hyper-modifier] & to enter Hyper-&."
6925 (vector (event-apply-modifier (read-event) 'hyper 24 "H-")))
6926 (defun event-apply-shift-modifier (_ignore-prompt)
6927 "\\<function-key-map>Add the Shift modifier to the following event.
6928 For example, type \\[event-apply-shift-modifier] & to enter Shift-&."
6929 (vector (event-apply-modifier (read-event) 'shift 25 "S-")))
6930 (defun event-apply-control-modifier (_ignore-prompt)
6931 "\\<function-key-map>Add the Ctrl modifier to the following event.
6932 For example, type \\[event-apply-control-modifier] & to enter Ctrl-&."
6933 (vector (event-apply-modifier (read-event) 'control 26 "C-")))
6934 (defun event-apply-meta-modifier (_ignore-prompt)
6935 "\\<function-key-map>Add the Meta modifier to the following event.
6936 For example, type \\[event-apply-meta-modifier] & to enter Meta-&."
6937 (vector (event-apply-modifier (read-event) 'meta 27 "M-")))
6938
6939 (defun event-apply-modifier (event symbol lshiftby prefix)
6940 "Apply a modifier flag to event EVENT.
6941 SYMBOL is the name of this modifier, as a symbol.
6942 LSHIFTBY is the numeric value of this modifier, in keyboard events.
6943 PREFIX is the string that represents this modifier in an event type symbol."
6944 (if (numberp event)
6945 (cond ((eq symbol 'control)
6946 (if (and (<= (downcase event) ?z)
6947 (>= (downcase event) ?a))
6948 (- (downcase event) ?a -1)
6949 (if (and (<= (downcase event) ?Z)
6950 (>= (downcase event) ?A))
6951 (- (downcase event) ?A -1)
6952 (logior (lsh 1 lshiftby) event))))
6953 ((eq symbol 'shift)
6954 (if (and (<= (downcase event) ?z)
6955 (>= (downcase event) ?a))
6956 (upcase event)
6957 (logior (lsh 1 lshiftby) event)))
6958 (t
6959 (logior (lsh 1 lshiftby) event)))
6960 (if (memq symbol (event-modifiers event))
6961 event
6962 (let ((event-type (if (symbolp event) event (car event))))
6963 (setq event-type (intern (concat prefix (symbol-name event-type))))
6964 (if (symbolp event)
6965 event-type
6966 (cons event-type (cdr event)))))))
6967
6968 (define-key function-key-map [?\C-x ?@ ?h] 'event-apply-hyper-modifier)
6969 (define-key function-key-map [?\C-x ?@ ?s] 'event-apply-super-modifier)
6970 (define-key function-key-map [?\C-x ?@ ?m] 'event-apply-meta-modifier)
6971 (define-key function-key-map [?\C-x ?@ ?a] 'event-apply-alt-modifier)
6972 (define-key function-key-map [?\C-x ?@ ?S] 'event-apply-shift-modifier)
6973 (define-key function-key-map [?\C-x ?@ ?c] 'event-apply-control-modifier)
6974 \f
6975 ;;;; Keypad support.
6976
6977 ;; Make the keypad keys act like ordinary typing keys. If people add
6978 ;; bindings for the function key symbols, then those bindings will
6979 ;; override these, so this shouldn't interfere with any existing
6980 ;; bindings.
6981
6982 ;; Also tell read-char how to handle these keys.
6983 (mapc
6984 (lambda (keypad-normal)
6985 (let ((keypad (nth 0 keypad-normal))
6986 (normal (nth 1 keypad-normal)))
6987 (put keypad 'ascii-character normal)
6988 (define-key function-key-map (vector keypad) (vector normal))))
6989 '((kp-0 ?0) (kp-1 ?1) (kp-2 ?2) (kp-3 ?3) (kp-4 ?4)
6990 (kp-5 ?5) (kp-6 ?6) (kp-7 ?7) (kp-8 ?8) (kp-9 ?9)
6991 (kp-space ?\s)
6992 (kp-tab ?\t)
6993 (kp-enter ?\r)
6994 (kp-multiply ?*)
6995 (kp-add ?+)
6996 (kp-separator ?,)
6997 (kp-subtract ?-)
6998 (kp-decimal ?.)
6999 (kp-divide ?/)
7000 (kp-equal ?=)
7001 ;; Do the same for various keys that are represented as symbols under
7002 ;; GUIs but naturally correspond to characters.
7003 (backspace 127)
7004 (delete 127)
7005 (tab ?\t)
7006 (linefeed ?\n)
7007 (clear ?\C-l)
7008 (return ?\C-m)
7009 (escape ?\e)
7010 ))
7011 \f
7012 ;;;;
7013 ;;;; forking a twin copy of a buffer.
7014 ;;;;
7015
7016 (defvar clone-buffer-hook nil
7017 "Normal hook to run in the new buffer at the end of `clone-buffer'.")
7018
7019 (defvar clone-indirect-buffer-hook nil
7020 "Normal hook to run in the new buffer at the end of `clone-indirect-buffer'.")
7021
7022 (defun clone-process (process &optional newname)
7023 "Create a twin copy of PROCESS.
7024 If NEWNAME is nil, it defaults to PROCESS' name;
7025 NEWNAME is modified by adding or incrementing <N> at the end as necessary.
7026 If PROCESS is associated with a buffer, the new process will be associated
7027 with the current buffer instead.
7028 Returns nil if PROCESS has already terminated."
7029 (setq newname (or newname (process-name process)))
7030 (if (string-match "<[0-9]+>\\'" newname)
7031 (setq newname (substring newname 0 (match-beginning 0))))
7032 (when (memq (process-status process) '(run stop open))
7033 (let* ((process-connection-type (process-tty-name process))
7034 (new-process
7035 (if (memq (process-status process) '(open))
7036 (let ((args (process-contact process t)))
7037 (setq args (plist-put args :name newname))
7038 (setq args (plist-put args :buffer
7039 (if (process-buffer process)
7040 (current-buffer))))
7041 (apply 'make-network-process args))
7042 (apply 'start-process newname
7043 (if (process-buffer process) (current-buffer))
7044 (process-command process)))))
7045 (set-process-query-on-exit-flag
7046 new-process (process-query-on-exit-flag process))
7047 (set-process-inherit-coding-system-flag
7048 new-process (process-inherit-coding-system-flag process))
7049 (set-process-filter new-process (process-filter process))
7050 (set-process-sentinel new-process (process-sentinel process))
7051 (set-process-plist new-process (copy-sequence (process-plist process)))
7052 new-process)))
7053
7054 ;; things to maybe add (currently partly covered by `funcall mode'):
7055 ;; - syntax-table
7056 ;; - overlays
7057 (defun clone-buffer (&optional newname display-flag)
7058 "Create and return a twin copy of the current buffer.
7059 Unlike an indirect buffer, the new buffer can be edited
7060 independently of the old one (if it is not read-only).
7061 NEWNAME is the name of the new buffer. It may be modified by
7062 adding or incrementing <N> at the end as necessary to create a
7063 unique buffer name. If nil, it defaults to the name of the
7064 current buffer, with the proper suffix. If DISPLAY-FLAG is
7065 non-nil, the new buffer is shown with `pop-to-buffer'. Trying to
7066 clone a file-visiting buffer, or a buffer whose major mode symbol
7067 has a non-nil `no-clone' property, results in an error.
7068
7069 Interactively, DISPLAY-FLAG is t and NEWNAME is the name of the
7070 current buffer with appropriate suffix. However, if a prefix
7071 argument is given, then the command prompts for NEWNAME in the
7072 minibuffer.
7073
7074 This runs the normal hook `clone-buffer-hook' in the new buffer
7075 after it has been set up properly in other respects."
7076 (interactive
7077 (progn
7078 (if buffer-file-name
7079 (error "Cannot clone a file-visiting buffer"))
7080 (if (get major-mode 'no-clone)
7081 (error "Cannot clone a buffer in %s mode" mode-name))
7082 (list (if current-prefix-arg
7083 (read-buffer "Name of new cloned buffer: " (current-buffer)))
7084 t)))
7085 (if buffer-file-name
7086 (error "Cannot clone a file-visiting buffer"))
7087 (if (get major-mode 'no-clone)
7088 (error "Cannot clone a buffer in %s mode" mode-name))
7089 (setq newname (or newname (buffer-name)))
7090 (if (string-match "<[0-9]+>\\'" newname)
7091 (setq newname (substring newname 0 (match-beginning 0))))
7092 (let ((buf (current-buffer))
7093 (ptmin (point-min))
7094 (ptmax (point-max))
7095 (pt (point))
7096 (mk (if mark-active (mark t)))
7097 (modified (buffer-modified-p))
7098 (mode major-mode)
7099 (lvars (buffer-local-variables))
7100 (process (get-buffer-process (current-buffer)))
7101 (new (generate-new-buffer (or newname (buffer-name)))))
7102 (save-restriction
7103 (widen)
7104 (with-current-buffer new
7105 (insert-buffer-substring buf)))
7106 (with-current-buffer new
7107 (narrow-to-region ptmin ptmax)
7108 (goto-char pt)
7109 (if mk (set-mark mk))
7110 (set-buffer-modified-p modified)
7111
7112 ;; Clone the old buffer's process, if any.
7113 (when process (clone-process process))
7114
7115 ;; Now set up the major mode.
7116 (funcall mode)
7117
7118 ;; Set up other local variables.
7119 (mapc (lambda (v)
7120 (condition-case () ;in case var is read-only
7121 (if (symbolp v)
7122 (makunbound v)
7123 (set (make-local-variable (car v)) (cdr v)))
7124 (error nil)))
7125 lvars)
7126
7127 ;; Run any hooks (typically set up by the major mode
7128 ;; for cloning to work properly).
7129 (run-hooks 'clone-buffer-hook))
7130 (if display-flag
7131 ;; Presumably the current buffer is shown in the selected frame, so
7132 ;; we want to display the clone elsewhere.
7133 (let ((same-window-regexps nil)
7134 (same-window-buffer-names))
7135 (pop-to-buffer new)))
7136 new))
7137
7138
7139 (defun clone-indirect-buffer (newname display-flag &optional norecord)
7140 "Create an indirect buffer that is a twin copy of the current buffer.
7141
7142 Give the indirect buffer name NEWNAME. Interactively, read NEWNAME
7143 from the minibuffer when invoked with a prefix arg. If NEWNAME is nil
7144 or if not called with a prefix arg, NEWNAME defaults to the current
7145 buffer's name. The name is modified by adding a `<N>' suffix to it
7146 or by incrementing the N in an existing suffix. Trying to clone a
7147 buffer whose major mode symbol has a non-nil `no-clone-indirect'
7148 property results in an error.
7149
7150 DISPLAY-FLAG non-nil means show the new buffer with `pop-to-buffer'.
7151 This is always done when called interactively.
7152
7153 Optional third arg NORECORD non-nil means do not put this buffer at the
7154 front of the list of recently selected ones."
7155 (interactive
7156 (progn
7157 (if (get major-mode 'no-clone-indirect)
7158 (error "Cannot indirectly clone a buffer in %s mode" mode-name))
7159 (list (if current-prefix-arg
7160 (read-buffer "Name of indirect buffer: " (current-buffer)))
7161 t)))
7162 (if (get major-mode 'no-clone-indirect)
7163 (error "Cannot indirectly clone a buffer in %s mode" mode-name))
7164 (setq newname (or newname (buffer-name)))
7165 (if (string-match "<[0-9]+>\\'" newname)
7166 (setq newname (substring newname 0 (match-beginning 0))))
7167 (let* ((name (generate-new-buffer-name newname))
7168 (buffer (make-indirect-buffer (current-buffer) name t)))
7169 (with-current-buffer buffer
7170 (run-hooks 'clone-indirect-buffer-hook))
7171 (when display-flag
7172 (pop-to-buffer buffer norecord))
7173 buffer))
7174
7175
7176 (defun clone-indirect-buffer-other-window (newname display-flag &optional norecord)
7177 "Like `clone-indirect-buffer' but display in another window."
7178 (interactive
7179 (progn
7180 (if (get major-mode 'no-clone-indirect)
7181 (error "Cannot indirectly clone a buffer in %s mode" mode-name))
7182 (list (if current-prefix-arg
7183 (read-buffer "Name of indirect buffer: " (current-buffer)))
7184 t)))
7185 (let ((pop-up-windows t))
7186 (clone-indirect-buffer newname display-flag norecord)))
7187
7188 \f
7189 ;;; Handling of Backspace and Delete keys.
7190
7191 (defcustom normal-erase-is-backspace 'maybe
7192 "Set the default behavior of the Delete and Backspace keys.
7193
7194 If set to t, Delete key deletes forward and Backspace key deletes
7195 backward.
7196
7197 If set to nil, both Delete and Backspace keys delete backward.
7198
7199 If set to 'maybe (which is the default), Emacs automatically
7200 selects a behavior. On window systems, the behavior depends on
7201 the keyboard used. If the keyboard has both a Backspace key and
7202 a Delete key, and both are mapped to their usual meanings, the
7203 option's default value is set to t, so that Backspace can be used
7204 to delete backward, and Delete can be used to delete forward.
7205
7206 If not running under a window system, customizing this option
7207 accomplishes a similar effect by mapping C-h, which is usually
7208 generated by the Backspace key, to DEL, and by mapping DEL to C-d
7209 via `keyboard-translate'. The former functionality of C-h is
7210 available on the F1 key. You should probably not use this
7211 setting if you don't have both Backspace, Delete and F1 keys.
7212
7213 Setting this variable with setq doesn't take effect. Programmatically,
7214 call `normal-erase-is-backspace-mode' (which see) instead."
7215 :type '(choice (const :tag "Off" nil)
7216 (const :tag "Maybe" maybe)
7217 (other :tag "On" t))
7218 :group 'editing-basics
7219 :version "21.1"
7220 :set (lambda (symbol value)
7221 ;; The fboundp is because of a problem with :set when
7222 ;; dumping Emacs. It doesn't really matter.
7223 (if (fboundp 'normal-erase-is-backspace-mode)
7224 (normal-erase-is-backspace-mode (or value 0))
7225 (set-default symbol value))))
7226
7227 (defun normal-erase-is-backspace-setup-frame (&optional frame)
7228 "Set up `normal-erase-is-backspace-mode' on FRAME, if necessary."
7229 (unless frame (setq frame (selected-frame)))
7230 (with-selected-frame frame
7231 (unless (terminal-parameter nil 'normal-erase-is-backspace)
7232 (normal-erase-is-backspace-mode
7233 (if (if (eq normal-erase-is-backspace 'maybe)
7234 (and (not noninteractive)
7235 (or (memq system-type '(ms-dos windows-nt))
7236 (memq window-system '(w32 ns))
7237 (and (memq window-system '(x))
7238 (fboundp 'x-backspace-delete-keys-p)
7239 (x-backspace-delete-keys-p))
7240 ;; If the terminal Emacs is running on has erase char
7241 ;; set to ^H, use the Backspace key for deleting
7242 ;; backward, and the Delete key for deleting forward.
7243 (and (null window-system)
7244 (eq tty-erase-char ?\^H))))
7245 normal-erase-is-backspace)
7246 1 0)))))
7247
7248 (define-minor-mode normal-erase-is-backspace-mode
7249 "Toggle the Erase and Delete mode of the Backspace and Delete keys.
7250 With a prefix argument ARG, enable this feature if ARG is
7251 positive, and disable it otherwise. If called from Lisp, enable
7252 the mode if ARG is omitted or nil.
7253
7254 On window systems, when this mode is on, Delete is mapped to C-d
7255 and Backspace is mapped to DEL; when this mode is off, both
7256 Delete and Backspace are mapped to DEL. (The remapping goes via
7257 `local-function-key-map', so binding Delete or Backspace in the
7258 global or local keymap will override that.)
7259
7260 In addition, on window systems, the bindings of C-Delete, M-Delete,
7261 C-M-Delete, C-Backspace, M-Backspace, and C-M-Backspace are changed in
7262 the global keymap in accordance with the functionality of Delete and
7263 Backspace. For example, if Delete is remapped to C-d, which deletes
7264 forward, C-Delete is bound to `kill-word', but if Delete is remapped
7265 to DEL, which deletes backward, C-Delete is bound to
7266 `backward-kill-word'.
7267
7268 If not running on a window system, a similar effect is accomplished by
7269 remapping C-h (normally produced by the Backspace key) and DEL via
7270 `keyboard-translate': if this mode is on, C-h is mapped to DEL and DEL
7271 to C-d; if it's off, the keys are not remapped.
7272
7273 When not running on a window system, and this mode is turned on, the
7274 former functionality of C-h is available on the F1 key. You should
7275 probably not turn on this mode on a text-only terminal if you don't
7276 have both Backspace, Delete and F1 keys.
7277
7278 See also `normal-erase-is-backspace'."
7279 :variable ((eq (terminal-parameter nil 'normal-erase-is-backspace) 1)
7280 . (lambda (v)
7281 (setf (terminal-parameter nil 'normal-erase-is-backspace)
7282 (if v 1 0))))
7283 (let ((enabled (eq 1 (terminal-parameter
7284 nil 'normal-erase-is-backspace))))
7285
7286 (cond ((or (memq window-system '(x w32 ns pc))
7287 (memq system-type '(ms-dos windows-nt)))
7288 (let ((bindings
7289 `(([M-delete] [M-backspace])
7290 ([C-M-delete] [C-M-backspace])
7291 ([?\e C-delete] [?\e C-backspace]))))
7292
7293 (if enabled
7294 (progn
7295 (define-key local-function-key-map [delete] [deletechar])
7296 (define-key local-function-key-map [kp-delete] [?\C-d])
7297 (define-key local-function-key-map [backspace] [?\C-?])
7298 (dolist (b bindings)
7299 ;; Not sure if input-decode-map is really right, but
7300 ;; keyboard-translate-table (used below) only works
7301 ;; for integer events, and key-translation-table is
7302 ;; global (like the global-map, used earlier).
7303 (define-key input-decode-map (car b) nil)
7304 (define-key input-decode-map (cadr b) nil)))
7305 (define-key local-function-key-map [delete] [?\C-?])
7306 (define-key local-function-key-map [kp-delete] [?\C-?])
7307 (define-key local-function-key-map [backspace] [?\C-?])
7308 (dolist (b bindings)
7309 (define-key input-decode-map (car b) (cadr b))
7310 (define-key input-decode-map (cadr b) (car b))))))
7311 (t
7312 (if enabled
7313 (progn
7314 (keyboard-translate ?\C-h ?\C-?)
7315 (keyboard-translate ?\C-? ?\C-d))
7316 (keyboard-translate ?\C-h ?\C-h)
7317 (keyboard-translate ?\C-? ?\C-?))))
7318
7319 (if (called-interactively-p 'interactive)
7320 (message "Delete key deletes %s"
7321 (if (eq 1 (terminal-parameter nil 'normal-erase-is-backspace))
7322 "forward" "backward")))))
7323 \f
7324 (defvar vis-mode-saved-buffer-invisibility-spec nil
7325 "Saved value of `buffer-invisibility-spec' when Visible mode is on.")
7326
7327 (define-minor-mode read-only-mode
7328 "Change whether the current buffer is read-only.
7329 With prefix argument ARG, make the buffer read-only if ARG is
7330 positive, otherwise make it writable. If buffer is read-only
7331 and `view-read-only' is non-nil, enter view mode.
7332
7333 Do not call this from a Lisp program unless you really intend to
7334 do the same thing as the \\[read-only-mode] command, including
7335 possibly enabling or disabling View mode. Also, note that this
7336 command works by setting the variable `buffer-read-only', which
7337 does not affect read-only regions caused by text properties. To
7338 ignore read-only status in a Lisp program (whether due to text
7339 properties or buffer state), bind `inhibit-read-only' temporarily
7340 to a non-nil value."
7341 :variable buffer-read-only
7342 (cond
7343 ((and (not buffer-read-only) view-mode)
7344 (View-exit-and-edit)
7345 (make-local-variable 'view-read-only)
7346 (setq view-read-only t)) ; Must leave view mode.
7347 ((and buffer-read-only view-read-only
7348 ;; If view-mode is already active, `view-mode-enter' is a nop.
7349 (not view-mode)
7350 (not (eq (get major-mode 'mode-class) 'special)))
7351 (view-mode-enter))))
7352
7353 (define-minor-mode visible-mode
7354 "Toggle making all invisible text temporarily visible (Visible mode).
7355 With a prefix argument ARG, enable Visible mode if ARG is
7356 positive, and disable it otherwise. If called from Lisp, enable
7357 the mode if ARG is omitted or nil.
7358
7359 This mode works by saving the value of `buffer-invisibility-spec'
7360 and setting it to nil."
7361 :lighter " Vis"
7362 :group 'editing-basics
7363 (when (local-variable-p 'vis-mode-saved-buffer-invisibility-spec)
7364 (setq buffer-invisibility-spec vis-mode-saved-buffer-invisibility-spec)
7365 (kill-local-variable 'vis-mode-saved-buffer-invisibility-spec))
7366 (when visible-mode
7367 (set (make-local-variable 'vis-mode-saved-buffer-invisibility-spec)
7368 buffer-invisibility-spec)
7369 (setq buffer-invisibility-spec nil)))
7370 \f
7371 ;; Minibuffer prompt stuff.
7372
7373 ;;(defun minibuffer-prompt-modification (start end)
7374 ;; (error "You cannot modify the prompt"))
7375 ;;
7376 ;;
7377 ;;(defun minibuffer-prompt-insertion (start end)
7378 ;; (let ((inhibit-modification-hooks t))
7379 ;; (delete-region start end)
7380 ;; ;; Discard undo information for the text insertion itself
7381 ;; ;; and for the text deletion.above.
7382 ;; (when (consp buffer-undo-list)
7383 ;; (setq buffer-undo-list (cddr buffer-undo-list)))
7384 ;; (message "You cannot modify the prompt")))
7385 ;;
7386 ;;
7387 ;;(setq minibuffer-prompt-properties
7388 ;; (list 'modification-hooks '(minibuffer-prompt-modification)
7389 ;; 'insert-in-front-hooks '(minibuffer-prompt-insertion)))
7390
7391 \f
7392 ;;;; Problematic external packages.
7393
7394 ;; rms says this should be done by specifying symbols that define
7395 ;; versions together with bad values. This is therefore not as
7396 ;; flexible as it could be. See the thread:
7397 ;; http://lists.gnu.org/archive/html/emacs-devel/2007-08/msg00300.html
7398 (defconst bad-packages-alist
7399 ;; Not sure exactly which semantic versions have problems.
7400 ;; Definitely 2.0pre3, probably all 2.0pre's before this.
7401 '((semantic semantic-version "\\`2\\.0pre[1-3]\\'"
7402 "The version of `semantic' loaded does not work in Emacs 22.
7403 It can cause constant high CPU load.
7404 Upgrade to at least Semantic 2.0pre4 (distributed with CEDET 1.0pre4).")
7405 ;; CUA-mode does not work with GNU Emacs version 22.1 and newer.
7406 ;; Except for version 1.2, all of the 1.x and 2.x version of cua-mode
7407 ;; provided the `CUA-mode' feature. Since this is no longer true,
7408 ;; we can warn the user if the `CUA-mode' feature is ever provided.
7409 (CUA-mode t nil
7410 "CUA-mode is now part of the standard GNU Emacs distribution,
7411 so you can now enable CUA via the Options menu or by customizing `cua-mode'.
7412
7413 You have loaded an older version of CUA-mode which does not work
7414 correctly with this version of Emacs. You should remove the old
7415 version and use the one distributed with Emacs."))
7416 "Alist of packages known to cause problems in this version of Emacs.
7417 Each element has the form (PACKAGE SYMBOL REGEXP STRING).
7418 PACKAGE is either a regular expression to match file names, or a
7419 symbol (a feature name), like for `with-eval-after-load'.
7420 SYMBOL is either the name of a string variable, or `t'. Upon
7421 loading PACKAGE, if SYMBOL is t or matches REGEXP, display a
7422 warning using STRING as the message.")
7423
7424 (defun bad-package-check (package)
7425 "Run a check using the element from `bad-packages-alist' matching PACKAGE."
7426 (condition-case nil
7427 (let* ((list (assoc package bad-packages-alist))
7428 (symbol (nth 1 list)))
7429 (and list
7430 (boundp symbol)
7431 (or (eq symbol t)
7432 (and (stringp (setq symbol (eval symbol)))
7433 (string-match-p (nth 2 list) symbol)))
7434 (display-warning package (nth 3 list) :warning)))
7435 (error nil)))
7436
7437 (dolist (elem bad-packages-alist)
7438 (let ((pkg (car elem)))
7439 (with-eval-after-load pkg
7440 (bad-package-check pkg))))
7441
7442 \f
7443 ;;; Generic dispatcher commands
7444
7445 ;; Macro `define-alternatives' is used to create generic commands.
7446 ;; Generic commands are these (like web, mail, news, encrypt, irc, etc.)
7447 ;; that can have different alternative implementations where choosing
7448 ;; among them is exclusively a matter of user preference.
7449
7450 ;; (define-alternatives COMMAND) creates a new interactive command
7451 ;; M-x COMMAND and a customizable variable COMMAND-alternatives.
7452 ;; Typically, the user will not need to customize this variable; packages
7453 ;; wanting to add alternative implementations should use
7454 ;;
7455 ;; ;;;###autoload (push '("My impl name" . my-impl-symbol) COMMAND-alternatives
7456
7457 (defmacro define-alternatives (command &rest customizations)
7458 "Define new command `COMMAND'.
7459 The variable `COMMAND-alternatives' will contain alternative
7460 implementations of COMMAND, so that running `C-u M-x COMMAND'
7461 will allow the user to chose among them.
7462 CUSTOMIZATIONS, if non-nil, should be composed of alternating
7463 `defcustom' keywords and values to add to the declaration of
7464 `COMMAND-alternatives' (typically :group and :version)."
7465 (let* ((command-name (symbol-name command))
7466 (varalt-name (concat command-name "-alternatives"))
7467 (varalt-sym (intern varalt-name))
7468 (varimp-sym (intern (concat command-name "--implementation"))))
7469 `(progn
7470
7471 (defcustom ,varalt-sym nil
7472 ,(format "Alist of alternative implementations for the `%s' command.
7473
7474 Each entry must be a pair (ALTNAME . ALTFUN), where:
7475 ALTNAME - The name shown at user to describe the alternative implementation.
7476 ALTFUN - The function called to implement this alternative."
7477 command-name)
7478 :type '(alist :key-type string :value-type function)
7479 ,@customizations)
7480
7481 (defvar ,varimp-sym nil "Internal use only.")
7482
7483 (defun ,command (&optional arg)
7484 ,(format "Run generic command `%s'.
7485 If used for the first time, or with interactive ARG, ask the user which
7486 implementation to use for `%s'. The variable `%s'
7487 contains the list of implementations currently supported for this command."
7488 command-name command-name varalt-name)
7489 (interactive "P")
7490 (when (or arg (null ,varimp-sym))
7491 (let ((val (completing-read
7492 ,(format "Select implementation for command `%s': " command-name)
7493 ,varalt-sym nil t)))
7494 (unless (string-equal val "")
7495 (customize-save-variable ',varimp-sym
7496 (cdr (assoc-string val ,varalt-sym))))))
7497 (if ,varimp-sym
7498 (funcall ,varimp-sym)
7499 (message ,(format "No implementation selected for command `%s'"
7500 command-name)))))))
7501
7502 (provide 'simple)
7503
7504 ;;; simple.el ends here