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