(mail-extr-nuke-outside-range,
[bpt/emacs.git] / lisp / simple.el
CommitLineData
c88ab9ce
ER
1;;; simple.el --- basic editing commands for Emacs
2
f8c25f1b 3;; Copyright (C) 1985, 86, 87, 93, 94, 95 Free Software Foundation, Inc.
2076c87c
JB
4
5;; This file is part of GNU Emacs.
6
7;; GNU Emacs is free software; you can redistribute it and/or modify
8;; it under the terms of the GNU General Public License as published by
3a801d0c 9;; the Free Software Foundation; either version 2, or (at your option)
2076c87c
JB
10;; any later version.
11
12;; GNU Emacs is distributed in the hope that it will be useful,
13;; but WITHOUT ANY WARRANTY; without even the implied warranty of
14;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15;; GNU General Public License for more details.
16
17;; You should have received a copy of the GNU General Public License
18;; along with GNU Emacs; see the file COPYING. If not, write to
19;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
20
d9ecc911
ER
21;;; Commentary:
22
23;; A grab-bag of basic Emacs commands not specifically related to some
24;; major mode or to file-handling.
25
3a801d0c 26;;; Code:
2076c87c 27
30bb9754 28(defun newline (&optional arg)
d133d835 29 "Insert a newline, and move to left margin of the new line if it's blank.
30bb9754
BG
30The newline is marked with the text-property `hard'.
31With arg, insert that many newlines.
32In Auto Fill mode, if no numeric arg, break the preceding line if it's long."
33 (interactive "*P")
4c4cbf11 34 (barf-if-buffer-read-only)
30bb9754
BG
35 ;; Inserting a newline at the end of a line produces better redisplay in
36 ;; try_window_id than inserting at the beginning of a line, and the textual
37 ;; result is the same. So, if we're at beginning of line, pretend to be at
38 ;; the end of the previous line.
39 (let ((flag (and (not (bobp))
40 (bolp)
41 (< (or (previous-property-change (point)) -2)
d133d835
RS
42 (- (point) 2))))
43 (was-page-start (and (bolp)
44 (looking-at page-delimiter)))
45 (beforepos (point)))
30bb9754
BG
46 (if flag (backward-char 1))
47 ;; Call self-insert so that auto-fill, abbrev expansion etc. happens.
48 ;; Set last-command-char to tell self-insert what to insert.
49 (let ((last-command-char ?\n)
50 ;; Don't auto-fill if we have a numeric argument.
3954fff9
RS
51 ;; Also not if flag is true (it would fill wrong line);
52 ;; there is no need to since we're at BOL.
53 (auto-fill-function (if (or arg flag) nil auto-fill-function)))
4cc9d0dc
RS
54 (unwind-protect
55 (self-insert-command (prefix-numeric-value arg))
56 ;; If we get an error in self-insert-command, put point at right place.
57 (if flag (forward-char 1))))
58 ;; If we did *not* get an error, cancel that forward-char.
59 (if flag (backward-char 1))
30bb9754
BG
60 ;; Mark the newline(s) `hard'.
61 (if use-hard-newlines
62 (let* ((from (- (point) (if arg (prefix-numeric-value arg) 1)))
63 (sticky (get-text-property from 'rear-nonsticky)))
64 (put-text-property from (point) 'hard 't)
65 ;; If rear-nonsticky is not "t", add 'hard to rear-nonsticky list
66 (if (and (listp sticky) (not (memq 'hard sticky)))
67 (put-text-property from (point) 'rear-nonsticky
68 (cons 'hard sticky)))))
d133d835
RS
69 ;; If the newline leaves the previous line blank,
70 ;; and we have a left margin, delete that from the blank line.
71 (or flag
72 (save-excursion
73 (goto-char beforepos)
74 (beginning-of-line)
75 (and (looking-at "[ \t]$")
76 (> (current-left-margin) 0)
77 (delete-region (point) (progn (end-of-line) (point))))))
78 (if flag (forward-char 1))
79 ;; Indent the line after the newline, except in one case:
80 ;; when we added the newline at the beginning of a line
81 ;; which starts a page.
82 (or was-page-start
83 (move-to-left-margin nil t)))
30bb9754
BG
84 nil)
85
2076c87c 86(defun open-line (arg)
ff1fbe3e 87 "Insert a newline and leave point before it.
3db1e3b5 88If there is a fill prefix and/or a left-margin, insert them on the new line
d133d835 89if the line would have been blank.
616ed245 90With arg N, insert N newlines."
2076c87c 91 (interactive "*p")
616ed245 92 (let* ((do-fill-prefix (and fill-prefix (bolp)))
3db1e3b5 93 (do-left-margin (and (bolp) (> (current-left-margin) 0)))
28191e20 94 (loc (point)))
d133d835
RS
95 (newline arg)
96 (goto-char loc)
28191e20 97 (while (> arg 0)
d133d835
RS
98 (cond ((bolp)
99 (if do-left-margin (indent-to (current-left-margin)))
100 (if do-fill-prefix (insert-and-inherit fill-prefix))))
101 (forward-line 1)
28191e20 102 (setq arg (1- arg)))
d133d835
RS
103 (goto-char loc)
104 (end-of-line)))
2076c87c
JB
105
106(defun split-line ()
107 "Split current line, moving portion beyond point vertically down."
108 (interactive "*")
109 (skip-chars-forward " \t")
110 (let ((col (current-column))
111 (pos (point)))
28191e20 112 (newline 1)
2076c87c
JB
113 (indent-to col 0)
114 (goto-char pos)))
115
116(defun quoted-insert (arg)
117 "Read next input character and insert it.
ff1fbe3e 118This is useful for inserting control characters.
dbc4e1c1 119You may also type up to 3 octal digits, to insert a character with that code.
b6a22db0
JB
120
121In overwrite mode, this function inserts the character anyway, and
122does not handle octal digits specially. This means that if you use
123overwrite as your normal editing mode, you can use this function to
124insert characters when necessary.
125
126In binary overwrite mode, this function does overwrite, and octal
127digits are interpreted as a character code. This is supposed to make
128this function useful in editing binary files."
2076c87c 129 (interactive "*p")
b6a22db0
JB
130 (let ((char (if (or (not overwrite-mode)
131 (eq overwrite-mode 'overwrite-mode-binary))
132 (read-quoted-char)
133 (read-char))))
ec321cad
RS
134 (if (> arg 0)
135 (if (eq overwrite-mode 'overwrite-mode-binary)
136 (delete-char arg)))
137 (while (> arg 0)
138 (insert-and-inherit char)
139 (setq arg (1- arg)))))
2076c87c
JB
140
141(defun delete-indentation (&optional arg)
142 "Join this line to previous and fix up whitespace at join.
ccc58657 143If there is a fill prefix, delete it from the beginning of this line.
2076c87c
JB
144With argument, join this line to following line."
145 (interactive "*P")
146 (beginning-of-line)
147 (if arg (forward-line 1))
148 (if (eq (preceding-char) ?\n)
149 (progn
150 (delete-region (point) (1- (point)))
ccc58657
RS
151 ;; If the second line started with the fill prefix,
152 ;; delete the prefix.
153 (if (and fill-prefix
01b8e020 154 (<= (+ (point) (length fill-prefix)) (point-max))
ccc58657
RS
155 (string= fill-prefix
156 (buffer-substring (point)
157 (+ (point) (length fill-prefix)))))
158 (delete-region (point) (+ (point) (length fill-prefix))))
2076c87c
JB
159 (fixup-whitespace))))
160
161(defun fixup-whitespace ()
162 "Fixup white space between objects around point.
163Leave one space or none, according to the context."
164 (interactive "*")
165 (save-excursion
166 (delete-horizontal-space)
167 (if (or (looking-at "^\\|\\s)")
168 (save-excursion (forward-char -1)
169 (looking-at "$\\|\\s(\\|\\s'")))
170 nil
171 (insert ?\ ))))
172
173(defun delete-horizontal-space ()
174 "Delete all spaces and tabs around point."
175 (interactive "*")
176 (skip-chars-backward " \t")
177 (delete-region (point) (progn (skip-chars-forward " \t") (point))))
178
179(defun just-one-space ()
180 "Delete all spaces and tabs around point, leaving one space."
181 (interactive "*")
182 (skip-chars-backward " \t")
183 (if (= (following-char) ? )
184 (forward-char 1)
185 (insert ? ))
186 (delete-region (point) (progn (skip-chars-forward " \t") (point))))
187
188(defun delete-blank-lines ()
189 "On blank line, delete all surrounding blank lines, leaving just one.
190On isolated blank line, delete that one.
6d30d416 191On nonblank line, delete any immediately following blank lines."
2076c87c
JB
192 (interactive "*")
193 (let (thisblank singleblank)
194 (save-excursion
195 (beginning-of-line)
196 (setq thisblank (looking-at "[ \t]*$"))
70e14c01 197 ;; Set singleblank if there is just one blank line here.
2076c87c
JB
198 (setq singleblank
199 (and thisblank
200 (not (looking-at "[ \t]*\n[ \t]*$"))
201 (or (bobp)
202 (progn (forward-line -1)
203 (not (looking-at "[ \t]*$")))))))
70e14c01 204 ;; Delete preceding blank lines, and this one too if it's the only one.
2076c87c
JB
205 (if thisblank
206 (progn
207 (beginning-of-line)
208 (if singleblank (forward-line 1))
209 (delete-region (point)
210 (if (re-search-backward "[^ \t\n]" nil t)
211 (progn (forward-line 1) (point))
212 (point-min)))))
70e14c01
JB
213 ;; Delete following blank lines, unless the current line is blank
214 ;; and there are no following blank lines.
2076c87c
JB
215 (if (not (and thisblank singleblank))
216 (save-excursion
217 (end-of-line)
218 (forward-line 1)
219 (delete-region (point)
220 (if (re-search-forward "[^ \t\n]" nil t)
221 (progn (beginning-of-line) (point))
70e14c01
JB
222 (point-max)))))
223 ;; Handle the special case where point is followed by newline and eob.
224 ;; Delete the line, leaving point at eob.
225 (if (looking-at "^[ \t]*\n\\'")
226 (delete-region (point) (point-max)))))
2076c87c
JB
227
228(defun back-to-indentation ()
229 "Move point to the first non-whitespace character on this line."
230 (interactive)
231 (beginning-of-line 1)
232 (skip-chars-forward " \t"))
233
234(defun newline-and-indent ()
235 "Insert a newline, then indent according to major mode.
ff1fbe3e 236Indentation is done using the value of `indent-line-function'.
2076c87c 237In programming language modes, this is the same as TAB.
ff1fbe3e 238In some text modes, where TAB inserts a tab, this command indents to the
eed5698b 239column specified by the function `current-left-margin'."
2076c87c
JB
240 (interactive "*")
241 (delete-region (point) (progn (skip-chars-backward " \t") (point)))
46947372 242 (newline)
2076c87c
JB
243 (indent-according-to-mode))
244
245(defun reindent-then-newline-and-indent ()
246 "Reindent current line, insert newline, then indent the new line.
247Indentation of both lines is done according to the current major mode,
ff1fbe3e 248which means calling the current value of `indent-line-function'.
2076c87c
JB
249In programming language modes, this is the same as TAB.
250In some text modes, where TAB inserts a tab, this indents to the
eed5698b 251column specified by the function `current-left-margin'."
2076c87c
JB
252 (interactive "*")
253 (save-excursion
254 (delete-region (point) (progn (skip-chars-backward " \t") (point)))
255 (indent-according-to-mode))
46947372 256 (newline)
2076c87c
JB
257 (indent-according-to-mode))
258
dff7d67f
RS
259;; Internal subroutine of delete-char
260(defun kill-forward-chars (arg)
261 (if (listp arg) (setq arg (car arg)))
262 (if (eq arg '-) (setq arg -1))
263 (kill-region (point) (+ (point) arg)))
264
265;; Internal subroutine of backward-delete-char
266(defun kill-backward-chars (arg)
267 (if (listp arg) (setq arg (car arg)))
268 (if (eq arg '-) (setq arg -1))
269 (kill-region (point) (- (point) arg)))
270
2076c87c
JB
271(defun backward-delete-char-untabify (arg &optional killp)
272 "Delete characters backward, changing tabs into spaces.
273Delete ARG chars, and kill (save in kill ring) if KILLP is non-nil.
274Interactively, ARG is the prefix arg (default 1)
aba05ae4 275and KILLP is t if a prefix arg was specified."
2076c87c
JB
276 (interactive "*p\nP")
277 (let ((count arg))
278 (save-excursion
279 (while (and (> count 0) (not (bobp)))
280 (if (= (preceding-char) ?\t)
281 (let ((col (current-column)))
282 (forward-char -1)
283 (setq col (- col (current-column)))
284 (insert-char ?\ col)
285 (delete-char 1)))
286 (forward-char -1)
287 (setq count (1- count)))))
288 (delete-backward-char arg killp)
289 ;; In overwrite mode, back over columns while clearing them out,
290 ;; unless at end of line.
291 (and overwrite-mode (not (eolp))
292 (save-excursion (insert-char ?\ arg))))
293
294(defun zap-to-char (arg char)
295 "Kill up to and including ARG'th occurrence of CHAR.
296Goes backward if ARG is negative; error if CHAR not found."
297 (interactive "p\ncZap to char: ")
298 (kill-region (point) (progn
299 (search-forward (char-to-string char) nil nil arg)
300; (goto-char (if (> arg 0) (1- (point)) (1+ (point))))
301 (point))))
302
303(defun beginning-of-buffer (&optional arg)
304 "Move point to the beginning of the buffer; leave mark at previous position.
c66587fe
RS
305With arg N, put point N/10 of the way from the beginning.
306
307If the buffer is narrowed, this command uses the beginning and size
308of the accessible part of the buffer.
ff1fbe3e
RS
309
310Don't use this command in Lisp programs!
2076c87c
JB
311\(goto-char (point-min)) is faster and avoids clobbering the mark."
312 (interactive "P")
313 (push-mark)
c66587fe
RS
314 (let ((size (- (point-max) (point-min))))
315 (goto-char (if arg
316 (+ (point-min)
317 (if (> size 10000)
318 ;; Avoid overflow for large buffer sizes!
319 (* (prefix-numeric-value arg)
320 (/ size 10))
321 (/ (+ 10 (* size (prefix-numeric-value arg))) 10)))
322 (point-min))))
2076c87c
JB
323 (if arg (forward-line 1)))
324
325(defun end-of-buffer (&optional arg)
326 "Move point to the end of the buffer; leave mark at previous position.
c66587fe
RS
327With arg N, put point N/10 of the way from the end.
328
329If the buffer is narrowed, this command uses the beginning and size
330of the accessible part of the buffer.
ff1fbe3e
RS
331
332Don't use this command in Lisp programs!
2076c87c
JB
333\(goto-char (point-max)) is faster and avoids clobbering the mark."
334 (interactive "P")
335 (push-mark)
c66587fe
RS
336 (let ((size (- (point-max) (point-min))))
337 (goto-char (if arg
338 (- (point-max)
339 (if (> size 10000)
340 ;; Avoid overflow for large buffer sizes!
341 (* (prefix-numeric-value arg)
342 (/ size 10))
343 (/ (* size (prefix-numeric-value arg)) 10)))
344 (point-max))))
3a801d0c
ER
345 ;; If we went to a place in the middle of the buffer,
346 ;; adjust it to the beginning of a line.
2076c87c 347 (if arg (forward-line 1)
3a801d0c
ER
348 ;; If the end of the buffer is not already on the screen,
349 ;; then scroll specially to put it near, but not at, the bottom.
350 (if (let ((old-point (point)))
351 (save-excursion
352 (goto-char (window-start))
353 (vertical-motion (window-height))
354 (< (point) old-point)))
97dfc68c
RS
355 (progn
356 (overlay-recenter (point))
357 (recenter -3)))))
2076c87c
JB
358
359(defun mark-whole-buffer ()
70e14c01
JB
360 "Put point at beginning and mark at end of buffer.
361You probably should not use this function in Lisp programs;
362it is usually a mistake for a Lisp function to use any subroutine
363that uses or sets the mark."
2076c87c
JB
364 (interactive)
365 (push-mark (point))
fd0f4056 366 (push-mark (point-max) nil t)
2076c87c
JB
367 (goto-char (point-min)))
368
369(defun count-lines-region (start end)
eb8c3be9 370 "Print number of lines and characters in the region."
2076c87c
JB
371 (interactive "r")
372 (message "Region has %d lines, %d characters"
373 (count-lines start end) (- end start)))
374
375(defun what-line ()
2578be76 376 "Print the current buffer line number and narrowed line number of point."
2076c87c 377 (interactive)
2578be76 378 (let ((opoint (point)) start)
2076c87c 379 (save-excursion
2578be76
RS
380 (save-restriction
381 (goto-char (point-min))
382 (widen)
383 (beginning-of-line)
384 (setq start (point))
385 (goto-char opoint)
386 (beginning-of-line)
387 (if (/= start 1)
388 (message "line %d (narrowed line %d)"
389 (1+ (count-lines 1 (point)))
390 (1+ (count-lines start (point))))
391 (message "Line %d" (1+ (count-lines 1 (point)))))))))
392
2076c87c
JB
393
394(defun count-lines (start end)
395 "Return number of lines between START and END.
396This is usually the number of newlines between them,
ff1fbe3e 397but can be one more if START is not equal to END
2076c87c 398and the greater of them is not at the start of a line."
e406700d
RS
399 (save-excursion
400 (save-restriction
401 (narrow-to-region start end)
402 (goto-char (point-min))
403 (if (eq selective-display t)
404 (save-match-data
dde92ca6
RS
405 (let ((done 0))
406 (while (re-search-forward "[\n\C-m]" nil t 40)
407 (setq done (+ 40 done)))
408 (while (re-search-forward "[\n\C-m]" nil t 1)
409 (setq done (+ 1 done)))
043efc41
RS
410 (goto-char (point-max))
411 (if (and (/= start end)
412 (not (bolp)))
413 (1+ done)
e406700d
RS
414 done)))
415 (- (buffer-size) (forward-line (buffer-size)))))))
2076c87c
JB
416
417(defun what-cursor-position ()
418 "Print info on cursor position (on screen and within buffer)."
419 (interactive)
420 (let* ((char (following-char))
421 (beg (point-min))
422 (end (point-max))
423 (pos (point))
424 (total (buffer-size))
425 (percent (if (> total 50000)
426 ;; Avoid overflow from multiplying by 100!
427 (/ (+ (/ total 200) (1- pos)) (max (/ total 100) 1))
428 (/ (+ (/ total 2) (* 100 (1- pos))) (max total 1))))
429 (hscroll (if (= (window-hscroll) 0)
430 ""
431 (format " Hscroll=%d" (window-hscroll))))
432 (col (current-column)))
433 (if (= pos end)
434 (if (or (/= beg 1) (/= end (1+ total)))
435 (message "point=%d of %d(%d%%) <%d - %d> column %d %s"
436 pos total percent beg end col hscroll)
437 (message "point=%d of %d(%d%%) column %d %s"
438 pos total percent col hscroll))
439 (if (or (/= beg 1) (/= end (1+ total)))
2a83421c
RS
440 (message "Char: %s (0%o, %d, 0x%x) point=%d of %d(%d%%) <%d - %d> column %d %s"
441 (single-key-description char) char char char pos total percent beg end col hscroll)
442 (message "Char: %s (0%o, %d, 0x%x) point=%d of %d(%d%%) column %d %s"
443 (single-key-description char) char char char pos total percent col hscroll)))))
2076c87c
JB
444
445(defun fundamental-mode ()
446 "Major mode not specialized for anything in particular.
447Other major modes are defined by comparison with this one."
448 (interactive)
449 (kill-all-local-variables))
450
4578d35d 451(defvar read-expression-map (cons 'keymap minibuffer-local-map)
854c16c5
RS
452 "Minibuffer keymap used for reading Lisp expressions.")
453(define-key read-expression-map "\M-\t" 'lisp-complete-symbol)
454
2076c87c
JB
455(put 'eval-expression 'disabled t)
456
8570b0ca
RM
457(defvar read-expression-history nil)
458
459;; We define this, rather than making `eval' interactive,
2076c87c
JB
460;; for the sake of completion of names like eval-region, eval-current-buffer.
461(defun eval-expression (expression)
462 "Evaluate EXPRESSION and print value in minibuffer.
eb57c304 463Value is also consed on to front of the variable `values'."
adca5fa6 464 (interactive
b387ef9a
RS
465 (list (read-from-minibuffer "Eval: "
466 nil read-expression-map t
467 'read-expression-history)))
2076c87c
JB
468 (setq values (cons (eval expression) values))
469 (prin1 (car values) t))
470
471(defun edit-and-eval-command (prompt command)
472 "Prompting with PROMPT, let user edit COMMAND and eval result.
473COMMAND is a Lisp expression. Let user edit that expression in
474the minibuffer, then read and evaluate the result."
b387ef9a
RS
475 (let ((command (read-from-minibuffer prompt
476 (prin1-to-string command)
477 read-expression-map t
478 '(command-history . 1))))
5d6c83ae
KH
479 ;; If command was added to command-history as a string,
480 ;; get rid of that. We want only evallable expressions there.
481 (if (stringp (car command-history))
482 (setq command-history (cdr command-history)))
483
484 ;; If command to be redone does not match front of history,
485 ;; add it to the history.
486 (or (equal command (car command-history))
487 (setq command-history (cons command command-history)))
2076c87c
JB
488 (eval command)))
489
ebb61177 490(defun repeat-complex-command (arg)
2076c87c
JB
491 "Edit and re-evaluate last complex command, or ARGth from last.
492A complex command is one which used the minibuffer.
493The command is placed in the minibuffer as a Lisp form for editing.
494The result is executed, repeating the command as changed.
495If the command has been changed or is not the most recent previous command
496it is added to the front of the command history.
eb6e9899
RS
497You can use the minibuffer history commands \\<minibuffer-local-map>\\[next-history-element] and \\[previous-history-element]
498to get different commands to edit and resubmit."
2076c87c 499 (interactive "p")
ba343182 500 (let ((elt (nth (1- arg) command-history))
ebb61177 501 (minibuffer-history-position arg)
ba343182 502 (minibuffer-history-sexp-flag t)
2076c87c
JB
503 newcmd)
504 (if elt
854c16c5 505 (progn
eab22e27 506 (setq newcmd
7908d27c
RS
507 (let ((print-level nil))
508 (read-from-minibuffer
509 "Redo: " (prin1-to-string elt) read-expression-map t
510 (cons 'command-history arg))))
eab22e27 511
db16f109
RS
512 ;; If command was added to command-history as a string,
513 ;; get rid of that. We want only evallable expressions there.
514 (if (stringp (car command-history))
515 (setq command-history (cdr command-history)))
516
517 ;; If command to be redone does not match front of history,
518 ;; add it to the history.
519 (or (equal newcmd (car command-history))
520 (setq command-history (cons newcmd command-history)))
2076c87c
JB
521 (eval newcmd))
522 (ding))))
e91f80c4 523\f
854c16c5
RS
524(defvar minibuffer-history nil
525 "Default minibuffer history list.
526This is used for all minibuffer input
527except when an alternate history list is specified.")
528(defvar minibuffer-history-sexp-flag nil
c2d4b6d9 529 "Non-nil when doing history operations on `command-history'.
854c16c5
RS
530More generally, indicates that the history list being acted on
531contains expressions rather than strings.")
e91f80c4
RS
532(setq minibuffer-history-variable 'minibuffer-history)
533(setq minibuffer-history-position nil)
854c16c5 534(defvar minibuffer-history-search-history nil)
e91f80c4 535
29929437 536(mapcar
d0678801
RM
537 (lambda (key-and-command)
538 (mapcar
539 (lambda (keymap-and-completionp)
540 ;; Arg is (KEYMAP-SYMBOL . COMPLETION-MAP-P).
541 ;; If the cdr of KEY-AND-COMMAND (the command) is a cons,
542 ;; its car is used if COMPLETION-MAP-P is nil, its cdr if it is t.
543 (define-key (symbol-value (car keymap-and-completionp))
544 (car key-and-command)
545 (let ((command (cdr key-and-command)))
546 (if (consp command)
b5e6f936
RM
547 ;; (and ... nil) => ... turns back on the completion-oriented
548 ;; history commands which rms turned off since they seem to
549 ;; do things he doesn't like.
550 (if (and (cdr keymap-and-completionp) nil) ;XXX turned off
d81362b0 551 (progn (error "EMACS BUG!") (cdr command))
d0678801
RM
552 (car command))
553 command))))
554 '((minibuffer-local-map . nil)
555 (minibuffer-local-ns-map . nil)
556 (minibuffer-local-completion-map . t)
557 (minibuffer-local-must-match-map . t)
558 (read-expression-map . nil))))
d81362b0
RM
559 '(("\en" . (next-history-element . next-complete-history-element))
560 ([next] . (next-history-element . next-complete-history-element))
561 ("\ep" . (previous-history-element . previous-complete-history-element))
562 ([prior] . (previous-history-element . previous-complete-history-element))
29929437
JB
563 ("\er" . previous-matching-history-element)
564 ("\es" . next-matching-history-element)))
e91f80c4 565
e91f80c4 566(defun previous-matching-history-element (regexp n)
854c16c5
RS
567 "Find the previous history element that matches REGEXP.
568\(Previous history elements refer to earlier actions.)
569With prefix argument N, search for Nth previous match.
570If N is negative, find the next or Nth next match."
571 (interactive
c1172a19
RS
572 (let* ((enable-recursive-minibuffers t)
573 (minibuffer-history-sexp-flag nil)
574 (regexp (read-from-minibuffer "Previous element matching (regexp): "
575 nil
576 minibuffer-local-map
577 nil
578 'minibuffer-history-search-history)))
579 ;; Use the last regexp specified, by default, if input is empty.
580 (list (if (string= regexp "")
a8e96cea
KH
581 (if minibuffer-history-search-history
582 (car minibuffer-history-search-history)
583 (error "No previous history search regexp"))
c1172a19 584 regexp)
854c16c5 585 (prefix-numeric-value current-prefix-arg))))
e91f80c4 586 (let ((history (symbol-value minibuffer-history-variable))
ccc58657 587 prevpos
e91f80c4
RS
588 (pos minibuffer-history-position))
589 (while (/= n 0)
590 (setq prevpos pos)
591 (setq pos (min (max 1 (+ pos (if (< n 0) -1 1))) (length history)))
592 (if (= pos prevpos)
593 (error (if (= pos 1)
ccc58657
RS
594 "No later matching history item"
595 "No earlier matching history item")))
e91f80c4
RS
596 (if (string-match regexp
597 (if minibuffer-history-sexp-flag
7908d27c
RS
598 (let ((print-level nil))
599 (prin1-to-string (nth (1- pos) history)))
e91f80c4 600 (nth (1- pos) history)))
854c16c5 601 (setq n (+ n (if (< n 0) 1 -1)))))
e91f80c4
RS
602 (setq minibuffer-history-position pos)
603 (erase-buffer)
604 (let ((elt (nth (1- pos) history)))
605 (insert (if minibuffer-history-sexp-flag
7908d27c
RS
606 (let ((print-level nil))
607 (prin1-to-string elt))
e91f80c4 608 elt)))
854c16c5
RS
609 (goto-char (point-min)))
610 (if (or (eq (car (car command-history)) 'previous-matching-history-element)
611 (eq (car (car command-history)) 'next-matching-history-element))
612 (setq command-history (cdr command-history))))
e91f80c4 613
e91f80c4 614(defun next-matching-history-element (regexp n)
854c16c5
RS
615 "Find the next history element that matches REGEXP.
616\(The next history element refers to a more recent action.)
617With prefix argument N, search for Nth next match.
618If N is negative, find the previous or Nth previous match."
619 (interactive
c1172a19
RS
620 (let* ((enable-recursive-minibuffers t)
621 (minibuffer-history-sexp-flag nil)
622 (regexp (read-from-minibuffer "Next element matching (regexp): "
623 nil
624 minibuffer-local-map
625 nil
626 'minibuffer-history-search-history)))
627 ;; Use the last regexp specified, by default, if input is empty.
628 (list (if (string= regexp "")
629 (setcar minibuffer-history-search-history
630 (nth 1 minibuffer-history-search-history))
631 regexp)
854c16c5 632 (prefix-numeric-value current-prefix-arg))))
e91f80c4 633 (previous-matching-history-element regexp (- n)))
2076c87c 634
ebb61177
RS
635(defun next-history-element (n)
636 "Insert the next element of the minibuffer history into the minibuffer."
2076c87c 637 (interactive "p")
0818b15e
RS
638 (or (zerop n)
639 (let ((narg (min (max 1 (- minibuffer-history-position n))
640 (length (symbol-value minibuffer-history-variable)))))
641 (if (or (zerop narg)
642 (= minibuffer-history-position narg))
643 (error (if (if (zerop narg)
644 (> n 0)
645 (= minibuffer-history-position 1))
646 "End of history; no next item"
647 "Beginning of history; no preceding item"))
648 (erase-buffer)
649 (setq minibuffer-history-position narg)
650 (let ((elt (nth (1- minibuffer-history-position)
651 (symbol-value minibuffer-history-variable))))
652 (insert
653 (if minibuffer-history-sexp-flag
654 (let ((print-level nil))
655 (prin1-to-string elt))
656 elt)))
657 (goto-char (point-min))))))
2076c87c 658
ebb61177 659(defun previous-history-element (n)
3ee3a076 660 "Inserts the previous element of the minibuffer history into the minibuffer."
2076c87c 661 (interactive "p")
2c5e21c1 662 (next-history-element (- n)))
d0678801
RM
663
664(defun next-complete-history-element (n)
1f6fcec3 665 "Get next element of history which is a completion of minibuffer contents."
d0678801 666 (interactive "p")
b5e6f936
RM
667 (let ((point-at-start (point)))
668 (next-matching-history-element
669 (concat "^" (regexp-quote (buffer-substring (point-min) (point)))) n)
670 ;; next-matching-history-element always puts us at (point-min).
671 ;; Move to the position we were at before changing the buffer contents.
672 ;; This is still sensical, because the text before point has not changed.
673 (goto-char point-at-start)))
d0678801
RM
674
675(defun previous-complete-history-element (n)
1f6fcec3
RS
676 "\
677Get previous element of history which is a completion of minibuffer contents."
d0678801
RM
678 (interactive "p")
679 (next-complete-history-element (- n)))
e91f80c4 680\f
2076c87c
JB
681(defun goto-line (arg)
682 "Goto line ARG, counting from line 1 at beginning of buffer."
683 (interactive "NGoto line: ")
5f1a943c 684 (setq arg (prefix-numeric-value arg))
2076c87c
JB
685 (save-restriction
686 (widen)
687 (goto-char 1)
688 (if (eq selective-display t)
689 (re-search-forward "[\n\C-m]" nil 'end (1- arg))
690 (forward-line (1- arg)))))
691
692;Put this on C-x u, so we can force that rather than C-_ into startup msg
dff7d67f 693(define-function 'advertised-undo 'undo)
2076c87c
JB
694
695(defun undo (&optional arg)
696 "Undo some previous changes.
697Repeat this command to undo more changes.
698A numeric argument serves as a repeat count."
699 (interactive "*p")
456c617c
RS
700 ;; If we don't get all the way thru, make last-command indicate that
701 ;; for the following command.
702 (setq this-command t)
b553cffa
RS
703 (let ((modified (buffer-modified-p))
704 (recent-save (recent-auto-save-p)))
71e40adf
JB
705 (or (eq (selected-window) (minibuffer-window))
706 (message "Undo!"))
2076c87c
JB
707 (or (eq last-command 'undo)
708 (progn (undo-start)
709 (undo-more 1)))
2076c87c 710 (undo-more (or arg 1))
2512c9f0
RS
711 ;; Don't specify a position in the undo record for the undo command.
712 ;; Instead, undoing this should move point to where the change is.
713 (let ((tail buffer-undo-list)
714 done)
715 (while (and tail (not done) (not (null (car tail))))
716 (if (integerp (car tail))
717 (progn
718 (setq done t)
719 (setq buffer-undo-list (delq (car tail) buffer-undo-list))))
720 (setq tail (cdr tail))))
2076c87c 721 (and modified (not (buffer-modified-p))
456c617c
RS
722 (delete-auto-save-file-if-necessary recent-save)))
723 ;; If we do get all the way thru, make this-command indicate that.
724 (setq this-command 'undo))
2076c87c 725
278b0a58
RS
726(defvar pending-undo-list nil
727 "Within a run of consecutive undo commands, list remaining to be undone.")
728
2076c87c 729(defun undo-start ()
ff1fbe3e
RS
730 "Set `pending-undo-list' to the front of the undo list.
731The next call to `undo-more' will undo the most recently made change."
2076c87c
JB
732 (if (eq buffer-undo-list t)
733 (error "No undo information in this buffer"))
734 (setq pending-undo-list buffer-undo-list))
735
736(defun undo-more (count)
737 "Undo back N undo-boundaries beyond what was already undone recently.
ff1fbe3e
RS
738Call `undo-start' to get ready to undo recent changes,
739then call `undo-more' one or more times to undo them."
2076c87c
JB
740 (or pending-undo-list
741 (error "No further undo information"))
742 (setq pending-undo-list (primitive-undo count pending-undo-list)))
743
009ef402
RS
744(defvar shell-command-history nil
745 "History list for some commands that read shell commands.")
746
59fc41e5
RS
747(defvar shell-command-switch "-c"
748 "Switch used to have the shell execute its command line argument.")
749
d0d74413 750(defun shell-command (command &optional output-buffer)
2076c87c 751 "Execute string COMMAND in inferior shell; display output, if any.
d382f610 752
2076c87c 753If COMMAND ends in ampersand, execute it asynchronously.
d382f610 754The output appears in the buffer `*Async Shell Command*'.
bcad4985 755That buffer is in shell mode.
d382f610 756
bcad4985
KH
757Otherwise, COMMAND is executed synchronously. The output appears in the
758buffer `*Shell Command Output*'.
d382f610
RS
759If the output is one line, it is displayed in the echo area *as well*,
760but it is nonetheless available in buffer `*Shell Command Output*',
761even though that buffer is not automatically displayed.
762If there is no output, or if output is inserted in the current buffer,
763then `*Shell Command Output*' is deleted.
d0d74413
RS
764
765The optional second argument OUTPUT-BUFFER, if non-nil,
766says to put the output in some other buffer.
767If OUTPUT-BUFFER is a buffer or buffer name, put the output there.
768If OUTPUT-BUFFER is not a buffer and not nil,
769insert output in current buffer. (This cannot be done asynchronously.)
770In either case, the output is inserted after point (leaving mark after it)."
aa00b92d
RS
771 (interactive (list (read-from-minibuffer "Shell command: "
772 nil nil nil 'shell-command-history)
773 current-prefix-arg))
d0d74413
RS
774 (if (and output-buffer
775 (not (or (bufferp output-buffer) (stringp output-buffer))))
2076c87c
JB
776 (progn (barf-if-buffer-read-only)
777 (push-mark)
778 ;; We do not use -f for csh; we will not support broken use of
779 ;; .cshrcs. Even the BSD csh manual says to use
780 ;; "if ($?prompt) exit" before things which are not useful
781 ;; non-interactively. Besides, if someone wants their other
782 ;; aliases for shell commands then they can still have them.
783 (call-process shell-file-name nil t nil
59fc41e5 784 shell-command-switch command)
bcad4985
KH
785 ;; This is like exchange-point-and-mark, but doesn't
786 ;; activate the mark. It is cleaner to avoid activation,
787 ;; even though the command loop would deactivate the mark
788 ;; because we inserted text.
c3e46f0c
RS
789 (goto-char (prog1 (mark t)
790 (set-marker (mark-marker) (point)
791 (current-buffer)))))
2076c87c 792 ;; Preserve the match data in case called from a program.
bcad4985
KH
793 (save-match-data
794 (if (string-match "[ \t]*&[ \t]*$" command)
795 ;; Command ending with ampersand means asynchronous.
796 (let ((buffer (get-buffer-create
797 (or output-buffer "*Asynch Shell Command*")))
798 (directory default-directory)
799 proc)
800 ;; Remove the ampersand.
801 (setq command (substring command 0 (match-beginning 0)))
802 ;; If will kill a process, query first.
803 (setq proc (get-buffer-process buffer))
804 (if proc
805 (if (yes-or-no-p "A command is running. Kill it? ")
806 (kill-process proc)
807 (error "Shell command in progress")))
808 (save-excursion
809 (set-buffer buffer)
810 (setq buffer-read-only nil)
811 (erase-buffer)
812 (display-buffer buffer)
813 (setq default-directory directory)
814 (setq proc (start-process "Shell" buffer shell-file-name
815 shell-command-switch command))
816 (setq mode-line-process '(":%s"))
817 (require 'shell) (shell-mode)
818 (set-process-sentinel proc 'shell-command-sentinel)
819 ))
820 (shell-command-on-region (point) (point) command nil)
821 ))))
2076c87c
JB
822
823;; We have a sentinel to prevent insertion of a termination message
824;; in the buffer itself.
825(defun shell-command-sentinel (process signal)
bcad4985
KH
826 (if (memq (process-status process) '(exit signal))
827 (message "%s: %s."
828 (car (cdr (cdr (process-command process))))
829 (substring signal 0 -1))))
2076c87c 830
d0d74413 831(defun shell-command-on-region (start end command
56c0450e 832 &optional output-buffer replace)
2076c87c
JB
833 "Execute string COMMAND in inferior shell with region as input.
834Normally display output (if any) in temp buffer `*Shell Command Output*';
835Prefix arg means replace the region with it.
56c0450e
RS
836
837The noninteractive arguments are START, END, COMMAND, OUTPUT-BUFFER, REPLACE.
838If REPLACE is non-nil, that means insert the output
4d9bd664 839in place of text from START to END, putting point and mark around it.
2076c87c
JB
840
841If the output is one line, it is displayed in the echo area,
842but it is nonetheless available in buffer `*Shell Command Output*'
56c0450e 843even though that buffer is not automatically displayed.
c42f586d 844If there is no output, or if output is inserted in the current buffer,
56c0450e 845then `*Shell Command Output*' is deleted.
d0d74413 846
56c0450e
RS
847If the optional fourth argument OUTPUT-BUFFER is non-nil,
848that says to put the output in some other buffer.
d0d74413
RS
849If OUTPUT-BUFFER is a buffer or buffer name, put the output there.
850If OUTPUT-BUFFER is not a buffer and not nil,
851insert output in the current buffer.
852In either case, the output is inserted after point (leaving mark after it)."
cae49185
RS
853 (interactive (let ((string
854 ;; Do this before calling region-beginning
855 ;; and region-end, in case subprocess output
856 ;; relocates them while we are in the minibuffer.
857 (read-from-minibuffer "Shell command on region: "
858 nil nil nil
859 'shell-command-history)))
2b03c506
RS
860 ;; call-interactively recognizes region-beginning and
861 ;; region-end specially, leaving them in the history.
862 (list (region-beginning) (region-end)
cae49185
RS
863 string
864 current-prefix-arg
4d9bd664
RS
865 current-prefix-arg)))
866 (if (or replace
867 (and output-buffer
29fc44dd
KH
868 (not (or (bufferp output-buffer) (stringp output-buffer))))
869 (equal (buffer-name (current-buffer)) "*Shell Command Output*"))
2076c87c 870 ;; Replace specified region with output from command.
6db3a963 871 (let ((swap (and replace (< start end))))
4d9bd664
RS
872 ;; Don't muck with mark unless REPLACE says we should.
873 (goto-char start)
56c0450e 874 (and replace (push-mark))
2076c87c 875 (call-process-region start end shell-file-name t t nil
59fc41e5 876 shell-command-switch command)
b5f7c943
KH
877 (let ((shell-buffer (get-buffer "*Shell Command Output*")))
878 (and shell-buffer (not (eq shell-buffer (current-buffer)))
879 (kill-buffer shell-buffer)))
4d9bd664 880 ;; Don't muck with mark unless REPLACE says we should.
56c0450e 881 (and replace swap (exchange-point-and-mark)))
2076c87c
JB
882 ;; No prefix argument: put the output in a temp buffer,
883 ;; replacing its entire contents.
d0d74413
RS
884 (let ((buffer (get-buffer-create
885 (or output-buffer "*Shell Command Output*")))
34ee0963
RS
886 (success nil))
887 (unwind-protect
888 (if (eq buffer (current-buffer))
889 ;; If the input is the same buffer as the output,
890 ;; delete everything but the specified region,
891 ;; then replace that region with the output.
a9594ce3 892 (progn (setq buffer-read-only nil)
6db3a963
RS
893 (delete-region (max start end) (point-max))
894 (delete-region (point-min) (max start end))
34ee0963
RS
895 (call-process-region (point-min) (point-max)
896 shell-file-name t t nil
59fc41e5 897 shell-command-switch command)
34ee0963
RS
898 (setq success t))
899 ;; Clear the output buffer, then run the command with output there.
900 (save-excursion
901 (set-buffer buffer)
a9594ce3 902 (setq buffer-read-only nil)
34ee0963
RS
903 (erase-buffer))
904 (call-process-region start end shell-file-name
905 nil buffer nil
59fc41e5 906 shell-command-switch command)
34ee0963
RS
907 (setq success t))
908 ;; Report the amount of output.
909 (let ((lines (save-excursion
910 (set-buffer buffer)
911 (if (= (buffer-size) 0)
912 0
913 (count-lines (point-min) (point-max))))))
914 (cond ((= lines 0)
915 (if success
916 (message "(Shell command completed with no output)"))
917 (kill-buffer buffer))
918 ((and success (= lines 1))
919 (message "%s"
920 (save-excursion
921 (set-buffer buffer)
922 (goto-char (point-min))
923 (buffer-substring (point)
4ec982c5 924 (progn (end-of-line) (point))))))
34ee0963
RS
925 (t
926 (set-window-start (display-buffer buffer) 1))))))))
2076c87c 927\f
69d4c3c4
KH
928(defconst universal-argument-map
929 (let ((map (make-sparse-keymap)))
930 (define-key map [t] 'universal-argument-other-key)
b9ff190d 931 (define-key map (vector meta-prefix-char t) 'universal-argument-other-key)
69d4c3c4
KH
932 (define-key map [switch-frame] nil)
933 (define-key map [?\C-u] 'universal-argument-more)
934 (define-key map [?-] 'universal-argument-minus)
935 (define-key map [?0] 'digit-argument)
936 (define-key map [?1] 'digit-argument)
937 (define-key map [?2] 'digit-argument)
938 (define-key map [?3] 'digit-argument)
939 (define-key map [?4] 'digit-argument)
940 (define-key map [?5] 'digit-argument)
941 (define-key map [?6] 'digit-argument)
942 (define-key map [?7] 'digit-argument)
943 (define-key map [?8] 'digit-argument)
944 (define-key map [?9] 'digit-argument)
945 map)
946 "Keymap used while processing \\[universal-argument].")
947
0de84e16
RS
948(defvar universal-argument-num-events nil
949 "Number of argument-specifying events read by `universal-argument'.
950`universal-argument-other-key' uses this to discard those events
951from (this-command-keys), and reread only the final command.")
952
e8d1a377
KH
953(defun universal-argument ()
954 "Begin a numeric argument for the following command.
955Digits or minus sign following \\[universal-argument] make up the numeric argument.
956\\[universal-argument] following the digits or minus sign ends the argument.
957\\[universal-argument] without digits or minus sign provides 4 as argument.
958Repeating \\[universal-argument] without digits or minus sign
959 multiplies the argument by 4 each time."
69d4c3c4
KH
960 (interactive)
961 (setq prefix-arg (list 4))
0de84e16 962 (setq universal-argument-num-events (length (this-command-keys)))
69d4c3c4 963 (setq overriding-terminal-local-map universal-argument-map))
e8d1a377 964
69d4c3c4
KH
965;; A subsequent C-u means to multiply the factor by 4 if we've typed
966;; nothing but C-u's; otherwise it means to terminate the prefix arg.
967(defun universal-argument-more (arg)
e8d1a377 968 (interactive "P")
69d4c3c4
KH
969 (if (consp arg)
970 (setq prefix-arg (list (* 4 (car arg))))
971 (setq prefix-arg arg)
0de84e16
RS
972 (setq overriding-terminal-local-map nil))
973 (setq universal-argument-num-events (length (this-command-keys))))
e8d1a377
KH
974
975(defun negative-argument (arg)
976 "Begin a negative numeric argument for the next command.
977\\[universal-argument] following digits or minus sign ends the argument."
978 (interactive "P")
69d4c3c4
KH
979 (cond ((integerp arg)
980 (setq prefix-arg (- arg)))
981 ((eq arg '-)
982 (setq prefix-arg nil))
983 (t
b9ff190d 984 (setq prefix-arg '-)))
0de84e16 985 (setq universal-argument-num-events (length (this-command-keys)))
b9ff190d 986 (setq overriding-terminal-local-map universal-argument-map))
69d4c3c4
KH
987
988(defun digit-argument (arg)
989 "Part of the numeric argument for the next command.
990\\[universal-argument] following digits or minus sign ends the argument."
991 (interactive "P")
992 (let ((digit (- (logand last-command-char ?\177) ?0)))
993 (cond ((integerp arg)
994 (setq prefix-arg (+ (* arg 10)
995 (if (< arg 0) (- digit) digit))))
996 ((eq arg '-)
997 ;; Treat -0 as just -, so that -01 will work.
998 (setq prefix-arg (if (zerop digit) '- (- digit))))
999 (t
b9ff190d 1000 (setq prefix-arg digit))))
0de84e16 1001 (setq universal-argument-num-events (length (this-command-keys)))
b9ff190d 1002 (setq overriding-terminal-local-map universal-argument-map))
69d4c3c4
KH
1003
1004;; For backward compatibility, minus with no modifiers is an ordinary
1005;; command if digits have already been entered.
1006(defun universal-argument-minus (arg)
1007 (interactive "P")
1008 (if (integerp arg)
1009 (universal-argument-other-key arg)
1010 (negative-argument arg)))
1011
1012;; Anything else terminates the argument and is left in the queue to be
1013;; executed as a command.
1014(defun universal-argument-other-key (arg)
1015 (interactive "P")
1016 (setq prefix-arg arg)
0de84e16
RS
1017 (let* ((key (this-command-keys))
1018 (keylist (listify-key-sequence key)))
1019 (setq unread-command-events
06697cdb
RS
1020 (append (nthcdr universal-argument-num-events keylist)
1021 unread-command-events)))
f0ef2555 1022 (reset-this-command-lengths)
69d4c3c4 1023 (setq overriding-terminal-local-map nil))
e8d1a377 1024\f
2076c87c
JB
1025(defun forward-to-indentation (arg)
1026 "Move forward ARG lines and position at first nonblank character."
1027 (interactive "p")
1028 (forward-line arg)
1029 (skip-chars-forward " \t"))
1030
1031(defun backward-to-indentation (arg)
1032 "Move backward ARG lines and position at first nonblank character."
1033 (interactive "p")
1034 (forward-line (- arg))
1035 (skip-chars-forward " \t"))
1036
38ebcf29 1037(defvar kill-whole-line nil
dff7d67f 1038 "*If non-nil, `kill-line' with no arg at beg of line kills the whole line.")
38ebcf29 1039
2076c87c 1040(defun kill-line (&optional arg)
dff7d67f 1041 "Kill the rest of the current line; if no nonblanks there, kill thru newline.
2076c87c
JB
1042With prefix argument, kill that many lines from point.
1043Negative arguments kill lines backward.
1044
1045When calling from a program, nil means \"no arg\",
dff7d67f
RS
1046a number counts as a prefix arg.
1047
1048If `kill-whole-line' is non-nil, then kill the whole line
1049when given no argument at the beginning of a line."
2076c87c
JB
1050 (interactive "P")
1051 (kill-region (point)
e6291fe1
RS
1052 ;; It is better to move point to the other end of the kill
1053 ;; before killing. That way, in a read-only buffer, point
1054 ;; moves across the text that is copied to the kill ring.
1055 ;; The choice has no effect on undo now that undo records
1056 ;; the value of point from before the command was run.
1057 (progn
2076c87c
JB
1058 (if arg
1059 (forward-line (prefix-numeric-value arg))
1060 (if (eobp)
1061 (signal 'end-of-buffer nil))
38ebcf29 1062 (if (or (looking-at "[ \t]*$") (and kill-whole-line (bolp)))
2076c87c
JB
1063 (forward-line 1)
1064 (end-of-line)))
1065 (point))))
1066\f
70e14c01
JB
1067;;;; Window system cut and paste hooks.
1068
1069(defvar interprogram-cut-function nil
1070 "Function to call to make a killed region available to other programs.
1071
1072Most window systems provide some sort of facility for cutting and
9f112a3d
RS
1073pasting text between the windows of different programs.
1074This variable holds a function that Emacs calls whenever text
1075is put in the kill ring, to make the new kill available to other
70e14c01
JB
1076programs.
1077
9f112a3d
RS
1078The function takes one or two arguments.
1079The first argument, TEXT, is a string containing
1080the text which should be made available.
1081The second, PUSH, if non-nil means this is a \"new\" kill;
1082nil means appending to an \"old\" kill.")
70e14c01
JB
1083
1084(defvar interprogram-paste-function nil
1085 "Function to call to get text cut from other programs.
1086
1087Most window systems provide some sort of facility for cutting and
9f112a3d
RS
1088pasting text between the windows of different programs.
1089This variable holds a function that Emacs calls to obtain
70e14c01
JB
1090text that other programs have provided for pasting.
1091
1092The function should be called with no arguments. If the function
1093returns nil, then no other program has provided such text, and the top
1094of the Emacs kill ring should be used. If the function returns a
daa37602
JB
1095string, that string should be put in the kill ring as the latest kill.
1096
1097Note that the function should return a string only if a program other
1098than Emacs has provided a string for pasting; if Emacs provided the
1099most recent string, the function should return nil. If it is
1100difficult to tell whether Emacs or some other program provided the
1101current string, it is probably good enough to return nil if the string
1102is equal (according to `string=') to the last text Emacs provided.")
70e14c01
JB
1103
1104
1105\f
1106;;;; The kill ring data structure.
2076c87c
JB
1107
1108(defvar kill-ring nil
70e14c01
JB
1109 "List of killed text sequences.
1110Since the kill ring is supposed to interact nicely with cut-and-paste
1111facilities offered by window systems, use of this variable should
1112interact nicely with `interprogram-cut-function' and
1113`interprogram-paste-function'. The functions `kill-new',
1114`kill-append', and `current-kill' are supposed to implement this
1115interaction; you may want to use them instead of manipulating the kill
1116ring directly.")
2076c87c
JB
1117
1118(defconst kill-ring-max 30
1119 "*Maximum length of kill ring before oldest elements are thrown away.")
1120
1121(defvar kill-ring-yank-pointer nil
1122 "The tail of the kill ring whose car is the last thing yanked.")
1123
f914dc91 1124(defun kill-new (string &optional replace)
70e14c01
JB
1125 "Make STRING the latest kill in the kill ring.
1126Set the kill-ring-yank pointer to point to it.
f914dc91
KH
1127If `interprogram-cut-function' is non-nil, apply it to STRING.
1128Optional second argument REPLACE non-nil means that STRING will replace
1129the front of the kill ring, rather than being added to the list."
f1d01ba2
KH
1130 (and (fboundp 'menu-bar-update-yank-menu)
1131 (menu-bar-update-yank-menu string (and replace (car kill-ring))))
f914dc91
KH
1132 (if replace
1133 (setcar kill-ring string)
1134 (setq kill-ring (cons string kill-ring))
1135 (if (> (length kill-ring) kill-ring-max)
1136 (setcdr (nthcdr (1- kill-ring-max) kill-ring) nil)))
70e14c01
JB
1137 (setq kill-ring-yank-pointer kill-ring)
1138 (if interprogram-cut-function
657a33ab 1139 (funcall interprogram-cut-function string (not replace))))
70e14c01 1140
2076c87c 1141(defun kill-append (string before-p)
70e14c01
JB
1142 "Append STRING to the end of the latest kill in the kill ring.
1143If BEFORE-P is non-nil, prepend STRING to the kill.
88c1aa79 1144If `interprogram-cut-function' is set, pass the resulting kill to
70e14c01 1145it."
f914dc91
KH
1146 (kill-new (if before-p
1147 (concat string (car kill-ring))
1148 (concat (car kill-ring) string)) t))
70e14c01
JB
1149
1150(defun current-kill (n &optional do-not-move)
1151 "Rotate the yanking point by N places, and then return that kill.
1152If N is zero, `interprogram-paste-function' is set, and calling it
1153returns a string, then that string is added to the front of the
1154kill ring and returned as the latest kill.
1155If optional arg DO-NOT-MOVE is non-nil, then don't actually move the
1156yanking point; just return the Nth kill forward."
1157 (let ((interprogram-paste (and (= n 0)
1158 interprogram-paste-function
1159 (funcall interprogram-paste-function))))
1160 (if interprogram-paste
1161 (progn
1162 ;; Disable the interprogram cut function when we add the new
1163 ;; text to the kill ring, so Emacs doesn't try to own the
1164 ;; selection, with identical text.
1165 (let ((interprogram-cut-function nil))
1166 (kill-new interprogram-paste))
1167 interprogram-paste)
1168 (or kill-ring (error "Kill ring is empty"))
47096a67
PE
1169 (let ((ARGth-kill-element
1170 (nthcdr (mod (- n (length kill-ring-yank-pointer))
1171 (length kill-ring))
1172 kill-ring)))
70e14c01
JB
1173 (or do-not-move
1174 (setq kill-ring-yank-pointer ARGth-kill-element))
1175 (car ARGth-kill-element)))))
c88ab9ce 1176
c88ab9ce 1177
70e14c01
JB
1178\f
1179;;;; Commands for manipulating the kill ring.
c88ab9ce 1180
e6291fe1
RS
1181(defvar kill-read-only-ok nil
1182 "*Non-nil means don't signal an error for killing read-only text.")
1183
2076c87c
JB
1184(defun kill-region (beg end)
1185 "Kill between point and mark.
1186The text is deleted but saved in the kill ring.
1187The command \\[yank] can retrieve it from there.
1188\(If you want to kill and then yank immediately, use \\[copy-region-as-kill].)
2aa7a8bf
JB
1189If the buffer is read-only, Emacs will beep and refrain from deleting
1190the text, but put the text in the kill ring anyway. This means that
1191you can use the killing commands to copy text from a read-only buffer.
2076c87c
JB
1192
1193This is the primitive for programs to kill text (as opposed to deleting it).
1194Supply two arguments, character numbers indicating the stretch of text
1195 to be killed.
1196Any command that calls this function is a \"kill command\".
1197If the previous command was also a kill command,
1198the text killed this time appends to the text killed last time
1199to make one entry in the kill ring."
2aa7a8bf 1200 (interactive "r")
70e14c01 1201 (cond
2aa7a8bf
JB
1202
1203 ;; If the buffer is read-only, we should beep, in case the person
1204 ;; just isn't aware of this. However, there's no harm in putting
1205 ;; the region's text in the kill ring, anyway.
e6291fe1
RS
1206 ((or (and buffer-read-only (not inhibit-read-only))
1207 (text-property-not-all beg end 'read-only nil))
2aa7a8bf 1208 (copy-region-as-kill beg end)
1537a263 1209 ;; This should always barf, and give us the correct error.
e6291fe1
RS
1210 (if kill-read-only-ok
1211 (message "Read only text copied to kill ring")
626a097c 1212 (setq this-command 'kill-region)
e6291fe1 1213 (barf-if-buffer-read-only)))
2aa7a8bf
JB
1214
1215 ;; In certain cases, we can arrange for the undo list and the kill
1216 ;; ring to share the same string object. This code does that.
70e14c01
JB
1217 ((not (or (eq buffer-undo-list t)
1218 (eq last-command 'kill-region)
713dca1c
RS
1219 ;; Use = since positions may be numbers or markers.
1220 (= beg end)))
70e14c01 1221 ;; Don't let the undo list be truncated before we can even access it.
12bcd3b6
RS
1222 (let ((undo-strong-limit (+ (- (max beg end) (min beg end)) 100))
1223 (old-list buffer-undo-list)
1224 tail)
70e14c01 1225 (delete-region beg end)
12bcd3b6
RS
1226 ;; Search back in buffer-undo-list for this string,
1227 ;; in case a change hook made property changes.
1228 (setq tail buffer-undo-list)
1229 (while (not (stringp (car (car tail))))
1230 (setq tail (cdr tail)))
70e14c01
JB
1231 ;; Take the same string recorded for undo
1232 ;; and put it in the kill-ring.
626a097c 1233 (kill-new (car (car tail)))))
2aa7a8bf 1234
70e14c01 1235 (t
2076c87c 1236 (copy-region-as-kill beg end)
626a097c
KH
1237 (delete-region beg end)))
1238 (setq this-command 'kill-region))
2076c87c 1239
a382890a
KH
1240;; copy-region-as-kill no longer sets this-command, because it's confusing
1241;; to get two copies of the text when the user accidentally types M-w and
1242;; then corrects it with the intended C-w.
2076c87c
JB
1243(defun copy-region-as-kill (beg end)
1244 "Save the region as if killed, but don't kill it.
46947372
JB
1245If `interprogram-cut-function' is non-nil, also save the text for a window
1246system cut and paste."
2076c87c
JB
1247 (interactive "r")
1248 (if (eq last-command 'kill-region)
1249 (kill-append (buffer-substring beg end) (< end beg))
70e14c01 1250 (kill-new (buffer-substring beg end)))
2076c87c
JB
1251 nil)
1252
1253(defun kill-ring-save (beg end)
0964e562 1254 "Save the region as if killed, but don't kill it.
230c6b36 1255This command is similar to `copy-region-as-kill', except that it gives
0964e562
JB
1256visual feedback indicating the extent of the region being copied.
1257If `interprogram-cut-function' is non-nil, also save the text for a window
1258system cut and paste."
2076c87c
JB
1259 (interactive "r")
1260 (copy-region-as-kill beg end)
3a801d0c 1261 (if (interactive-p)
66050f10
RS
1262 (let ((other-end (if (= (point) beg) end beg))
1263 (opoint (point))
1264 ;; Inhibit quitting so we can make a quit here
1265 ;; look like a C-g typed as a command.
1266 (inhibit-quit t))
1267 (if (pos-visible-in-window-p other-end (selected-window))
1268 (progn
1269 ;; Swap point and mark.
1270 (set-marker (mark-marker) (point) (current-buffer))
1271 (goto-char other-end)
1272 (sit-for 1)
1273 ;; Swap back.
1274 (set-marker (mark-marker) other-end (current-buffer))
1275 (goto-char opoint)
1276 ;; If user quit, deactivate the mark
1277 ;; as C-g would as a command.
e4e593ae 1278 (and quit-flag mark-active
fcadf1c7 1279 (deactivate-mark)))
66050f10
RS
1280 (let* ((killed-text (current-kill 0))
1281 (message-len (min (length killed-text) 40)))
1282 (if (= (point) beg)
1283 ;; Don't say "killed"; that is misleading.
1284 (message "Saved text until \"%s\""
1285 (substring killed-text (- message-len)))
1286 (message "Saved text from \"%s\""
1287 (substring killed-text 0 message-len))))))))
2076c87c
JB
1288
1289(defun append-next-kill ()
ff1fbe3e 1290 "Cause following command, if it kills, to append to previous kill."
2076c87c
JB
1291 (interactive)
1292 (if (interactive-p)
1293 (progn
1294 (setq this-command 'kill-region)
1295 (message "If the next command is a kill, it will append"))
1296 (setq last-command 'kill-region)))
1297
2076c87c 1298(defun yank-pop (arg)
ff1fbe3e
RS
1299 "Replace just-yanked stretch of killed text with a different stretch.
1300This command is allowed only immediately after a `yank' or a `yank-pop'.
2076c87c 1301At such a time, the region contains a stretch of reinserted
ff1fbe3e 1302previously-killed text. `yank-pop' deletes that text and inserts in its
2076c87c
JB
1303place a different stretch of killed text.
1304
1305With no argument, the previous kill is inserted.
ff1fbe3e
RS
1306With argument N, insert the Nth previous kill.
1307If N is negative, this is a more recent kill.
2076c87c
JB
1308
1309The sequence of kills wraps around, so that after the oldest one
1310comes the newest one."
1311 (interactive "*p")
1312 (if (not (eq last-command 'yank))
1313 (error "Previous command was not a yank"))
1314 (setq this-command 'yank)
9a1277dd
RS
1315 (let ((before (< (point) (mark t))))
1316 (delete-region (point) (mark t))
fd0f4056 1317 (set-marker (mark-marker) (point) (current-buffer))
70e14c01 1318 (insert (current-kill arg))
fd0f4056
RS
1319 (if before
1320 ;; This is like exchange-point-and-mark, but doesn't activate the mark.
1321 ;; It is cleaner to avoid activation, even though the command
1322 ;; loop would deactivate the mark because we inserted text.
1323 (goto-char (prog1 (mark t)
1324 (set-marker (mark-marker) (point) (current-buffer))))))
0964e562 1325 nil)
2076c87c
JB
1326
1327(defun yank (&optional arg)
1328 "Reinsert the last stretch of killed text.
1329More precisely, reinsert the stretch of killed text most recently
ff1fbe3e
RS
1330killed OR yanked. Put point at end, and set mark at beginning.
1331With just C-u as argument, same but put point at beginning (and mark at end).
1332With argument N, reinsert the Nth most recently killed stretch of killed
2076c87c
JB
1333text.
1334See also the command \\[yank-pop]."
1335 (interactive "*P")
456c617c
RS
1336 ;; If we don't get all the way thru, make last-command indicate that
1337 ;; for the following command.
1338 (setq this-command t)
2076c87c 1339 (push-mark (point))
70e14c01
JB
1340 (insert (current-kill (cond
1341 ((listp arg) 0)
1342 ((eq arg '-) -1)
1343 (t (1- arg)))))
2076c87c 1344 (if (consp arg)
fd0f4056
RS
1345 ;; This is like exchange-point-and-mark, but doesn't activate the mark.
1346 ;; It is cleaner to avoid activation, even though the command
1347 ;; loop would deactivate the mark because we inserted text.
1348 (goto-char (prog1 (mark t)
1349 (set-marker (mark-marker) (point) (current-buffer)))))
456c617c
RS
1350 ;; If we do get all the way thru, make this-command indicate that.
1351 (setq this-command 'yank)
0964e562 1352 nil)
70e14c01
JB
1353
1354(defun rotate-yank-pointer (arg)
1355 "Rotate the yanking point in the kill ring.
1356With argument, rotate that many kills forward (or backward, if negative)."
1357 (interactive "p")
1358 (current-kill arg))
1359
2076c87c
JB
1360\f
1361(defun insert-buffer (buffer)
1362 "Insert after point the contents of BUFFER.
1363Puts mark after the inserted text.
1364BUFFER may be a buffer or a buffer name."
58ff020d 1365 (interactive (list (progn (barf-if-buffer-read-only)
8be055fd
RS
1366 (read-buffer "Insert buffer: "
1367 (other-buffer (current-buffer) t)
1368 t))))
2076c87c
JB
1369 (or (bufferp buffer)
1370 (setq buffer (get-buffer buffer)))
1371 (let (start end newmark)
1372 (save-excursion
1373 (save-excursion
1374 (set-buffer buffer)
1375 (setq start (point-min) end (point-max)))
1376 (insert-buffer-substring buffer start end)
1377 (setq newmark (point)))
1537a263
JB
1378 (push-mark newmark))
1379 nil)
2076c87c
JB
1380
1381(defun append-to-buffer (buffer start end)
1382 "Append to specified buffer the text of the region.
1383It is inserted into that buffer before its point.
1384
1385When calling from a program, give three arguments:
1386BUFFER (or buffer name), START and END.
1387START and END specify the portion of the current buffer to be copied."
70e14c01 1388 (interactive
5d771766 1389 (list (read-buffer "Append to buffer: " (other-buffer (current-buffer) t))
23efee2c 1390 (region-beginning) (region-end)))
2076c87c
JB
1391 (let ((oldbuf (current-buffer)))
1392 (save-excursion
1393 (set-buffer (get-buffer-create buffer))
1394 (insert-buffer-substring oldbuf start end))))
1395
1396(defun prepend-to-buffer (buffer start end)
1397 "Prepend to specified buffer the text of the region.
1398It is inserted into that buffer after its point.
1399
1400When calling from a program, give three arguments:
1401BUFFER (or buffer name), START and END.
1402START and END specify the portion of the current buffer to be copied."
1403 (interactive "BPrepend to buffer: \nr")
1404 (let ((oldbuf (current-buffer)))
1405 (save-excursion
1406 (set-buffer (get-buffer-create buffer))
1407 (save-excursion
1408 (insert-buffer-substring oldbuf start end)))))
1409
1410(defun copy-to-buffer (buffer start end)
1411 "Copy to specified buffer the text of the region.
1412It is inserted into that buffer, replacing existing text there.
1413
1414When calling from a program, give three arguments:
1415BUFFER (or buffer name), START and END.
1416START and END specify the portion of the current buffer to be copied."
1417 (interactive "BCopy to buffer: \nr")
1418 (let ((oldbuf (current-buffer)))
1419 (save-excursion
1420 (set-buffer (get-buffer-create buffer))
1421 (erase-buffer)
1422 (save-excursion
1423 (insert-buffer-substring oldbuf start end)))))
1424\f
62d1c1fc
RM
1425(put 'mark-inactive 'error-conditions '(mark-inactive error))
1426(put 'mark-inactive 'error-message "The mark is not active now")
1427
af39530e 1428(defun mark (&optional force)
c7c8b31e 1429 "Return this buffer's mark value as integer; error if mark inactive.
af39530e 1430If optional argument FORCE is non-nil, access the mark value
c7c8b31e
RS
1431even if the mark is not currently active, and return nil
1432if there is no mark at all.
af39530e 1433
2076c87c
JB
1434If you are using this in an editing command, you are most likely making
1435a mistake; see the documentation of `set-mark'."
0e3a7b14 1436 (if (or force (not transient-mark-mode) mark-active mark-even-if-inactive)
af39530e 1437 (marker-position (mark-marker))
62d1c1fc 1438 (signal 'mark-inactive nil)))
2076c87c 1439
19d35374
RM
1440;; Many places set mark-active directly, and several of them failed to also
1441;; run deactivate-mark-hook. This shorthand should simplify.
1442(defsubst deactivate-mark ()
1443 "Deactivate the mark by setting `mark-active' to nil.
fcadf1c7 1444\(That makes a difference only in Transient Mark mode.)
19d35374 1445Also runs the hook `deactivate-mark-hook'."
a4b9d3da
RS
1446 (if transient-mark-mode
1447 (progn
1448 (setq mark-active nil)
1449 (run-hooks 'deactivate-mark-hook))))
19d35374 1450
2076c87c
JB
1451(defun set-mark (pos)
1452 "Set this buffer's mark to POS. Don't use this function!
1453That is to say, don't use this function unless you want
1454the user to see that the mark has moved, and you want the previous
1455mark position to be lost.
1456
1457Normally, when a new mark is set, the old one should go on the stack.
1458This is why most applications should use push-mark, not set-mark.
1459
ff1fbe3e 1460Novice Emacs Lisp programmers often try to use the mark for the wrong
2076c87c
JB
1461purposes. The mark saves a location for the user's convenience.
1462Most editing commands should not alter the mark.
1463To remember a location for internal use in the Lisp program,
1464store it in a Lisp variable. Example:
1465
1466 (let ((beg (point))) (forward-line 1) (delete-region beg (point)))."
1467
fcadf1c7
RS
1468 (if pos
1469 (progn
1470 (setq mark-active t)
1471 (run-hooks 'activate-mark-hook)
1472 (set-marker (mark-marker) pos (current-buffer)))
24c22852
RS
1473 ;; Normally we never clear mark-active except in Transient Mark mode.
1474 ;; But when we actually clear out the mark value too,
1475 ;; we must clear mark-active in any mode.
1476 (setq mark-active nil)
1477 (run-hooks 'deactivate-mark-hook)
1478 (set-marker (mark-marker) nil)))
2076c87c
JB
1479
1480(defvar mark-ring nil
e55e2267 1481 "The list of former marks of the current buffer, most recent first.")
2076c87c 1482(make-variable-buffer-local 'mark-ring)
e55e2267 1483(put 'mark-ring 'permanent-local t)
2076c87c
JB
1484
1485(defconst mark-ring-max 16
1486 "*Maximum size of mark ring. Start discarding off end if gets this big.")
1487
dc029f0b
RM
1488(defvar global-mark-ring nil
1489 "The list of saved global marks, most recent first.")
1490
1491(defconst global-mark-ring-max 16
1492 "*Maximum size of global mark ring. \
1493Start discarding off end if gets this big.")
1494
2076c87c
JB
1495(defun set-mark-command (arg)
1496 "Set mark at where point is, or jump to mark.
dc029f0b
RM
1497With no prefix argument, set mark, push old mark position on local mark
1498ring, and push mark on global mark ring.
1499With argument, jump to mark, and pop a new position for mark off the ring
1500\(does not affect global mark ring\).
2076c87c 1501
ff1fbe3e 1502Novice Emacs Lisp programmers often try to use the mark for the wrong
2076c87c
JB
1503purposes. See the documentation of `set-mark' for more information."
1504 (interactive "P")
1505 (if (null arg)
9a1277dd 1506 (progn
fd0f4056 1507 (push-mark nil nil t))
af39530e 1508 (if (null (mark t))
2076c87c 1509 (error "No mark set in this buffer")
9a1277dd 1510 (goto-char (mark t))
2076c87c
JB
1511 (pop-mark))))
1512
fd0f4056 1513(defun push-mark (&optional location nomsg activate)
2076c87c 1514 "Set mark at LOCATION (point, by default) and push old mark on mark ring.
f1382a3d
RM
1515If the last global mark pushed was not in the current buffer,
1516also push LOCATION on the global mark ring.
fd0f4056 1517Display `Mark set' unless the optional second arg NOMSG is non-nil.
8cdc660f 1518In Transient Mark mode, activate mark if optional third arg ACTIVATE non-nil.
2076c87c 1519
ff1fbe3e 1520Novice Emacs Lisp programmers often try to use the mark for the wrong
9a1277dd
RS
1521purposes. See the documentation of `set-mark' for more information.
1522
1523In Transient Mark mode, this does not activate the mark."
af39530e 1524 (if (null (mark t))
2076c87c
JB
1525 nil
1526 (setq mark-ring (cons (copy-marker (mark-marker)) mark-ring))
1527 (if (> (length mark-ring) mark-ring-max)
1528 (progn
1529 (move-marker (car (nthcdr mark-ring-max mark-ring)) nil)
1530 (setcdr (nthcdr (1- mark-ring-max) mark-ring) nil))))
9a1277dd 1531 (set-marker (mark-marker) (or location (point)) (current-buffer))
dc029f0b 1532 ;; Now push the mark on the global mark ring.
f1382a3d 1533 (if (and global-mark-ring
e08d3f7c 1534 (eq (marker-buffer (car global-mark-ring)) (current-buffer)))
f1382a3d
RM
1535 ;; The last global mark pushed was in this same buffer.
1536 ;; Don't push another one.
1537 nil
1538 (setq global-mark-ring (cons (copy-marker (mark-marker)) global-mark-ring))
dc029f0b
RM
1539 (if (> (length global-mark-ring) global-mark-ring-max)
1540 (progn
1541 (move-marker (car (nthcdr global-mark-ring-max global-mark-ring))
1542 nil)
f1382a3d 1543 (setcdr (nthcdr (1- global-mark-ring-max) global-mark-ring) nil))))
2076c87c
JB
1544 (or nomsg executing-macro (> (minibuffer-depth) 0)
1545 (message "Mark set"))
8cdc660f
RS
1546 (if (or activate (not transient-mark-mode))
1547 (set-mark (mark t)))
2076c87c
JB
1548 nil)
1549
1550(defun pop-mark ()
1551 "Pop off mark ring into the buffer's actual mark.
1552Does not set point. Does nothing if mark ring is empty."
1553 (if mark-ring
1554 (progn
1555 (setq mark-ring (nconc mark-ring (list (copy-marker (mark-marker)))))
9a1277dd 1556 (set-marker (mark-marker) (+ 0 (car mark-ring)) (current-buffer))
19d35374 1557 (deactivate-mark)
2076c87c 1558 (move-marker (car mark-ring) nil)
9a1277dd 1559 (if (null (mark t)) (ding))
2076c87c
JB
1560 (setq mark-ring (cdr mark-ring)))))
1561
dff7d67f 1562(define-function 'exchange-dot-and-mark 'exchange-point-and-mark)
2076c87c 1563(defun exchange-point-and-mark ()
af39530e
RS
1564 "Put the mark where point is now, and point where the mark is now.
1565This command works even when the mark is not active,
1566and it reactivates the mark."
2076c87c 1567 (interactive nil)
af39530e 1568 (let ((omark (mark t)))
2076c87c
JB
1569 (if (null omark)
1570 (error "No mark set in this buffer"))
1571 (set-mark (point))
1572 (goto-char omark)
1573 nil))
e23c2c21
RS
1574
1575(defun transient-mark-mode (arg)
1576 "Toggle Transient Mark mode.
b411b5fa 1577With arg, turn Transient Mark mode on if arg is positive, off otherwise.
e23c2c21 1578
5dd1220d
RS
1579In Transient Mark mode, when the mark is active, the region is highlighted.
1580Changing the buffer \"deactivates\" the mark.
1581So do certain other operations that set the mark
1582but whose main purpose is something else--for example,
1583incremental search, \\[beginning-of-buffer], and \\[end-of-buffer]."
e23c2c21
RS
1584 (interactive "P")
1585 (setq transient-mark-mode
1586 (if (null arg)
1587 (not transient-mark-mode)
1588 (> (prefix-numeric-value arg) 0))))
dc029f0b
RM
1589
1590(defun pop-global-mark ()
1591 "Pop off global mark ring and jump to the top location."
1592 (interactive)
52b6d445
RS
1593 ;; Pop entries which refer to non-existent buffers.
1594 (while (and global-mark-ring (not (marker-buffer (car global-mark-ring))))
1595 (setq global-mark-ring (cdr global-mark-ring)))
dc029f0b
RM
1596 (or global-mark-ring
1597 (error "No global mark set"))
1598 (let* ((marker (car global-mark-ring))
1599 (buffer (marker-buffer marker))
1600 (position (marker-position marker)))
34c31301
RS
1601 (setq global-mark-ring (nconc (cdr global-mark-ring)
1602 (list (car global-mark-ring))))
dc029f0b
RM
1603 (set-buffer buffer)
1604 (or (and (>= position (point-min))
1605 (<= position (point-max)))
1606 (widen))
1607 (goto-char position)
1608 (switch-to-buffer buffer)))
2076c87c 1609\f
38ebcf29 1610(defvar next-line-add-newlines t
dff7d67f 1611 "*If non-nil, `next-line' inserts newline to avoid `end of buffer' error.")
38ebcf29 1612
2076c87c
JB
1613(defun next-line (arg)
1614 "Move cursor vertically down ARG lines.
1615If there is no character in the target line exactly under the current column,
1616the cursor is positioned after the character in that line which spans this
1617column, or at the end of the line if it is not long enough.
38ebcf29 1618If there is no line in the buffer after this one, behavior depends on the
1a2c3941
RS
1619value of `next-line-add-newlines'. If non-nil, it inserts a newline character
1620to create a line, and moves the cursor to that line. Otherwise it moves the
e47d38f6 1621cursor to the end of the buffer.
2076c87c
JB
1622
1623The command \\[set-goal-column] can be used to create
1624a semipermanent goal column to which this command always moves.
1625Then it does not try to move vertically. This goal column is stored
1626in `goal-column', which is nil when there is none.
1627
1628If you are thinking of using this in a Lisp program, consider
1629using `forward-line' instead. It is usually easier to use
1630and more reliable (no dependence on goal column, etc.)."
1631 (interactive "p")
028922cf
RS
1632 (if (and next-line-add-newlines (= arg 1))
1633 (let ((opoint (point)))
3534a809
RS
1634 (end-of-line)
1635 (if (eobp)
28191e20 1636 (newline 1)
028922cf
RS
1637 (goto-char opoint)
1638 (line-move arg)))
1a2c3941
RS
1639 (if (interactive-p)
1640 (condition-case nil
1641 (line-move arg)
1642 ((beginning-of-buffer end-of-buffer) (ding)))
1643 (line-move arg)))
2076c87c
JB
1644 nil)
1645
1646(defun previous-line (arg)
1647 "Move cursor vertically up ARG lines.
1648If there is no character in the target line exactly over the current column,
1649the cursor is positioned after the character in that line which spans this
1650column, or at the end of the line if it is not long enough.
1651
1652The command \\[set-goal-column] can be used to create
1653a semipermanent goal column to which this command always moves.
1654Then it does not try to move vertically.
1655
1656If you are thinking of using this in a Lisp program, consider using
c2e8a012 1657`forward-line' with a negative argument instead. It is usually easier
2076c87c
JB
1658to use and more reliable (no dependence on goal column, etc.)."
1659 (interactive "p")
1a2c3941
RS
1660 (if (interactive-p)
1661 (condition-case nil
1662 (line-move (- arg))
1663 ((beginning-of-buffer end-of-buffer) (ding)))
1664 (line-move (- arg)))
2076c87c
JB
1665 nil)
1666
1667(defconst track-eol nil
1668 "*Non-nil means vertical motion starting at end of line keeps to ends of lines.
1669This means moving to the end of each line moved onto.
1670The beginning of a blank line does not count as the end of a line.")
1671
912c6728
RS
1672(defvar goal-column nil
1673 "*Semipermanent goal column for vertical motion, as set by \\[set-goal-column], or nil.")
1674(make-variable-buffer-local 'goal-column)
2076c87c
JB
1675
1676(defvar temporary-goal-column 0
1677 "Current goal column for vertical motion.
1678It is the column where point was
1679at the start of current run of vertical motion commands.
c637ae6f 1680When the `track-eol' feature is doing its job, the value is 9999.")
2076c87c 1681
098fc1fb
RS
1682(defvar line-move-ignore-invisible nil
1683 "*Non-nil means \\[next-line] and \\[previous-line] ignore invisible lines.
1684Outline mode sets this.")
1685
8c745744
RS
1686;; This is the guts of next-line and previous-line.
1687;; Arg says how many lines to move.
2076c87c 1688(defun line-move (arg)
2596511d
RS
1689 ;; Don't run any point-motion hooks, and disregard intangibility,
1690 ;; for intermediate positions.
1691 (let ((inhibit-point-motion-hooks t)
1692 (opoint (point))
1693 new)
1694 (unwind-protect
1695 (progn
1696 (if (not (or (eq last-command 'next-line)
1697 (eq last-command 'previous-line)))
1698 (setq temporary-goal-column
1699 (if (and track-eol (eolp)
1700 ;; Don't count beg of empty line as end of line
1701 ;; unless we just did explicit end-of-line.
1702 (or (not (bolp)) (eq last-command 'end-of-line)))
1703 9999
1704 (current-column))))
1705 (if (and (not (integerp selective-display))
1706 (not line-move-ignore-invisible))
1707 ;; Use just newline characters.
1708 (or (if (> arg 0)
1709 (progn (if (> arg 1) (forward-line (1- arg)))
1710 ;; This way of moving forward ARG lines
1711 ;; verifies that we have a newline after the last one.
1712 ;; It doesn't get confused by intangible text.
1713 (end-of-line)
1714 (zerop (forward-line 1)))
1715 (and (zerop (forward-line arg))
1716 (bolp)))
1717 (signal (if (< arg 0)
1718 'beginning-of-buffer
1719 'end-of-buffer)
1720 nil))
1721 ;; Move by arg lines, but ignore invisible ones.
1722 (while (> arg 0)
1723 (end-of-line)
1724 (and (zerop (vertical-motion 1))
1725 (signal 'end-of-buffer nil))
1726 ;; If the following character is currently invisible,
1727 ;; skip all characters with that same `invisible' property value.
1728 (while (and (not (eobp))
1729 (let ((prop
1730 (get-char-property (point) 'invisible)))
1731 (if (eq buffer-invisibility-spec t)
1732 prop
1733 (or (memq prop buffer-invisibility-spec)
1734 (assq prop buffer-invisibility-spec)))))
1735 (if (get-text-property (point) 'invisible)
1736 (goto-char (next-single-property-change (point) 'invisible))
1737 (goto-char (next-overlay-change (point)))))
1738 (setq arg (1- arg)))
1739 (while (< arg 0)
1740 (beginning-of-line)
1741 (and (zerop (vertical-motion -1))
1742 (signal 'beginning-of-buffer nil))
1743 (while (and (not (bobp))
1744 (let ((prop
1745 (get-char-property (1- (point)) 'invisible)))
1746 (if (eq buffer-invisibility-spec t)
1747 prop
1748 (or (memq prop buffer-invisibility-spec)
1749 (assq prop buffer-invisibility-spec)))))
1750 (if (get-text-property (1- (point)) 'invisible)
1751 (goto-char (previous-single-property-change (point) 'invisible))
1752 (goto-char (previous-overlay-change (point)))))
1753 (setq arg (1+ arg))))
1754 (move-to-column (or goal-column temporary-goal-column)))
1755 ;; Remember where we moved to, go back home,
1756 ;; then do the motion over again
1757 ;; in just one step, with intangibility and point-motion hooks
1758 ;; enabled this time.
1759 (setq new (point))
1760 (goto-char opoint)
1761 (setq inhibit-point-motion-hooks nil)
1762 (goto-char new)))
1763 nil)
2076c87c 1764
d5ab2033
JB
1765;;; Many people have said they rarely use this feature, and often type
1766;;; it by accident. Maybe it shouldn't even be on a key.
1767(put 'set-goal-column 'disabled t)
2076c87c
JB
1768
1769(defun set-goal-column (arg)
1770 "Set the current horizontal position as a goal for \\[next-line] and \\[previous-line].
1771Those commands will move to this position in the line moved to
1772rather than trying to keep the same horizontal position.
1773With a non-nil argument, clears out the goal column
912c6728
RS
1774so that \\[next-line] and \\[previous-line] resume vertical motion.
1775The goal column is stored in the variable `goal-column'."
2076c87c
JB
1776 (interactive "P")
1777 (if arg
1778 (progn
1779 (setq goal-column nil)
1780 (message "No goal column"))
1781 (setq goal-column (current-column))
1782 (message (substitute-command-keys
1783 "Goal column %d (use \\[set-goal-column] with an arg to unset it)")
1784 goal-column))
1785 nil)
1786\f
0d5bbbf7
ER
1787;;; Partial support for horizontal autoscrolling. Someday, this feature
1788;;; will be built into the C level and all the (hscroll-point-visible) calls
1789;;; will go away.
1790
1791(defvar hscroll-step 0
1792 "*The number of columns to try scrolling a window by when point moves out.
1793If that fails to bring point back on frame, point is centered instead.
1794If this is zero, point is always centered after it moves off frame.")
1795
1796(defun hscroll-point-visible ()
26c5bf8e
KH
1797 "Scrolls the selected window horizontally to make point visible."
1798 (save-excursion
1799 (set-buffer (window-buffer))
1800 (if (not (or truncate-lines
1801 (> (window-hscroll) 0)
1802 (and truncate-partial-width-windows
1803 (< (window-width) (frame-width)))))
1804 ;; Point is always visible when lines are wrapped.
1805 ()
1806 ;; If point is on the invisible part of the line before window-start,
1807 ;; then hscrolling can't bring it back, so reset window-start first.
1808 (and (< (point) (window-start))
1809 (let ((ws-bol (save-excursion
1810 (goto-char (window-start))
1811 (beginning-of-line)
1812 (point))))
1813 (and (>= (point) ws-bol)
1814 (set-window-start nil ws-bol))))
1815 (let* ((here (hscroll-window-column))
1816 (left (min (window-hscroll) 1))
1817 (right (1- (window-width))))
1818 ;; Allow for the truncation glyph, if we're not exactly at eol.
1819 (if (not (and (= here right)
1820 (= (following-char) ?\n)))
1821 (setq right (1- right)))
1822 (cond
1823 ;; If too far away, just recenter. But don't show too much
1824 ;; white space off the end of the line.
1825 ((or (< here (- left hscroll-step))
1826 (> here (+ right hscroll-step)))
1827 (let ((eol (save-excursion (end-of-line) (hscroll-window-column))))
1828 (scroll-left (min (- here (/ (window-width) 2))
1829 (- eol (window-width) -5)))))
1830 ;; Within range. Scroll by one step (or maybe not at all).
1831 ((< here left)
1832 (scroll-right hscroll-step))
1833 ((> here right)
1834 (scroll-left hscroll-step)))))))
1835
1836;; This function returns the window's idea of the display column of point,
1837;; assuming that the window is already known to be truncated rather than
1838;; wrapped, and that we've already handled the case where point is on the
1839;; part of the line before window-start. We ignore window-width; if point
1840;; is beyond the right margin, we want to know how far. The return value
1841;; includes the effects of window-hscroll, window-start, and the prompt
1842;; string in the minibuffer. It may be negative due to hscroll.
1843(defun hscroll-window-column ()
1844 (let* ((hscroll (window-hscroll))
1845 (startpos (save-excursion
1846 (beginning-of-line)
1847 (if (= (point) (save-excursion
1848 (goto-char (window-start))
1849 (beginning-of-line)
1850 (point)))
1851 (goto-char (window-start)))
1852 (point)))
1853 (hpos (+ (if (and (eq (selected-window) (minibuffer-window))
1854 (= 1 (window-start))
1855 (= startpos (point-min)))
1856 (minibuffer-prompt-width)
1857 0)
1858 (min 0 (- 1 hscroll))))
1859 val)
1860 (car (cdr (compute-motion startpos (cons hpos 0)
1861 (point) (cons 0 1)
1862 1000000 (cons hscroll 0) nil)))))
1863
0d5bbbf7 1864
dff7d67f
RS
1865;; rms: (1) The definitions of arrow keys should not simply restate
1866;; what keys they are. The arrow keys should run the ordinary commands.
1867;; (2) The arrow keys are just one of many common ways of moving point
1868;; within a line. Real horizontal autoscrolling would be a good feature,
1869;; but supporting it only for arrow keys is too incomplete to be desirable.
1870
1871;;;;; Make arrow keys do the right thing for improved terminal support
1872;;;;; When we implement true horizontal autoscrolling, right-arrow and
1873;;;;; left-arrow can lose the (if truncate-lines ...) clause and become
1874;;;;; aliases. These functions are bound to the corresponding keyboard
1875;;;;; events in loaddefs.el.
1876
1877;;(defun right-arrow (arg)
1878;; "Move right one character on the screen (with prefix ARG, that many chars).
1879;;Scroll right if needed to keep point horizontally onscreen."
1880;; (interactive "P")
1881;; (forward-char arg)
1882;; (hscroll-point-visible))
1883
1884;;(defun left-arrow (arg)
1885;; "Move left one character on the screen (with prefix ARG, that many chars).
1886;;Scroll left if needed to keep point horizontally onscreen."
1887;; (interactive "P")
1888;; (backward-char arg)
1889;; (hscroll-point-visible))
7492f5a6
RS
1890
1891(defun scroll-other-window-down (lines)
e47d38f6
RS
1892 "Scroll the \"other window\" down.
1893For more details, see the documentation for `scroll-other-window'."
7492f5a6
RS
1894 (interactive "P")
1895 (scroll-other-window
1896 ;; Just invert the argument's meaning.
1897 ;; We can do that without knowing which window it will be.
1898 (if (eq lines '-) nil
1899 (if (null lines) '-
1900 (- (prefix-numeric-value lines))))))
e47d38f6 1901(define-key esc-map [?\C-\S-v] 'scroll-other-window-down)
3aef9604
RS
1902
1903(defun beginning-of-buffer-other-window (arg)
1904 "Move point to the beginning of the buffer in the other window.
1905Leave mark at previous position.
1906With arg N, put point N/10 of the way from the true beginning."
1907 (interactive "P")
1908 (let ((orig-window (selected-window))
1909 (window (other-window-for-scrolling)))
1910 ;; We use unwind-protect rather than save-window-excursion
1911 ;; because the latter would preserve the things we want to change.
1912 (unwind-protect
1913 (progn
1914 (select-window window)
1915 ;; Set point and mark in that window's buffer.
1916 (beginning-of-buffer arg)
1917 ;; Set point accordingly.
1918 (recenter '(t)))
1919 (select-window orig-window))))
1920
1921(defun end-of-buffer-other-window (arg)
1922 "Move point to the end of the buffer in the other window.
1923Leave mark at previous position.
1924With arg N, put point N/10 of the way from the true end."
1925 (interactive "P")
1926 ;; See beginning-of-buffer-other-window for comments.
1927 (let ((orig-window (selected-window))
1928 (window (other-window-for-scrolling)))
1929 (unwind-protect
1930 (progn
1931 (select-window window)
4500ff36 1932 (end-of-buffer arg)
3aef9604
RS
1933 (recenter '(t)))
1934 (select-window orig-window))))
38ebcf29 1935\f
2076c87c
JB
1936(defun transpose-chars (arg)
1937 "Interchange characters around point, moving forward one character.
1938With prefix arg ARG, effect is to take character before point
1939and drag it forward past ARG other characters (backward if ARG negative).
1940If no argument and at end of line, the previous two chars are exchanged."
1941 (interactive "*P")
1942 (and (null arg) (eolp) (forward-char -1))
1943 (transpose-subr 'forward-char (prefix-numeric-value arg)))
1944
1945(defun transpose-words (arg)
1946 "Interchange words around point, leaving point at end of them.
1947With prefix arg ARG, effect is to take word before or around point
1948and drag it forward past ARG other words (backward if ARG negative).
1949If ARG is zero, the words around or after point and around or after mark
1950are interchanged."
1951 (interactive "*p")
1952 (transpose-subr 'forward-word arg))
1953
1954(defun transpose-sexps (arg)
1955 "Like \\[transpose-words] but applies to sexps.
1956Does not work on a sexp that point is in the middle of
1957if it is a list or string."
1958 (interactive "*p")
1959 (transpose-subr 'forward-sexp arg))
1960
1961(defun transpose-lines (arg)
1962 "Exchange current line and previous line, leaving point after both.
1963With argument ARG, takes previous line and moves it past ARG lines.
1964With argument 0, interchanges line point is in with line mark is in."
1965 (interactive "*p")
1966 (transpose-subr (function
1967 (lambda (arg)
1968 (if (= arg 1)
1969 (progn
1970 ;; Move forward over a line,
1971 ;; but create a newline if none exists yet.
1972 (end-of-line)
1973 (if (eobp)
1974 (newline)
1975 (forward-char 1)))
1976 (forward-line arg))))
1977 arg))
1978
1979(defun transpose-subr (mover arg)
1980 (let (start1 end1 start2 end2)
1981 (if (= arg 0)
1982 (progn
1983 (save-excursion
1984 (funcall mover 1)
1985 (setq end2 (point))
1986 (funcall mover -1)
1987 (setq start2 (point))
1988 (goto-char (mark))
1989 (funcall mover 1)
1990 (setq end1 (point))
1991 (funcall mover -1)
1992 (setq start1 (point))
1993 (transpose-subr-1))
1994 (exchange-point-and-mark)))
1995 (while (> arg 0)
1996 (funcall mover -1)
1997 (setq start1 (point))
1998 (funcall mover 1)
1999 (setq end1 (point))
2000 (funcall mover 1)
2001 (setq end2 (point))
2002 (funcall mover -1)
2003 (setq start2 (point))
2004 (transpose-subr-1)
2005 (goto-char end2)
2006 (setq arg (1- arg)))
2007 (while (< arg 0)
2008 (funcall mover -1)
2009 (setq start2 (point))
2010 (funcall mover -1)
2011 (setq start1 (point))
2012 (funcall mover 1)
2013 (setq end1 (point))
2014 (funcall mover 1)
2015 (setq end2 (point))
2016 (transpose-subr-1)
2017 (setq arg (1+ arg)))))
2018
2019(defun transpose-subr-1 ()
2020 (if (> (min end1 end2) (max start1 start2))
2021 (error "Don't have two things to transpose"))
2022 (let ((word1 (buffer-substring start1 end1))
2023 (word2 (buffer-substring start2 end2)))
2024 (delete-region start2 end2)
2025 (goto-char start2)
2026 (insert word1)
2027 (goto-char (if (< start1 start2) start1
2028 (+ start1 (- (length word1) (length word2)))))
2029 (delete-char (length word1))
2030 (insert word2)))
2031\f
2032(defconst comment-column 32
2033 "*Column to indent right-margin comments to.
8a8fa723
JB
2034Setting this variable automatically makes it local to the current buffer.
2035Each mode establishes a different default value for this variable; you
b492f73b 2036can set the value for a particular mode using that mode's hook.")
2076c87c
JB
2037(make-variable-buffer-local 'comment-column)
2038
2039(defconst comment-start nil
534a0de5 2040 "*String to insert to start a new comment, or nil if no comment syntax.")
2076c87c
JB
2041
2042(defconst comment-start-skip nil
2043 "*Regexp to match the start of a comment plus everything up to its body.
2044If there are any \\(...\\) pairs, the comment delimiter text is held to begin
2045at the place matched by the close of the first pair.")
2046
2047(defconst comment-end ""
2048 "*String to insert to end a new comment.
2049Should be an empty string if comments are terminated by end-of-line.")
2050
ec9a76e3
JB
2051(defconst comment-indent-hook nil
2052 "Obsolete variable for function to compute desired indentation for a comment.
2053This function is called with no args with point at the beginning of
2054the comment's starting delimiter.")
2055
2056(defconst comment-indent-function
2076c87c
JB
2057 '(lambda () comment-column)
2058 "Function to compute desired indentation for a comment.
2059This function is called with no args with point at the beginning of
2060the comment's starting delimiter.")
2061
534a0de5
RS
2062(defconst block-comment-start nil
2063 "*String to insert to start a new comment on a line by itself.
2064If nil, use `comment-start' instead.
2065Note that the regular expression `comment-start-skip' should skip this string
2066as well as the `comment-start' string.")
2067
2068(defconst block-comment-end nil
2069 "*String to insert to end a new comment on a line by itself.
2070Should be an empty string if comments are terminated by end-of-line.
2071If nil, use `comment-end' instead.")
2072
2076c87c
JB
2073(defun indent-for-comment ()
2074 "Indent this line's comment to comment column, or insert an empty comment."
2075 (interactive "*")
534a0de5
RS
2076 (let* ((empty (save-excursion (beginning-of-line)
2077 (looking-at "[ \t]*$")))
2078 (starter (or (and empty block-comment-start) comment-start))
2079 (ender (or (and empty block-comment-end) comment-end)))
2080 (if (null starter)
2081 (error "No comment syntax defined")
2082 (let* ((eolpos (save-excursion (end-of-line) (point)))
2083 cpos indent begpos)
6389928d 2084 (beginning-of-line)
534a0de5
RS
2085 (if (re-search-forward comment-start-skip eolpos 'move)
2086 (progn (setq cpos (point-marker))
2087 ;; Find the start of the comment delimiter.
2088 ;; If there were paren-pairs in comment-start-skip,
2089 ;; position at the end of the first pair.
2090 (if (match-end 1)
2091 (goto-char (match-end 1))
2092 ;; If comment-start-skip matched a string with
2093 ;; internal whitespace (not final whitespace) then
2094 ;; the delimiter start at the end of that
2095 ;; whitespace. Otherwise, it starts at the
2096 ;; beginning of what was matched.
2097 (skip-syntax-backward " " (match-beginning 0))
2098 (skip-syntax-backward "^ " (match-beginning 0)))))
2099 (setq begpos (point))
2100 ;; Compute desired indent.
2101 (if (= (current-column)
2102 (setq indent (if comment-indent-hook
2103 (funcall comment-indent-hook)
2104 (funcall comment-indent-function))))
2105 (goto-char begpos)
2106 ;; If that's different from current, change it.
2107 (skip-chars-backward " \t")
2108 (delete-region (point) begpos)
2109 (indent-to indent))
2110 ;; An existing comment?
2111 (if cpos
2112 (progn (goto-char cpos)
2113 (set-marker cpos nil))
2114 ;; No, insert one.
2115 (insert starter)
2116 (save-excursion
2117 (insert ender)))))))
2076c87c
JB
2118
2119(defun set-comment-column (arg)
2120 "Set the comment column based on point.
2121With no arg, set the comment column to the current column.
2122With just minus as arg, kill any comment on this line.
2123With any other arg, set comment column to indentation of the previous comment
2124 and then align or create a comment on this line at that column."
2125 (interactive "P")
2126 (if (eq arg '-)
2127 (kill-comment nil)
2128 (if arg
2129 (progn
2130 (save-excursion
2131 (beginning-of-line)
2132 (re-search-backward comment-start-skip)
2133 (beginning-of-line)
2134 (re-search-forward comment-start-skip)
2135 (goto-char (match-beginning 0))
2136 (setq comment-column (current-column))
2137 (message "Comment column set to %d" comment-column))
2138 (indent-for-comment))
2139 (setq comment-column (current-column))
2140 (message "Comment column set to %d" comment-column))))
2141
2142(defun kill-comment (arg)
2143 "Kill the comment on this line, if any.
2144With argument, kill comments on that many lines starting with this one."
2145 ;; this function loses in a lot of situations. it incorrectly recognises
2146 ;; comment delimiters sometimes (ergo, inside a string), doesn't work
2147 ;; with multi-line comments, can kill extra whitespace if comment wasn't
2148 ;; through end-of-line, et cetera.
2149 (interactive "P")
2150 (or comment-start-skip (error "No comment syntax defined"))
2151 (let ((count (prefix-numeric-value arg)) endc)
2152 (while (> count 0)
2153 (save-excursion
2154 (end-of-line)
2155 (setq endc (point))
2156 (beginning-of-line)
2157 (and (string< "" comment-end)
2158 (setq endc
2159 (progn
2160 (re-search-forward (regexp-quote comment-end) endc 'move)
2161 (skip-chars-forward " \t")
2162 (point))))
2163 (beginning-of-line)
2164 (if (re-search-forward comment-start-skip endc t)
2165 (progn
2166 (goto-char (match-beginning 0))
2167 (skip-chars-backward " \t")
2168 (kill-region (point) endc)
2169 ;; to catch comments a line beginnings
2170 (indent-according-to-mode))))
2171 (if arg (forward-line 1))
2172 (setq count (1- count)))))
2173
2174(defun comment-region (beg end &optional arg)
f28039bb
RS
2175 "Comment or uncomment each line in the region.
2176With just C-u prefix arg, uncomment each line in region.
2177Numeric prefix arg ARG means use ARG comment characters.
2076c87c
JB
2178If ARG is negative, delete that many comment characters instead.
2179Comments are terminated on each line, even for syntax in which newline does
2180not end the comment. Blank lines do not get comments."
2181 ;; if someone wants it to only put a comment-start at the beginning and
2182 ;; comment-end at the end then typing it, C-x C-x, closing it, C-x C-x
2183 ;; is easy enough. No option is made here for other than commenting
2184 ;; every line.
f28039bb 2185 (interactive "r\nP")
2076c87c
JB
2186 (or comment-start (error "No comment syntax is defined"))
2187 (if (> beg end) (let (mid) (setq mid beg beg end end mid)))
2188 (save-excursion
2189 (save-restriction
f28039bb
RS
2190 (let ((cs comment-start) (ce comment-end)
2191 numarg)
2192 (if (consp arg) (setq numarg t)
2193 (setq numarg (prefix-numeric-value arg))
2194 ;; For positive arg > 1, replicate the comment delims now,
2195 ;; then insert the replicated strings just once.
2196 (while (> numarg 1)
2197 (setq cs (concat cs comment-start)
2198 ce (concat ce comment-end))
2199 (setq numarg (1- numarg))))
2200 ;; Loop over all lines from BEG to END.
2076c87c
JB
2201 (narrow-to-region beg end)
2202 (goto-char beg)
2203 (while (not (eobp))
f28039bb
RS
2204 (if (or (eq numarg t) (< numarg 0))
2205 (progn
2206 ;; Delete comment start from beginning of line.
2207 (if (eq numarg t)
2208 (while (looking-at (regexp-quote cs))
2209 (delete-char (length cs)))
2210 (let ((count numarg))
2211 (while (and (> 1 (setq count (1+ count)))
2212 (looking-at (regexp-quote cs)))
2213 (delete-char (length cs)))))
2214 ;; Delete comment end from end of line.
2215 (if (string= "" ce)
2216 nil
2217 (if (eq numarg t)
2218 (progn
2219 (end-of-line)
2220 ;; This is questionable if comment-end ends in
2221 ;; whitespace. That is pretty brain-damaged,
2222 ;; though.
2223 (skip-chars-backward " \t")
2224 (if (and (>= (- (point) (point-min)) (length ce))
2225 (save-excursion
2226 (backward-char (length ce))
2227 (looking-at (regexp-quote ce))))
2228 (delete-char (- (length ce)))))
ee095968
RS
2229 (let ((count numarg))
2230 (while (> 1 (setq count (1+ count)))
2231 (end-of-line)
2232 ;; this is questionable if comment-end ends in whitespace
2233 ;; that is pretty brain-damaged though
2234 (skip-chars-backward " \t")
2235 (save-excursion
2236 (backward-char (length ce))
2237 (if (looking-at (regexp-quote ce))
2238 (delete-char (length ce))))))))
6e88ed49 2239 (forward-line 1))
f28039bb 2240 ;; Insert at beginning and at end.
2076c87c
JB
2241 (if (looking-at "[ \t]*$") ()
2242 (insert cs)
2243 (if (string= "" ce) ()
2244 (end-of-line)
2245 (insert ce)))
2246 (search-forward "\n" nil 'move)))))))
2247\f
2248(defun backward-word (arg)
2249 "Move backward until encountering the end of a word.
2250With argument, do this that many times.
ff1fbe3e 2251In programs, it is faster to call `forward-word' with negative arg."
9e50756b 2252 (interactive "p")
2076c87c
JB
2253 (forward-word (- arg)))
2254
2255(defun mark-word (arg)
2256 "Set mark arg words away from point."
2257 (interactive "p")
2258 (push-mark
2259 (save-excursion
2260 (forward-word arg)
fd0f4056
RS
2261 (point))
2262 nil t))
2076c87c
JB
2263
2264(defun kill-word (arg)
2265 "Kill characters forward until encountering the end of a word.
2266With argument, do this that many times."
2267 (interactive "p")
e6291fe1 2268 (kill-region (point) (progn (forward-word arg) (point))))
2076c87c
JB
2269
2270(defun backward-kill-word (arg)
2271 "Kill characters backward until encountering the end of a word.
2272With argument, do this that many times."
2273 (interactive "p")
2274 (kill-word (- arg)))
d7c64071 2275
1e8c5ac4
RS
2276(defun current-word (&optional strict)
2277 "Return the word point is on (or a nearby word) as a string.
2278If optional arg STRICT is non-nil, return nil unless point is within
2279or adjacent to a word."
d7c64071
ER
2280 (save-excursion
2281 (let ((oldpoint (point)) (start (point)) (end (point)))
2282 (skip-syntax-backward "w_") (setq start (point))
2283 (goto-char oldpoint)
2284 (skip-syntax-forward "w_") (setq end (point))
2285 (if (and (eq start oldpoint) (eq end oldpoint))
1e8c5ac4
RS
2286 ;; Point is neither within nor adjacent to a word.
2287 (and (not strict)
2288 (progn
2289 ;; Look for preceding word in same line.
2290 (skip-syntax-backward "^w_"
2291 (save-excursion (beginning-of-line)
2292 (point)))
2293 (if (bolp)
2294 ;; No preceding word in same line.
2295 ;; Look for following word in same line.
2296 (progn
2297 (skip-syntax-forward "^w_"
2298 (save-excursion (end-of-line)
2299 (point)))
2300 (setq start (point))
2301 (skip-syntax-forward "w_")
2302 (setq end (point)))
2303 (setq end (point))
2304 (skip-syntax-backward "w_")
2305 (setq start (point)))
2306 (buffer-substring start end)))
2307 (buffer-substring start end)))))
2076c87c
JB
2308\f
2309(defconst fill-prefix nil
2310 "*String for filling to insert at front of new line, or nil for none.
2311Setting this variable automatically makes it local to the current buffer.")
2312(make-variable-buffer-local 'fill-prefix)
2313
2314(defconst auto-fill-inhibit-regexp nil
2315 "*Regexp to match lines which should not be auto-filled.")
2316
2317(defun do-auto-fill ()
a0170800
RS
2318 (let (fc justify bol give-up
2319 (fill-prefix fill-prefix))
c18465c4 2320 (if (or (not (setq justify (current-justification)))
8f066a20
RS
2321 (null (setq fc (current-fill-column)))
2322 (and (eq justify 'left)
2323 (<= (current-column) fc))
eed5698b
RS
2324 (save-excursion (beginning-of-line)
2325 (setq bol (point))
2326 (and auto-fill-inhibit-regexp
2327 (looking-at auto-fill-inhibit-regexp))))
2328 nil ;; Auto-filling not required
3db1e3b5
BG
2329 (if (memq justify '(full center right))
2330 (save-excursion (unjustify-current-line)))
a0170800
RS
2331
2332 ;; Choose a fill-prefix automatically.
2333 (if (and adaptive-fill-mode
2334 (or (null fill-prefix) (string= fill-prefix "")))
e4b62d7c
RS
2335 (let ((prefix
2336 (fill-context-prefix
2337 (save-excursion (backward-paragraph 1) (point))
2338 (save-excursion (forward-paragraph 1) (point))
2339 ;; Don't accept a non-whitespace fill prefix
2340 ;; from the first line of a paragraph.
2341 "^[ \t]*$")))
2342 (and prefix (not (equal prefix ""))
2343 (setq fill-prefix prefix))))
a0170800 2344
eed5698b 2345 (while (and (not give-up) (> (current-column) fc))
e47d38f6
RS
2346 ;; Determine where to split the line.
2347 (let ((fill-point
2348 (let ((opoint (point))
2349 bounce
2350 (first t))
2351 (save-excursion
2352 (move-to-column (1+ fc))
2353 ;; Move back to a word boundary.
2354 (while (or first
2355 ;; If this is after period and a single space,
2356 ;; move back once more--we don't want to break
2357 ;; the line there and make it look like a
2358 ;; sentence end.
2359 (and (not (bobp))
2360 (not bounce)
2361 sentence-end-double-space
2362 (save-excursion (forward-char -1)
2363 (and (looking-at "\\. ")
2364 (not (looking-at "\\. "))))))
2365 (setq first nil)
2366 (skip-chars-backward "^ \t\n")
2367 ;; If we find nowhere on the line to break it,
2368 ;; break after one word. Set bounce to t
2369 ;; so we will not keep going in this while loop.
2370 (if (bolp)
2371 (progn
2372 (re-search-forward "[ \t]" opoint t)
2373 (setq bounce t)))
2374 (skip-chars-backward " \t"))
2375 ;; Let fill-point be set to the place where we end up.
2376 (point)))))
2377 ;; If that place is not the beginning of the line,
2378 ;; break the line there.
2379 (if (save-excursion
2380 (goto-char fill-point)
2381 (not (bolp)))
2382 (let ((prev-column (current-column)))
2383 ;; If point is at the fill-point, do not `save-excursion'.
2384 ;; Otherwise, if a comment prefix or fill-prefix is inserted,
2385 ;; point will end up before it rather than after it.
2386 (if (save-excursion
2387 (skip-chars-backward " \t")
2388 (= (point) fill-point))
2389 (indent-new-comment-line t)
2390 (save-excursion
2391 (goto-char fill-point)
2392 (indent-new-comment-line t)))
2393 ;; Now do justification, if required
2394 (if (not (eq justify 'left))
2395 (save-excursion
2396 (end-of-line 0)
2397 (justify-current-line justify nil t)))
2398 ;; If making the new line didn't reduce the hpos of
2399 ;; the end of the line, then give up now;
2400 ;; trying again will not help.
2401 (if (>= (current-column) prev-column)
2402 (setq give-up t)))
2403 ;; No place to break => stop trying.
2404 (setq give-up t))))
eed5698b
RS
2405 ;; justify last line
2406 (justify-current-line justify t t))))
2076c87c 2407
d7465b15
RS
2408(defun auto-fill-mode (&optional arg)
2409 "Toggle auto-fill mode.
2410With arg, turn Auto-Fill mode on if and only if arg is positive.
eed5698b 2411In Auto-Fill mode, inserting a space at a column beyond `current-fill-column'
d7465b15
RS
2412automatically breaks the line at a previous space."
2413 (interactive "P")
2414 (prog1 (setq auto-fill-function
2415 (if (if (null arg)
2416 (not auto-fill-function)
2417 (> (prefix-numeric-value arg) 0))
2418 'do-auto-fill
2419 nil))
7911ecc8 2420 (force-mode-line-update)))
d7465b15
RS
2421
2422;; This holds a document string used to document auto-fill-mode.
2423(defun auto-fill-function ()
2424 "Automatically break line at a previous space, in insertion of text."
2425 nil)
2426
2427(defun turn-on-auto-fill ()
2428 "Unconditionally turn on Auto Fill mode."
2429 (auto-fill-mode 1))
2430
2431(defun set-fill-column (arg)
2432 "Set `fill-column' to current column, or to argument if given.
2433The variable `fill-column' has a separate value for each buffer."
2434 (interactive "P")
2435 (setq fill-column (if (integerp arg) arg (current-column)))
2436 (message "fill-column set to %d" fill-column))
2437\f
2076c87c
JB
2438(defconst comment-multi-line nil
2439 "*Non-nil means \\[indent-new-comment-line] should continue same comment
c88ab9ce
ER
2440on new line, with no new terminator or starter.
2441This is obsolete because you might as well use \\[newline-and-indent].")
2076c87c 2442
28191e20 2443(defun indent-new-comment-line (&optional soft)
d7465b15
RS
2444 "Break line at point and indent, continuing comment if within one.
2445This indents the body of the continued comment
2446under the previous comment line.
c88ab9ce
ER
2447
2448This command is intended for styles where you write a comment per line,
2449starting a new comment (and terminating it if necessary) on each line.
28191e20
RS
2450If you want to continue one comment across several lines, use \\[newline-and-indent].
2451
3a0c4755
RS
2452If a fill column is specified, it overrides the use of the comment column
2453or comment indentation.
2454
28191e20
RS
2455The inserted newline is marked hard if `use-hard-newlines' is true,
2456unless optional argument SOFT is non-nil."
2457 (interactive)
2076c87c
JB
2458 (let (comcol comstart)
2459 (skip-chars-backward " \t")
2460 (delete-region (point)
2461 (progn (skip-chars-forward " \t")
2462 (point)))
eed5698b 2463 (if soft (insert-and-inherit ?\n) (newline 1))
3a0c4755
RS
2464 (if fill-prefix
2465 (progn
2466 (indent-to-left-margin)
2467 (insert-and-inherit fill-prefix))
2468 (if (not comment-multi-line)
2076c87c 2469 (save-excursion
3a0c4755
RS
2470 (if (and comment-start-skip
2471 (let ((opoint (point)))
2472 (forward-line -1)
2473 (re-search-forward comment-start-skip opoint t)))
2474 ;; The old line is a comment.
2475 ;; Set WIN to the pos of the comment-start.
2476 ;; But if the comment is empty, look at preceding lines
2477 ;; to find one that has a nonempty comment.
2478
2479 ;; If comment-start-skip contains a \(...\) pair,
2480 ;; the real comment delimiter starts at the end of that pair.
2481 (let ((win (or (match-end 1) (match-beginning 0))))
2482 (while (and (eolp) (not (bobp))
2483 (let (opoint)
2484 (beginning-of-line)
2485 (setq opoint (point))
2486 (forward-line -1)
2487 (re-search-forward comment-start-skip opoint t)))
2488 (setq win (or (match-end 1) (match-beginning 0))))
2489 ;; Indent this line like what we found.
2490 (goto-char win)
2491 (setq comcol (current-column))
2492 (setq comstart
2493 (buffer-substring (point) (match-end 0)))))))
2494 (if comcol
2495 (let ((comment-column comcol)
2496 (comment-start comstart)
2497 (comment-end comment-end))
2498 (and comment-end (not (equal comment-end ""))
2499 ; (if (not comment-multi-line)
2500 (progn
2501 (forward-char -1)
2502 (insert comment-end)
2503 (forward-char 1))
2504 ; (setq comment-column (+ comment-column (length comment-start))
2505 ; comment-start "")
2506 ; )
2507 )
2508 (if (not (eolp))
2509 (setq comment-end ""))
2510 (insert-and-inherit ?\n)
2511 (forward-char -1)
2512 (indent-for-comment)
2513 (save-excursion
2514 ;; Make sure we delete the newline inserted above.
2515 (end-of-line)
2516 (delete-char 1)))
2517 (indent-according-to-mode)))))
2076c87c
JB
2518\f
2519(defun set-selective-display (arg)
ff1fbe3e
RS
2520 "Set `selective-display' to ARG; clear it if no arg.
2521When the value of `selective-display' is a number > 0,
2522lines whose indentation is >= that value are not displayed.
2523The variable `selective-display' has a separate value for each buffer."
2076c87c
JB
2524 (interactive "P")
2525 (if (eq selective-display t)
2526 (error "selective-display already in use for marked lines"))
c88ab9ce
ER
2527 (let ((current-vpos
2528 (save-restriction
2529 (narrow-to-region (point-min) (point))
2530 (goto-char (window-start))
2531 (vertical-motion (window-height)))))
2532 (setq selective-display
2533 (and arg (prefix-numeric-value arg)))
2534 (recenter current-vpos))
2076c87c
JB
2535 (set-window-start (selected-window) (window-start (selected-window)))
2536 (princ "selective-display set to " t)
2537 (prin1 selective-display t)
2538 (princ "." t))
2539
b6a22db0
JB
2540(defconst overwrite-mode-textual " Ovwrt"
2541 "The string displayed in the mode line when in overwrite mode.")
2542(defconst overwrite-mode-binary " Bin Ovwrt"
2543 "The string displayed in the mode line when in binary overwrite mode.")
2544
2076c87c
JB
2545(defun overwrite-mode (arg)
2546 "Toggle overwrite mode.
2547With arg, turn overwrite mode on iff arg is positive.
2548In overwrite mode, printing characters typed in replace existing text
b6a22db0
JB
2549on a one-for-one basis, rather than pushing it to the right. At the
2550end of a line, such characters extend the line. Before a tab,
2551such characters insert until the tab is filled in.
2552\\[quoted-insert] still inserts characters in overwrite mode; this
2553is supposed to make it easier to insert characters when necessary."
2554 (interactive "P")
2555 (setq overwrite-mode
2556 (if (if (null arg) (not overwrite-mode)
2557 (> (prefix-numeric-value arg) 0))
2558 'overwrite-mode-textual))
2559 (force-mode-line-update))
2560
2561(defun binary-overwrite-mode (arg)
2562 "Toggle binary overwrite mode.
2563With arg, turn binary overwrite mode on iff arg is positive.
2564In binary overwrite mode, printing characters typed in replace
2565existing text. Newlines are not treated specially, so typing at the
2566end of a line joins the line to the next, with the typed character
2567between them. Typing before a tab character simply replaces the tab
2568with the character typed.
2569\\[quoted-insert] replaces the text at the cursor, just as ordinary
2570typing characters do.
2571
2572Note that binary overwrite mode is not its own minor mode; it is a
2573specialization of overwrite-mode, entered by setting the
2574`overwrite-mode' variable to `overwrite-mode-binary'."
2076c87c
JB
2575 (interactive "P")
2576 (setq overwrite-mode
b6a22db0 2577 (if (if (null arg)
a61099dd 2578 (not (eq overwrite-mode 'overwrite-mode-binary))
b6a22db0
JB
2579 (> (prefix-numeric-value arg) 0))
2580 'overwrite-mode-binary))
2581 (force-mode-line-update))
2076c87c 2582\f
81e98f1a 2583(defvar line-number-mode t
a61099dd
RS
2584 "*Non-nil means display line number in mode line.")
2585
2586(defun line-number-mode (arg)
2587 "Toggle Line Number mode.
2588With arg, turn Line Number mode on iff arg is positive.
2589When Line Number mode is enabled, the line number appears
2590in the mode line."
2591 (interactive "P")
2592 (setq line-number-mode
2593 (if (null arg) (not line-number-mode)
2594 (> (prefix-numeric-value arg) 0)))
2595 (force-mode-line-update))
2596
71601101 2597(defvar column-number-mode nil
bcad4985
KH
2598 "*Non-nil means display column number in mode line.")
2599
2600(defun column-number-mode (arg)
2601 "Toggle Column Number mode.
2602With arg, turn Column Number mode on iff arg is positive.
2603When Column Number mode is enabled, the column number appears
2604in the mode line."
2605 (interactive "P")
2606 (setq column-number-mode
2607 (if (null arg) (not column-number-mode)
2608 (> (prefix-numeric-value arg) 0)))
2609 (force-mode-line-update))
2610
2076c87c
JB
2611(defvar blink-matching-paren t
2612 "*Non-nil means show matching open-paren when close-paren is inserted.")
2613
29fc44dd
KH
2614(defvar blink-matching-paren-on-screen t
2615 "*Non-nil means show matching open-paren when it is on screen.
2616nil means don't show it (but the open-paren can still be shown
2617when it is off screen.")
2618
37315725
RS
2619(defconst blink-matching-paren-distance 12000
2620 "*If non-nil, is maximum distance to search for matching open-paren.")
2076c87c 2621
72dddf8b
RS
2622(defconst blink-matching-delay 1
2623 "*The number of seconds that `blink-matching-open' will delay at a match.")
2624
903b7f65
RS
2625(defconst blink-matching-paren-dont-ignore-comments nil
2626 "*Non-nil means `blink-matching-paren' should not ignore comments.")
2627
2076c87c
JB
2628(defun blink-matching-open ()
2629 "Move cursor momentarily to the beginning of the sexp before point."
2630 (interactive)
2631 (and (> (point) (1+ (point-min)))
2076c87c 2632 blink-matching-paren
7e1ddd45
RS
2633 ;; Verify an even number of quoting characters precede the close.
2634 (= 1 (logand 1 (- (point)
2635 (save-excursion
2636 (forward-char -1)
2637 (skip-syntax-backward "/\\")
2638 (point)))))
2076c87c
JB
2639 (let* ((oldpos (point))
2640 (blinkpos)
2641 (mismatch))
2642 (save-excursion
2643 (save-restriction
2644 (if blink-matching-paren-distance
2645 (narrow-to-region (max (point-min)
2646 (- (point) blink-matching-paren-distance))
2647 oldpos))
2648 (condition-case ()
903b7f65
RS
2649 (let ((parse-sexp-ignore-comments
2650 (and parse-sexp-ignore-comments
2651 (not blink-matching-paren-dont-ignore-comments))))
2652 (setq blinkpos (scan-sexps oldpos -1)))
2076c87c 2653 (error nil)))
903b7f65
RS
2654 (and blinkpos
2655 (/= (char-syntax (char-after blinkpos))
2656 ?\$)
2076c87c 2657 (setq mismatch
903b7f65
RS
2658 (or (null (matching-paren (char-after blinkpos)))
2659 (/= (char-after (1- oldpos))
2660 (matching-paren (char-after blinkpos))))))
2076c87c
JB
2661 (if mismatch (setq blinkpos nil))
2662 (if blinkpos
2663 (progn
2664 (goto-char blinkpos)
2665 (if (pos-visible-in-window-p)
29fc44dd
KH
2666 (and blink-matching-paren-on-screen
2667 (sit-for blink-matching-delay))
2076c87c
JB
2668 (goto-char blinkpos)
2669 (message
2670 "Matches %s"
e9f1d66d 2671 ;; Show what precedes the open in its line, if anything.
2076c87c
JB
2672 (if (save-excursion
2673 (skip-chars-backward " \t")
2674 (not (bolp)))
2675 (buffer-substring (progn (beginning-of-line) (point))
2676 (1+ blinkpos))
e9f1d66d
RS
2677 ;; Show what follows the open in its line, if anything.
2678 (if (save-excursion
2679 (forward-char 1)
2680 (skip-chars-forward " \t")
2681 (not (eolp)))
2682 (buffer-substring blinkpos
2683 (progn (end-of-line) (point)))
267935b9
RS
2684 ;; Otherwise show the previous nonblank line,
2685 ;; if there is one.
2686 (if (save-excursion
2687 (skip-chars-backward "\n \t")
2688 (not (bobp)))
2689 (concat
2690 (buffer-substring (progn
2691 (skip-chars-backward "\n \t")
2692 (beginning-of-line)
2693 (point))
2694 (progn (end-of-line)
2695 (skip-chars-backward " \t")
2696 (point)))
2697 ;; Replace the newline and other whitespace with `...'.
2698 "..."
2699 (buffer-substring blinkpos (1+ blinkpos)))
2700 ;; There is nothing to show except the char itself.
2701 (buffer-substring blinkpos (1+ blinkpos))))))))
2076c87c
JB
2702 (cond (mismatch
2703 (message "Mismatched parentheses"))
2704 ((not blink-matching-paren-distance)
2705 (message "Unmatched parenthesis"))))))))
2706
2707;Turned off because it makes dbx bomb out.
2708(setq blink-paren-function 'blink-matching-open)
2709
9a1277dd
RS
2710;; This executes C-g typed while Emacs is waiting for a command.
2711;; Quitting out of a program does not go through here;
2712;; that happens in the QUIT macro at the C code level.
2076c87c 2713(defun keyboard-quit ()
af39530e
RS
2714 "Signal a quit condition.
2715During execution of Lisp code, this character causes a quit directly.
2716At top-level, as an editor command, this simply beeps."
2076c87c 2717 (interactive)
19d35374 2718 (deactivate-mark)
2076c87c
JB
2719 (signal 'quit nil))
2720
2721(define-key global-map "\C-g" 'keyboard-quit)
c66587fe 2722
1c6c6fde
RS
2723(defvar buffer-quit-function nil
2724 "Function to call to \"quit\" the current buffer, or nil if none.
2725\\[keyboard-escape-quit] calls this function when its more local actions
2726\(such as cancelling a prefix argument, minibuffer or region) do not apply.")
2727
c66587fe
RS
2728(defun keyboard-escape-quit ()
2729 "Exit the current \"mode\" (in a generalized sense of the word).
2730This command can exit an interactive command such as `query-replace',
2731can clear out a prefix argument or a region,
2732can get out of the minibuffer or other recursive edit,
1c6c6fde
RS
2733cancel the use of the current buffer (for special-purpose buffers),
2734or go back to just one window (by deleting all but the selected window)."
c66587fe
RS
2735 (interactive)
2736 (cond ((eq last-command 'mode-exited) nil)
2737 ((> (minibuffer-depth) 0)
2738 (abort-recursive-edit))
2739 (current-prefix-arg
2740 nil)
2741 ((and transient-mark-mode
2742 mark-active)
2743 (deactivate-mark))
1c6c6fde
RS
2744 (buffer-quit-function
2745 (funcall buffer-quit-function))
c66587fe
RS
2746 ((not (one-window-p t))
2747 (delete-other-windows))))
2748
1c6c6fde 2749(define-key global-map "\e\e\e" 'keyboard-escape-quit)
2076c87c
JB
2750\f
2751(defun set-variable (var val)
2752 "Set VARIABLE to VALUE. VALUE is a Lisp object.
2753When using this interactively, supply a Lisp expression for VALUE.
3a801d0c
ER
2754If you want VALUE to be a string, you must surround it with doublequotes.
2755
2756If VARIABLE has a `variable-interactive' property, that is used as if
2757it were the arg to `interactive' (which see) to interactively read the value."
2076c87c
JB
2758 (interactive
2759 (let* ((var (read-variable "Set variable: "))
2760 (minibuffer-help-form
2761 '(funcall myhelp))
2762 (myhelp
2763 (function
2764 (lambda ()
2765 (with-output-to-temp-buffer "*Help*"
2766 (prin1 var)
2767 (princ "\nDocumentation:\n")
2768 (princ (substring (documentation-property var 'variable-documentation)
2769 1))
2770 (if (boundp var)
2771 (let ((print-length 20))
2772 (princ "\n\nCurrent value: ")
2773 (prin1 (symbol-value var))))
e6bcd155
KH
2774 (save-excursion
2775 (set-buffer standard-output)
2776 (help-mode))
2076c87c
JB
2777 nil)))))
2778 (list var
3a801d0c
ER
2779 (let ((prop (get var 'variable-interactive)))
2780 (if prop
2781 ;; Use VAR's `variable-interactive' property
2782 ;; as an interactive spec for prompting.
2783 (call-interactively (list 'lambda '(arg)
2784 (list 'interactive prop)
2785 'arg))
2786 (eval-minibuffer (format "Set %s to value: " var)))))))
2076c87c 2787 (set var val))
e8a700bf
RS
2788\f
2789;; Define the major mode for lists of completions.
2790
98b45886
RS
2791(defvar completion-list-mode-map nil
2792 "Local map for completion list buffers.")
ac29eb79 2793(or completion-list-mode-map
e8a700bf
RS
2794 (let ((map (make-sparse-keymap)))
2795 (define-key map [mouse-2] 'mouse-choose-completion)
eaf76065 2796 (define-key map [down-mouse-2] nil)
80298193 2797 (define-key map "\C-m" 'choose-completion)
1c6c6fde 2798 (define-key map "\e\e\e" 'delete-completion-window)
dde69dbe
RS
2799 (define-key map [left] 'previous-completion)
2800 (define-key map [right] 'next-completion)
ac29eb79 2801 (setq completion-list-mode-map map)))
e8a700bf
RS
2802
2803;; Completion mode is suitable only for specially formatted data.
ac29eb79 2804(put 'completion-list-mode 'mode-class 'special)
e8a700bf 2805
98b45886
RS
2806(defvar completion-reference-buffer nil
2807 "Record the buffer that was current when the completion list was requested.
2808This is a local variable in the completion list buffer.
ec39964e 2809Initial value is nil to avoid some compiler warnings.")
3819736b 2810
98b45886
RS
2811(defvar completion-base-size nil
2812 "Number of chars at beginning of minibuffer not involved in completion.
2813This is a local variable in the completion list buffer
2814but it talks about the buffer in `completion-reference-buffer'.
2815If this is nil, it means to compare text to determine which part
2816of the tail end of the buffer's text is involved in completion.")
f6b293e3 2817
1c6c6fde
RS
2818(defun delete-completion-window ()
2819 "Delete the completion list window.
2820Go to the window from which completion was requested."
2821 (interactive)
2822 (let ((buf completion-reference-buffer))
2823 (delete-window (selected-window))
2824 (if (get-buffer-window buf)
2825 (select-window (get-buffer-window buf)))))
2826
dde69dbe
RS
2827(defun previous-completion (n)
2828 "Move to the previous item in the completion list."
2829 (interactive "p")
2830 (next-completion (- n)))
2831
2832(defun next-completion (n)
2833 "Move to the next item in the completion list.
2834WIth prefix argument N, move N items (negative N means move backward)."
2835 (interactive "p")
2836 (while (and (> n 0) (not (eobp)))
b61a81c2
RS
2837 (let ((prop (get-text-property (point) 'mouse-face))
2838 (end (point-max)))
dde69dbe
RS
2839 ;; If in a completion, move to the end of it.
2840 (if prop
b61a81c2 2841 (goto-char (next-single-property-change (point) 'mouse-face nil end)))
dde69dbe 2842 ;; Move to start of next one.
b61a81c2 2843 (goto-char (next-single-property-change (point) 'mouse-face nil end)))
dde69dbe
RS
2844 (setq n (1- n)))
2845 (while (and (< n 0) (not (bobp)))
b61a81c2
RS
2846 (let ((prop (get-text-property (1- (point)) 'mouse-face))
2847 (end (point-min)))
dde69dbe
RS
2848 ;; If in a completion, move to the start of it.
2849 (if prop
b61a81c2
RS
2850 (goto-char (previous-single-property-change
2851 (point) 'mouse-face nil end)))
dde69dbe 2852 ;; Move to end of the previous completion.
b61a81c2 2853 (goto-char (previous-single-property-change (point) 'mouse-face nil end))
dde69dbe 2854 ;; Move to the start of that one.
b61a81c2 2855 (goto-char (previous-single-property-change (point) 'mouse-face nil end)))
dde69dbe
RS
2856 (setq n (1+ n))))
2857
80298193
RS
2858(defun choose-completion ()
2859 "Choose the completion that point is in or next to."
2860 (interactive)
f6b293e3
RS
2861 (let (beg end completion (buffer completion-reference-buffer)
2862 (base-size completion-base-size))
6096f362
RS
2863 (if (and (not (eobp)) (get-text-property (point) 'mouse-face))
2864 (setq end (point) beg (1+ (point))))
2865 (if (and (not (bobp)) (get-text-property (1- (point)) 'mouse-face))
3f299281 2866 (setq end (1- (point)) beg (point)))
6096f362
RS
2867 (if (null beg)
2868 (error "No completion here"))
2869 (setq beg (previous-single-property-change beg 'mouse-face))
88dd3c24 2870 (setq end (or (next-single-property-change end 'mouse-face) (point-max)))
ab63960f
RS
2871 (setq completion (buffer-substring beg end))
2872 (let ((owindow (selected-window)))
2873 (if (and (one-window-p t 'selected-frame)
2874 (window-dedicated-p (selected-window)))
2875 ;; This is a special buffer's frame
2876 (iconify-frame (selected-frame))
2877 (or (window-dedicated-p (selected-window))
2878 (bury-buffer)))
2879 (select-window owindow))
f6b293e3 2880 (choose-completion-string completion buffer base-size)))
80298193
RS
2881
2882;; Delete the longest partial match for STRING
2883;; that can be found before POINT.
2884(defun choose-completion-delete-max-match (string)
2885 (let ((opoint (point))
2886 (len (min (length string)
2887 (- (point) (point-min)))))
2888 (goto-char (- (point) (length string)))
61bbf6fe
RS
2889 (if completion-ignore-case
2890 (setq string (downcase string)))
80298193
RS
2891 (while (and (> len 0)
2892 (let ((tail (buffer-substring (point)
2893 (+ (point) len))))
61bbf6fe
RS
2894 (if completion-ignore-case
2895 (setq tail (downcase tail)))
80298193
RS
2896 (not (string= tail (substring string 0 len)))))
2897 (setq len (1- len))
2898 (forward-char 1))
2899 (delete-char len)))
2900
98b45886
RS
2901;; Switch to BUFFER and insert the completion choice CHOICE.
2902;; BASE-SIZE, if non-nil, says how many characters of BUFFER's text
2903;; to keep. If it is nil, use choose-completion-delete-max-match instead.
f6b293e3 2904(defun choose-completion-string (choice &optional buffer base-size)
80298193 2905 (let ((buffer (or buffer completion-reference-buffer)))
cf52ad58
RS
2906 ;; If BUFFER is a minibuffer, barf unless it's the currently
2907 ;; active minibuffer.
2908 (if (and (string-match "\\` \\*Minibuf-[0-9]+\\*\\'" (buffer-name buffer))
45486731
RS
2909 (or (not (active-minibuffer-window))
2910 (not (equal buffer
2911 (window-buffer (active-minibuffer-window))))))
cf52ad58
RS
2912 (error "Minibuffer is not active for completion")
2913 ;; Insert the completion into the buffer where completion was requested.
2914 (set-buffer buffer)
f6b293e3
RS
2915 (if base-size
2916 (delete-region (+ base-size (point-min)) (point))
2917 (choose-completion-delete-max-match choice))
cf52ad58 2918 (insert choice)
63240af1
RS
2919 (remove-text-properties (- (point) (length choice)) (point)
2920 '(mouse-face nil))
cf52ad58
RS
2921 ;; Update point in the window that BUFFER is showing in.
2922 (let ((window (get-buffer-window buffer t)))
2923 (set-window-point window (point)))
2924 ;; If completing for the minibuffer, exit it with this choice.
2925 (and (equal buffer (window-buffer (minibuffer-window)))
8881ad9a
RS
2926 minibuffer-completion-table
2927 (exit-minibuffer)))))
80298193 2928
ac29eb79 2929(defun completion-list-mode ()
e8a700bf 2930 "Major mode for buffers showing lists of possible completions.
80298193
RS
2931Type \\<completion-list-mode-map>\\[choose-completion] in the completion list\
2932 to select the completion near point.
2933Use \\<completion-list-mode-map>\\[mouse-choose-completion] to select one\
2934 with the mouse."
e8a700bf
RS
2935 (interactive)
2936 (kill-all-local-variables)
ac29eb79
RS
2937 (use-local-map completion-list-mode-map)
2938 (setq mode-name "Completion List")
2939 (setq major-mode 'completion-list-mode)
f6b293e3
RS
2940 (make-local-variable 'completion-base-size)
2941 (setq completion-base-size nil)
ac29eb79 2942 (run-hooks 'completion-list-mode-hook))
e8a700bf 2943
98b45886
RS
2944(defvar completion-fixup-function nil
2945 "A function to customize how completions are identified in completion lists.
2946`completion-setup-function' calls this function with no arguments
2947each time it has found what it thinks is one completion.
2948Point is at the end of the completion in the completion list buffer.
2949If this function moves point, it can alter the end of that completion.")
2950
2951;; This function goes in completion-setup-hook, so that it is called
2952;; after the text of the completion list buffer is written.
6096f362 2953
e8a700bf
RS
2954(defun completion-setup-function ()
2955 (save-excursion
98b45886 2956 (let ((mainbuf (current-buffer)))
3819736b
RS
2957 (set-buffer standard-output)
2958 (completion-list-mode)
2959 (make-local-variable 'completion-reference-buffer)
2960 (setq completion-reference-buffer mainbuf)
98b45886
RS
2961;;; The value 0 is right in most cases, but not for file name completion.
2962;;; so this has to be turned off.
2963;;; (setq completion-base-size 0)
3819736b
RS
2964 (goto-char (point-min))
2965 (if window-system
2966 (insert (substitute-command-keys
80298193
RS
2967 "Click \\[mouse-choose-completion] on a completion to select it.\n")))
2968 (insert (substitute-command-keys
2969 "In this buffer, type \\[choose-completion] to \
c26bb96e
KH
2970select the completion near point.\n\n"))
2971 (forward-line 1)
6096f362
RS
2972 (while (re-search-forward "[^ \t\n]+\\( [^ \t\n]+\\)*" nil t)
2973 (let ((beg (match-beginning 0))
2974 (end (point)))
2975 (if completion-fixup-function
2976 (funcall completion-fixup-function))
2977 (put-text-property beg (point) 'mouse-face 'highlight)
2978 (goto-char end))))))
c88ab9ce 2979
e8a700bf 2980(add-hook 'completion-setup-hook 'completion-setup-function)
dde69dbe
RS
2981
2982(define-key minibuffer-local-completion-map [prior]
2983 'switch-to-completions)
2984(define-key minibuffer-local-must-match-map [prior]
2985 'switch-to-completions)
2986(define-key minibuffer-local-completion-map "\M-v"
2987 'switch-to-completions)
2988(define-key minibuffer-local-must-match-map "\M-v"
2989 'switch-to-completions)
2990
2991(defun switch-to-completions ()
2992 "Select the completion list window."
2993 (interactive)
9595fbdb
RS
2994 ;; Make sure we have a completions window.
2995 (or (get-buffer-window "*Completions*")
2996 (minibuffer-completion-help))
dde69dbe
RS
2997 (select-window (get-buffer-window "*Completions*"))
2998 (goto-char (point-min))
2999 (search-forward "\n\n")
3000 (forward-line 1))
a3d1480b 3001\f
82072f33
RS
3002;; Support keyboard commands to turn on various modifiers.
3003
3004;; These functions -- which are not commands -- each add one modifier
3005;; to the following event.
3006
3007(defun event-apply-alt-modifier (ignore-prompt)
3008 (vector (event-apply-modifier (read-event) 'alt 22 "A-")))
3009(defun event-apply-super-modifier (ignore-prompt)
3010 (vector (event-apply-modifier (read-event) 'super 23 "s-")))
3011(defun event-apply-hyper-modifier (ignore-prompt)
3012 (vector (event-apply-modifier (read-event) 'hyper 24 "H-")))
3013(defun event-apply-shift-modifier (ignore-prompt)
3014 (vector (event-apply-modifier (read-event) 'shift 25 "S-")))
3015(defun event-apply-control-modifier (ignore-prompt)
3016 (vector (event-apply-modifier (read-event) 'control 26 "C-")))
3017(defun event-apply-meta-modifier (ignore-prompt)
3018 (vector (event-apply-modifier (read-event) 'meta 27 "M-")))
3019
3020(defun event-apply-modifier (event symbol lshiftby prefix)
3021 "Apply a modifier flag to event EVENT.
3022SYMBOL is the name of this modifier, as a symbol.
3023LSHIFTBY is the numeric value of this modifier, in keyboard events.
3024PREFIX is the string that represents this modifier in an event type symbol."
3025 (if (numberp event)
3026 (cond ((eq symbol 'control)
90bebcb0
KH
3027 (if (and (<= (downcase event) ?z)
3028 (>= (downcase event) ?a))
82072f33 3029 (- (downcase event) ?a -1)
90bebcb0
KH
3030 (if (and (<= (downcase event) ?Z)
3031 (>= (downcase event) ?A))
82072f33
RS
3032 (- (downcase event) ?A -1)
3033 (logior (lsh 1 lshiftby) event))))
3034 ((eq symbol 'shift)
3035 (if (and (<= (downcase event) ?z)
3036 (>= (downcase event) ?a))
3037 (upcase event)
3038 (logior (lsh 1 lshiftby) event)))
3039 (t
3040 (logior (lsh 1 lshiftby) event)))
3041 (if (memq symbol (event-modifiers event))
3042 event
3043 (let ((event-type (if (symbolp event) event (car event))))
3044 (setq event-type (intern (concat prefix (symbol-name event-type))))
3045 (if (symbolp event)
3046 event-type
3047 (cons event-type (cdr event)))))))
3048
e5fff738
KH
3049(define-key function-key-map [?\C-x ?@ ?h] 'event-apply-hyper-modifier)
3050(define-key function-key-map [?\C-x ?@ ?s] 'event-apply-super-modifier)
3051(define-key function-key-map [?\C-x ?@ ?m] 'event-apply-meta-modifier)
3052(define-key function-key-map [?\C-x ?@ ?a] 'event-apply-alt-modifier)
3053(define-key function-key-map [?\C-x ?@ ?S] 'event-apply-shift-modifier)
3054(define-key function-key-map [?\C-x ?@ ?c] 'event-apply-control-modifier)
82072f33 3055\f
a3d1480b
JB
3056;;;; Keypad support.
3057
3058;;; Make the keypad keys act like ordinary typing keys. If people add
3059;;; bindings for the function key symbols, then those bindings will
3060;;; override these, so this shouldn't interfere with any existing
3061;;; bindings.
3062
0d173134 3063;; Also tell read-char how to handle these keys.
a3d1480b
JB
3064(mapcar
3065 (lambda (keypad-normal)
3066 (let ((keypad (nth 0 keypad-normal))
3067 (normal (nth 1 keypad-normal)))
0d173134 3068 (put keypad 'ascii-character normal)
a3d1480b
JB
3069 (define-key function-key-map (vector keypad) (vector normal))))
3070 '((kp-0 ?0) (kp-1 ?1) (kp-2 ?2) (kp-3 ?3) (kp-4 ?4)
3071 (kp-5 ?5) (kp-6 ?6) (kp-7 ?7) (kp-8 ?8) (kp-9 ?9)
3072 (kp-space ?\ )
3073 (kp-tab ?\t)
3074 (kp-enter ?\r)
3075 (kp-multiply ?*)
3076 (kp-add ?+)
3077 (kp-separator ?,)
3078 (kp-subtract ?-)
3079 (kp-decimal ?.)
3080 (kp-divide ?/)
3081 (kp-equal ?=)))
3082
c88ab9ce 3083;;; simple.el ends here