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