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