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