Don't distribute etc/Old files.
[bpt/emacs.git] / lisp / simple.el
CommitLineData
c88ab9ce
ER
1;;; simple.el --- basic editing commands for Emacs
2
a61099dd 3;; Copyright (C) 1985, 1986, 1987, 1993 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
3a801d0c 21;;; Code:
2076c87c
JB
22
23(defun open-line (arg)
ff1fbe3e 24 "Insert a newline and leave point before it.
616ed245
RS
25If there is a fill prefix, insert the fill prefix on the new line
26if the line would have been empty.
27With arg N, insert N newlines."
2076c87c 28 (interactive "*p")
616ed245
RS
29 (let* ((do-fill-prefix (and fill-prefix (bolp)))
30 (flag (and (null do-fill-prefix) (bolp) (not (bobp)))))
62c48f87
RS
31 ;; If this is a simple case, and we are at the beginning of a line,
32 ;; actually insert the newline *before* the preceding newline
33 ;; instead of after. That makes better display behavior.
34 (if flag
35 (progn
36 ;; If undo is enabled, don't let this hack be visible:
37 ;; record the real value of point as the place to move back to
38 ;; if we undo this insert.
39 (if (and buffer-undo-list (not (eq buffer-undo-list t)))
40 (setq buffer-undo-list (cons (point) buffer-undo-list)))
41 (forward-char -1)))
2076c87c
JB
42 (while (> arg 0)
43 (save-excursion
616ed245
RS
44 (insert ?\n))
45 (if do-fill-prefix (insert fill-prefix))
2076c87c
JB
46 (setq arg (1- arg)))
47 (if flag (forward-char 1))))
48
49(defun split-line ()
50 "Split current line, moving portion beyond point vertically down."
51 (interactive "*")
52 (skip-chars-forward " \t")
53 (let ((col (current-column))
54 (pos (point)))
55 (insert ?\n)
56 (indent-to col 0)
57 (goto-char pos)))
58
59(defun quoted-insert (arg)
60 "Read next input character and insert it.
ff1fbe3e 61This is useful for inserting control characters.
dbc4e1c1 62You may also type up to 3 octal digits, to insert a character with that code.
b6a22db0
JB
63
64In overwrite mode, this function inserts the character anyway, and
65does not handle octal digits specially. This means that if you use
66overwrite as your normal editing mode, you can use this function to
67insert characters when necessary.
68
69In binary overwrite mode, this function does overwrite, and octal
70digits are interpreted as a character code. This is supposed to make
71this function useful in editing binary files."
2076c87c 72 (interactive "*p")
b6a22db0
JB
73 (let ((char (if (or (not overwrite-mode)
74 (eq overwrite-mode 'overwrite-mode-binary))
75 (read-quoted-char)
76 (read-char))))
77 (if (eq overwrite-mode 'overwrite-mode-binary)
78 (delete-char arg))
1537a263 79 (insert-char char arg)))
2076c87c
JB
80
81(defun delete-indentation (&optional arg)
82 "Join this line to previous and fix up whitespace at join.
ccc58657 83If there is a fill prefix, delete it from the beginning of this line.
2076c87c
JB
84With argument, join this line to following line."
85 (interactive "*P")
86 (beginning-of-line)
87 (if arg (forward-line 1))
88 (if (eq (preceding-char) ?\n)
89 (progn
90 (delete-region (point) (1- (point)))
ccc58657
RS
91 ;; If the second line started with the fill prefix,
92 ;; delete the prefix.
93 (if (and fill-prefix
01b8e020 94 (<= (+ (point) (length fill-prefix)) (point-max))
ccc58657
RS
95 (string= fill-prefix
96 (buffer-substring (point)
97 (+ (point) (length fill-prefix)))))
98 (delete-region (point) (+ (point) (length fill-prefix))))
2076c87c
JB
99 (fixup-whitespace))))
100
101(defun fixup-whitespace ()
102 "Fixup white space between objects around point.
103Leave one space or none, according to the context."
104 (interactive "*")
105 (save-excursion
106 (delete-horizontal-space)
107 (if (or (looking-at "^\\|\\s)")
108 (save-excursion (forward-char -1)
109 (looking-at "$\\|\\s(\\|\\s'")))
110 nil
111 (insert ?\ ))))
112
113(defun delete-horizontal-space ()
114 "Delete all spaces and tabs around point."
115 (interactive "*")
116 (skip-chars-backward " \t")
117 (delete-region (point) (progn (skip-chars-forward " \t") (point))))
118
119(defun just-one-space ()
120 "Delete all spaces and tabs around point, leaving one space."
121 (interactive "*")
122 (skip-chars-backward " \t")
123 (if (= (following-char) ? )
124 (forward-char 1)
125 (insert ? ))
126 (delete-region (point) (progn (skip-chars-forward " \t") (point))))
127
128(defun delete-blank-lines ()
129 "On blank line, delete all surrounding blank lines, leaving just one.
130On isolated blank line, delete that one.
131On nonblank line, delete all blank lines that follow it."
132 (interactive "*")
133 (let (thisblank singleblank)
134 (save-excursion
135 (beginning-of-line)
136 (setq thisblank (looking-at "[ \t]*$"))
70e14c01 137 ;; Set singleblank if there is just one blank line here.
2076c87c
JB
138 (setq singleblank
139 (and thisblank
140 (not (looking-at "[ \t]*\n[ \t]*$"))
141 (or (bobp)
142 (progn (forward-line -1)
143 (not (looking-at "[ \t]*$")))))))
70e14c01 144 ;; Delete preceding blank lines, and this one too if it's the only one.
2076c87c
JB
145 (if thisblank
146 (progn
147 (beginning-of-line)
148 (if singleblank (forward-line 1))
149 (delete-region (point)
150 (if (re-search-backward "[^ \t\n]" nil t)
151 (progn (forward-line 1) (point))
152 (point-min)))))
70e14c01
JB
153 ;; Delete following blank lines, unless the current line is blank
154 ;; and there are no following blank lines.
2076c87c
JB
155 (if (not (and thisblank singleblank))
156 (save-excursion
157 (end-of-line)
158 (forward-line 1)
159 (delete-region (point)
160 (if (re-search-forward "[^ \t\n]" nil t)
161 (progn (beginning-of-line) (point))
70e14c01
JB
162 (point-max)))))
163 ;; Handle the special case where point is followed by newline and eob.
164 ;; Delete the line, leaving point at eob.
165 (if (looking-at "^[ \t]*\n\\'")
166 (delete-region (point) (point-max)))))
2076c87c
JB
167
168(defun back-to-indentation ()
169 "Move point to the first non-whitespace character on this line."
170 (interactive)
171 (beginning-of-line 1)
172 (skip-chars-forward " \t"))
173
174(defun newline-and-indent ()
175 "Insert a newline, then indent according to major mode.
ff1fbe3e 176Indentation is done using the value of `indent-line-function'.
2076c87c 177In programming language modes, this is the same as TAB.
ff1fbe3e
RS
178In some text modes, where TAB inserts a tab, this command indents to the
179column specified by the variable `left-margin'."
2076c87c
JB
180 (interactive "*")
181 (delete-region (point) (progn (skip-chars-backward " \t") (point)))
46947372 182 (newline)
2076c87c
JB
183 (indent-according-to-mode))
184
185(defun reindent-then-newline-and-indent ()
186 "Reindent current line, insert newline, then indent the new line.
187Indentation of both lines is done according to the current major mode,
ff1fbe3e 188which means calling the current value of `indent-line-function'.
2076c87c
JB
189In programming language modes, this is the same as TAB.
190In some text modes, where TAB inserts a tab, this indents to the
ff1fbe3e 191column specified by the variable `left-margin'."
2076c87c
JB
192 (interactive "*")
193 (save-excursion
194 (delete-region (point) (progn (skip-chars-backward " \t") (point)))
195 (indent-according-to-mode))
46947372 196 (newline)
2076c87c
JB
197 (indent-according-to-mode))
198
199;; Internal subroutine of delete-char
200(defun kill-forward-chars (arg)
201 (if (listp arg) (setq arg (car arg)))
202 (if (eq arg '-) (setq arg -1))
203 (kill-region (point) (+ (point) arg)))
204
205;; Internal subroutine of backward-delete-char
206(defun kill-backward-chars (arg)
207 (if (listp arg) (setq arg (car arg)))
208 (if (eq arg '-) (setq arg -1))
209 (kill-region (point) (- (point) arg)))
210
211(defun backward-delete-char-untabify (arg &optional killp)
212 "Delete characters backward, changing tabs into spaces.
213Delete ARG chars, and kill (save in kill ring) if KILLP is non-nil.
214Interactively, ARG is the prefix arg (default 1)
215and KILLP is t if prefix arg is was specified."
216 (interactive "*p\nP")
217 (let ((count arg))
218 (save-excursion
219 (while (and (> count 0) (not (bobp)))
220 (if (= (preceding-char) ?\t)
221 (let ((col (current-column)))
222 (forward-char -1)
223 (setq col (- col (current-column)))
224 (insert-char ?\ col)
225 (delete-char 1)))
226 (forward-char -1)
227 (setq count (1- count)))))
228 (delete-backward-char arg killp)
229 ;; In overwrite mode, back over columns while clearing them out,
230 ;; unless at end of line.
231 (and overwrite-mode (not (eolp))
232 (save-excursion (insert-char ?\ arg))))
233
234(defun zap-to-char (arg char)
235 "Kill up to and including ARG'th occurrence of CHAR.
236Goes backward if ARG is negative; error if CHAR not found."
237 (interactive "p\ncZap to char: ")
238 (kill-region (point) (progn
239 (search-forward (char-to-string char) nil nil arg)
240; (goto-char (if (> arg 0) (1- (point)) (1+ (point))))
241 (point))))
242
243(defun beginning-of-buffer (&optional arg)
244 "Move point to the beginning of the buffer; leave mark at previous position.
245With arg N, put point N/10 of the way from the true beginning.
ff1fbe3e
RS
246
247Don't use this command in Lisp programs!
2076c87c
JB
248\(goto-char (point-min)) is faster and avoids clobbering the mark."
249 (interactive "P")
250 (push-mark)
251 (goto-char (if arg
252 (if (> (buffer-size) 10000)
253 ;; Avoid overflow for large buffer sizes!
254 (* (prefix-numeric-value arg)
255 (/ (buffer-size) 10))
256 (/ (+ 10 (* (buffer-size) (prefix-numeric-value arg))) 10))
257 (point-min)))
258 (if arg (forward-line 1)))
259
260(defun end-of-buffer (&optional arg)
261 "Move point to the end of the buffer; leave mark at previous position.
262With arg N, put point N/10 of the way from the true end.
ff1fbe3e
RS
263
264Don't use this command in Lisp programs!
2076c87c
JB
265\(goto-char (point-max)) is faster and avoids clobbering the mark."
266 (interactive "P")
267 (push-mark)
268 (goto-char (if arg
269 (- (1+ (buffer-size))
270 (if (> (buffer-size) 10000)
271 ;; Avoid overflow for large buffer sizes!
272 (* (prefix-numeric-value arg)
273 (/ (buffer-size) 10))
274 (/ (* (buffer-size) (prefix-numeric-value arg)) 10)))
275 (point-max)))
3a801d0c
ER
276 ;; If we went to a place in the middle of the buffer,
277 ;; adjust it to the beginning of a line.
2076c87c 278 (if arg (forward-line 1)
3a801d0c
ER
279 ;; If the end of the buffer is not already on the screen,
280 ;; then scroll specially to put it near, but not at, the bottom.
281 (if (let ((old-point (point)))
282 (save-excursion
283 (goto-char (window-start))
284 (vertical-motion (window-height))
285 (< (point) old-point)))
286 (recenter -3))))
2076c87c
JB
287
288(defun mark-whole-buffer ()
70e14c01
JB
289 "Put point at beginning and mark at end of buffer.
290You probably should not use this function in Lisp programs;
291it is usually a mistake for a Lisp function to use any subroutine
292that uses or sets the mark."
2076c87c
JB
293 (interactive)
294 (push-mark (point))
295 (push-mark (point-max))
296 (goto-char (point-min)))
297
298(defun count-lines-region (start end)
299 "Print number of lines and charcters in the region."
300 (interactive "r")
301 (message "Region has %d lines, %d characters"
302 (count-lines start end) (- end start)))
303
304(defun what-line ()
305 "Print the current line number (in the buffer) of point."
306 (interactive)
307 (save-restriction
308 (widen)
309 (save-excursion
310 (beginning-of-line)
311 (message "Line %d"
312 (1+ (count-lines 1 (point)))))))
313
314(defun count-lines (start end)
315 "Return number of lines between START and END.
316This is usually the number of newlines between them,
ff1fbe3e 317but can be one more if START is not equal to END
2076c87c
JB
318and the greater of them is not at the start of a line."
319 (save-excursion
320 (save-restriction
321 (narrow-to-region start end)
322 (goto-char (point-min))
323 (if (eq selective-display t)
324 (let ((done 0))
325 (while (re-search-forward "[\n\C-m]" nil t 40)
326 (setq done (+ 40 done)))
327 (while (re-search-forward "[\n\C-m]" nil t 1)
328 (setq done (+ 1 done)))
329 done)
330 (- (buffer-size) (forward-line (buffer-size)))))))
331
332(defun what-cursor-position ()
333 "Print info on cursor position (on screen and within buffer)."
334 (interactive)
335 (let* ((char (following-char))
336 (beg (point-min))
337 (end (point-max))
338 (pos (point))
339 (total (buffer-size))
340 (percent (if (> total 50000)
341 ;; Avoid overflow from multiplying by 100!
342 (/ (+ (/ total 200) (1- pos)) (max (/ total 100) 1))
343 (/ (+ (/ total 2) (* 100 (1- pos))) (max total 1))))
344 (hscroll (if (= (window-hscroll) 0)
345 ""
346 (format " Hscroll=%d" (window-hscroll))))
347 (col (current-column)))
348 (if (= pos end)
349 (if (or (/= beg 1) (/= end (1+ total)))
350 (message "point=%d of %d(%d%%) <%d - %d> column %d %s"
351 pos total percent beg end col hscroll)
352 (message "point=%d of %d(%d%%) column %d %s"
353 pos total percent col hscroll))
354 (if (or (/= beg 1) (/= end (1+ total)))
355 (message "Char: %s (0%o) point=%d of %d(%d%%) <%d - %d> column %d %s"
356 (single-key-description char) char pos total percent beg end col hscroll)
357 (message "Char: %s (0%o) point=%d of %d(%d%%) column %d %s"
358 (single-key-description char) char pos total percent col hscroll)))))
359
360(defun fundamental-mode ()
361 "Major mode not specialized for anything in particular.
362Other major modes are defined by comparison with this one."
363 (interactive)
364 (kill-all-local-variables))
365
854c16c5
RS
366(defvar read-expression-map (copy-keymap minibuffer-local-map)
367 "Minibuffer keymap used for reading Lisp expressions.")
368(define-key read-expression-map "\M-\t" 'lisp-complete-symbol)
369
2076c87c
JB
370(put 'eval-expression 'disabled t)
371
372;; We define this, rather than making eval interactive,
373;; for the sake of completion of names like eval-region, eval-current-buffer.
374(defun eval-expression (expression)
375 "Evaluate EXPRESSION and print value in minibuffer.
eb57c304 376Value is also consed on to front of the variable `values'."
854c16c5
RS
377 (interactive (list (read-from-minibuffer "Eval: "
378 nil read-expression-map t)))
2076c87c
JB
379 (setq values (cons (eval expression) values))
380 (prin1 (car values) t))
381
382(defun edit-and-eval-command (prompt command)
383 "Prompting with PROMPT, let user edit COMMAND and eval result.
384COMMAND is a Lisp expression. Let user edit that expression in
385the minibuffer, then read and evaluate the result."
854c16c5
RS
386 (let ((command (read-from-minibuffer prompt
387 (prin1-to-string command)
388 read-expression-map t)))
2076c87c
JB
389 ;; Add edited command to command history, unless redundant.
390 (or (equal command (car command-history))
391 (setq command-history (cons command command-history)))
392 (eval command)))
393
ebb61177 394(defun repeat-complex-command (arg)
2076c87c
JB
395 "Edit and re-evaluate last complex command, or ARGth from last.
396A complex command is one which used the minibuffer.
397The command is placed in the minibuffer as a Lisp form for editing.
398The result is executed, repeating the command as changed.
399If the command has been changed or is not the most recent previous command
400it is added to the front of the command history.
eb6e9899
RS
401You can use the minibuffer history commands \\<minibuffer-local-map>\\[next-history-element] and \\[previous-history-element]
402to get different commands to edit and resubmit."
2076c87c 403 (interactive "p")
ba343182 404 (let ((elt (nth (1- arg) command-history))
ebb61177 405 (minibuffer-history-position arg)
ba343182 406 (minibuffer-history-sexp-flag t)
2076c87c
JB
407 newcmd)
408 (if elt
854c16c5 409 (progn
2076c87c
JB
410 (setq newcmd (read-from-minibuffer "Redo: "
411 (prin1-to-string elt)
854c16c5 412 read-expression-map
770970cb
RS
413 t
414 (cons 'command-history
415 arg)))
854c16c5
RS
416 ;; If command was added to command-history as a string,
417 ;; get rid of that. We want only evallable expressions there.
418 (if (stringp (car command-history))
419 (setq command-history (cdr command-history)))
2076c87c
JB
420 ;; If command to be redone does not match front of history,
421 ;; add it to the history.
422 (or (equal newcmd (car command-history))
423 (setq command-history (cons newcmd command-history)))
424 (eval newcmd))
425 (ding))))
e91f80c4 426\f
854c16c5
RS
427(defvar minibuffer-history nil
428 "Default minibuffer history list.
429This is used for all minibuffer input
430except when an alternate history list is specified.")
431(defvar minibuffer-history-sexp-flag nil
432 "Nonzero when doing history operations on `command-history'.
433More generally, indicates that the history list being acted on
434contains expressions rather than strings.")
e91f80c4
RS
435(setq minibuffer-history-variable 'minibuffer-history)
436(setq minibuffer-history-position nil)
854c16c5 437(defvar minibuffer-history-search-history nil)
e91f80c4 438
29929437 439(mapcar
d0678801
RM
440 (lambda (key-and-command)
441 (mapcar
442 (lambda (keymap-and-completionp)
443 ;; Arg is (KEYMAP-SYMBOL . COMPLETION-MAP-P).
444 ;; If the cdr of KEY-AND-COMMAND (the command) is a cons,
445 ;; its car is used if COMPLETION-MAP-P is nil, its cdr if it is t.
446 (define-key (symbol-value (car keymap-and-completionp))
447 (car key-and-command)
448 (let ((command (cdr key-and-command)))
449 (if (consp command)
b5e6f936
RM
450 ;; (and ... nil) => ... turns back on the completion-oriented
451 ;; history commands which rms turned off since they seem to
452 ;; do things he doesn't like.
453 (if (and (cdr keymap-and-completionp) nil) ;XXX turned off
d81362b0 454 (progn (error "EMACS BUG!") (cdr command))
d0678801
RM
455 (car command))
456 command))))
457 '((minibuffer-local-map . nil)
458 (minibuffer-local-ns-map . nil)
459 (minibuffer-local-completion-map . t)
460 (minibuffer-local-must-match-map . t)
461 (read-expression-map . nil))))
d81362b0
RM
462 '(("\en" . (next-history-element . next-complete-history-element))
463 ([next] . (next-history-element . next-complete-history-element))
464 ("\ep" . (previous-history-element . previous-complete-history-element))
465 ([prior] . (previous-history-element . previous-complete-history-element))
29929437
JB
466 ("\er" . previous-matching-history-element)
467 ("\es" . next-matching-history-element)))
e91f80c4 468
e91f80c4 469(defun previous-matching-history-element (regexp n)
854c16c5
RS
470 "Find the previous history element that matches REGEXP.
471\(Previous history elements refer to earlier actions.)
472With prefix argument N, search for Nth previous match.
473If N is negative, find the next or Nth next match."
474 (interactive
475 (let ((enable-recursive-minibuffers t)
476 (minibuffer-history-sexp-flag nil))
477 (list (read-from-minibuffer "Previous element matching (regexp): "
478 nil
479 minibuffer-local-map
480 nil
481 'minibuffer-history-search-history)
482 (prefix-numeric-value current-prefix-arg))))
e91f80c4 483 (let ((history (symbol-value minibuffer-history-variable))
ccc58657 484 prevpos
e91f80c4
RS
485 (pos minibuffer-history-position))
486 (while (/= n 0)
487 (setq prevpos pos)
488 (setq pos (min (max 1 (+ pos (if (< n 0) -1 1))) (length history)))
489 (if (= pos prevpos)
490 (error (if (= pos 1)
ccc58657
RS
491 "No later matching history item"
492 "No earlier matching history item")))
e91f80c4
RS
493 (if (string-match regexp
494 (if minibuffer-history-sexp-flag
495 (prin1-to-string (nth (1- pos) history))
496 (nth (1- pos) history)))
854c16c5 497 (setq n (+ n (if (< n 0) 1 -1)))))
e91f80c4
RS
498 (setq minibuffer-history-position pos)
499 (erase-buffer)
500 (let ((elt (nth (1- pos) history)))
501 (insert (if minibuffer-history-sexp-flag
502 (prin1-to-string elt)
503 elt)))
854c16c5
RS
504 (goto-char (point-min)))
505 (if (or (eq (car (car command-history)) 'previous-matching-history-element)
506 (eq (car (car command-history)) 'next-matching-history-element))
507 (setq command-history (cdr command-history))))
e91f80c4 508
e91f80c4 509(defun next-matching-history-element (regexp n)
854c16c5
RS
510 "Find the next history element that matches REGEXP.
511\(The next history element refers to a more recent action.)
512With prefix argument N, search for Nth next match.
513If N is negative, find the previous or Nth previous match."
514 (interactive
515 (let ((enable-recursive-minibuffers t)
516 (minibuffer-history-sexp-flag nil))
517 (list (read-from-minibuffer "Next element matching (regexp): "
518 nil
519 minibuffer-local-map
520 nil
521 'minibuffer-history-search-history)
522 (prefix-numeric-value current-prefix-arg))))
e91f80c4 523 (previous-matching-history-element regexp (- n)))
2076c87c 524
ebb61177
RS
525(defun next-history-element (n)
526 "Insert the next element of the minibuffer history into the minibuffer."
2076c87c 527 (interactive "p")
ebb61177
RS
528 (let ((narg (min (max 1 (- minibuffer-history-position n))
529 (length (symbol-value minibuffer-history-variable)))))
530 (if (= minibuffer-history-position narg)
531 (error (if (= minibuffer-history-position 1)
ccc58657
RS
532 "End of history; no next item"
533 "Beginning of history; no preceding item"))
2076c87c 534 (erase-buffer)
ebb61177 535 (setq minibuffer-history-position narg)
ba343182
RS
536 (let ((elt (nth (1- minibuffer-history-position)
537 (symbol-value minibuffer-history-variable))))
538 (insert
539 (if minibuffer-history-sexp-flag
540 (prin1-to-string elt)
770970cb 541 elt)))
2076c87c
JB
542 (goto-char (point-min)))))
543
ebb61177 544(defun previous-history-element (n)
3ee3a076 545 "Inserts the previous element of the minibuffer history into the minibuffer."
2076c87c 546 (interactive "p")
2c5e21c1 547 (next-history-element (- n)))
d0678801
RM
548
549(defun next-complete-history-element (n)
550 "\
551Get previous element of history which is a completion of minibuffer contents."
552 (interactive "p")
b5e6f936
RM
553 (let ((point-at-start (point)))
554 (next-matching-history-element
555 (concat "^" (regexp-quote (buffer-substring (point-min) (point)))) n)
556 ;; next-matching-history-element always puts us at (point-min).
557 ;; Move to the position we were at before changing the buffer contents.
558 ;; This is still sensical, because the text before point has not changed.
559 (goto-char point-at-start)))
d0678801
RM
560
561(defun previous-complete-history-element (n)
562 "Get next element of history which is a completion of minibuffer contents."
563 (interactive "p")
564 (next-complete-history-element (- n)))
e91f80c4 565\f
2076c87c
JB
566(defun goto-line (arg)
567 "Goto line ARG, counting from line 1 at beginning of buffer."
568 (interactive "NGoto line: ")
569 (save-restriction
570 (widen)
571 (goto-char 1)
572 (if (eq selective-display t)
573 (re-search-forward "[\n\C-m]" nil 'end (1- arg))
574 (forward-line (1- arg)))))
575
576;Put this on C-x u, so we can force that rather than C-_ into startup msg
577(fset 'advertised-undo 'undo)
578
579(defun undo (&optional arg)
580 "Undo some previous changes.
581Repeat this command to undo more changes.
582A numeric argument serves as a repeat count."
583 (interactive "*p")
584 (let ((modified (buffer-modified-p)))
71e40adf
JB
585 (or (eq (selected-window) (minibuffer-window))
586 (message "Undo!"))
2076c87c
JB
587 (or (eq last-command 'undo)
588 (progn (undo-start)
589 (undo-more 1)))
590 (setq this-command 'undo)
591 (undo-more (or arg 1))
592 (and modified (not (buffer-modified-p))
593 (delete-auto-save-file-if-necessary))))
594
595(defun undo-start ()
ff1fbe3e
RS
596 "Set `pending-undo-list' to the front of the undo list.
597The next call to `undo-more' will undo the most recently made change."
2076c87c
JB
598 (if (eq buffer-undo-list t)
599 (error "No undo information in this buffer"))
600 (setq pending-undo-list buffer-undo-list))
601
602(defun undo-more (count)
603 "Undo back N undo-boundaries beyond what was already undone recently.
ff1fbe3e
RS
604Call `undo-start' to get ready to undo recent changes,
605then call `undo-more' one or more times to undo them."
2076c87c
JB
606 (or pending-undo-list
607 (error "No further undo information"))
608 (setq pending-undo-list (primitive-undo count pending-undo-list)))
609
610(defvar last-shell-command "")
611(defvar last-shell-command-on-region "")
612
613(defun shell-command (command &optional flag)
614 "Execute string COMMAND in inferior shell; display output, if any.
615If COMMAND ends in ampersand, execute it asynchronously.
616
617Optional second arg non-nil (prefix arg, if interactive)
618means insert output in current buffer after point (leave mark after it).
619This cannot be done asynchronously."
620 (interactive (list (read-string "Shell command: " last-shell-command)
621 current-prefix-arg))
622 (if flag
623 (progn (barf-if-buffer-read-only)
624 (push-mark)
625 ;; We do not use -f for csh; we will not support broken use of
626 ;; .cshrcs. Even the BSD csh manual says to use
627 ;; "if ($?prompt) exit" before things which are not useful
628 ;; non-interactively. Besides, if someone wants their other
629 ;; aliases for shell commands then they can still have them.
630 (call-process shell-file-name nil t nil
631 "-c" command)
632 (exchange-point-and-mark))
633 ;; Preserve the match data in case called from a program.
634 (let ((data (match-data)))
635 (unwind-protect
636 (if (string-match "[ \t]*&[ \t]*$" command)
637 ;; Command ending with ampersand means asynchronous.
638 (let ((buffer (get-buffer-create "*shell-command*"))
639 (directory default-directory)
640 proc)
641 ;; Remove the ampersand.
642 (setq command (substring command 0 (match-beginning 0)))
643 ;; If will kill a process, query first.
644 (setq proc (get-buffer-process buffer))
645 (if proc
646 (if (yes-or-no-p "A command is running. Kill it? ")
647 (kill-process proc)
648 (error "Shell command in progress")))
649 (save-excursion
650 (set-buffer buffer)
651 (erase-buffer)
652 (display-buffer buffer)
653 (setq default-directory directory)
654 (setq proc (start-process "Shell" buffer
655 shell-file-name "-c" command))
656 (setq mode-line-process '(": %s"))
657 (set-process-sentinel proc 'shell-command-sentinel)
658 (set-process-filter proc 'shell-command-filter)
659 ))
660 (shell-command-on-region (point) (point) command nil))
661 (store-match-data data)))))
662
663;; We have a sentinel to prevent insertion of a termination message
664;; in the buffer itself.
665(defun shell-command-sentinel (process signal)
666 (if (memq (process-status process) '(exit signal))
667 (progn
668 (message "%s: %s."
669 (car (cdr (cdr (process-command process))))
670 (substring signal 0 -1))
671 (save-excursion
672 (set-buffer (process-buffer process))
673 (setq mode-line-process nil))
674 (delete-process process))))
675
676(defun shell-command-filter (proc string)
677 ;; Do save-excursion by hand so that we can leave point numerically unchanged
678 ;; despite an insertion immediately after it.
679 (let* ((obuf (current-buffer))
680 (buffer (process-buffer proc))
681 opoint
682 (window (get-buffer-window buffer))
683 (pos (window-start window)))
684 (unwind-protect
685 (progn
686 (set-buffer buffer)
687 (setq opoint (point))
688 (goto-char (point-max))
689 (insert-before-markers string))
690 ;; insert-before-markers moved this marker: set it back.
691 (set-window-start window pos)
692 ;; Finish our save-excursion.
693 (goto-char opoint)
694 (set-buffer obuf))))
695
696(defun shell-command-on-region (start end command &optional flag interactive)
697 "Execute string COMMAND in inferior shell with region as input.
698Normally display output (if any) in temp buffer `*Shell Command Output*';
699Prefix arg means replace the region with it.
700Noninteractive args are START, END, COMMAND, FLAG.
701Noninteractively FLAG means insert output in place of text from START to END,
702and put point at the end, but don't alter the mark.
703
704If the output is one line, it is displayed in the echo area,
705but it is nonetheless available in buffer `*Shell Command Output*'
706even though that buffer is not automatically displayed. If there is no output
707or output is inserted in the current buffer then `*Shell Command Output*' is
708deleted."
082c7686 709 (interactive (list (region-beginning) (region-end)
2076c87c
JB
710 (read-string "Shell command on region: "
711 last-shell-command-on-region)
712 current-prefix-arg
713 (prefix-numeric-value current-prefix-arg)))
714 (if flag
715 ;; Replace specified region with output from command.
716 (let ((swap (and interactive (< (point) (mark)))))
717 ;; Don't muck with mark
718 ;; unless called interactively.
719 (and interactive (push-mark))
720 (call-process-region start end shell-file-name t t nil
721 "-c" command)
722 (if (get-buffer "*Shell Command Output*")
723 (kill-buffer "*Shell Command Output*"))
724 (and interactive swap (exchange-point-and-mark)))
725 ;; No prefix argument: put the output in a temp buffer,
726 ;; replacing its entire contents.
727 (let ((buffer (get-buffer-create "*Shell Command Output*")))
728 (if (eq buffer (current-buffer))
729 ;; If the input is the same buffer as the output,
730 ;; delete everything but the specified region,
731 ;; then replace that region with the output.
732 (progn (delete-region end (point-max))
733 (delete-region (point-min) start)
734 (call-process-region (point-min) (point-max)
735 shell-file-name t t nil
736 "-c" command))
737 ;; Clear the output buffer, then run the command with output there.
738 (save-excursion
739 (set-buffer buffer)
740 (erase-buffer))
741 (call-process-region start end shell-file-name
742 nil buffer nil
743 "-c" command))
744 ;; Report the amount of output.
745 (let ((lines (save-excursion
746 (set-buffer buffer)
747 (if (= (buffer-size) 0)
748 0
749 (count-lines (point-min) (point-max))))))
750 (cond ((= lines 0)
751 (message "(Shell command completed with no output)")
752 (kill-buffer "*Shell Command Output*"))
753 ((= lines 1)
754 (message "%s"
755 (save-excursion
756 (set-buffer buffer)
757 (goto-char (point-min))
758 (buffer-substring (point)
759 (progn (end-of-line) (point))))))
760 (t
761 (set-window-start (display-buffer buffer) 1)))))))
762\f
763(defun universal-argument ()
764 "Begin a numeric argument for the following command.
765Digits or minus sign following \\[universal-argument] make up the numeric argument.
766\\[universal-argument] following the digits or minus sign ends the argument.
767\\[universal-argument] without digits or minus sign provides 4 as argument.
768Repeating \\[universal-argument] without digits or minus sign
769 multiplies the argument by 4 each time."
770 (interactive nil)
c637ae6f
JB
771 (let ((factor 4)
772 key)
70e14c01
JB
773;; (describe-arg (list factor) 1)
774 (setq key (read-key-sequence nil t))
c637ae6f
JB
775 (while (equal (key-binding key) 'universal-argument)
776 (setq factor (* 4 factor))
70e14c01
JB
777;; (describe-arg (list factor) 1)
778 (setq key (read-key-sequence nil t)))
c637ae6f
JB
779 (prefix-arg-internal key factor nil)))
780
781(defun prefix-arg-internal (key factor value)
2076c87c
JB
782 (let ((sign 1))
783 (if (and (numberp value) (< value 0))
784 (setq sign -1 value (- value)))
785 (if (eq value '-)
786 (setq sign -1 value nil))
70e14c01 787;; (describe-arg value sign)
c637ae6f
JB
788 (while (equal key "-")
789 (setq sign (- sign) factor nil)
70e14c01
JB
790;; (describe-arg value sign)
791 (setq key (read-key-sequence nil t)))
bd307392
JB
792 (while (and (stringp key)
793 (= (length key) 1)
c637ae6f
JB
794 (not (string< key "0"))
795 (not (string< "9" key)))
796 (setq value (+ (* (if (numberp value) value 0) 10)
797 (- (aref key 0) ?0))
798 factor nil)
70e14c01
JB
799;; (describe-arg value sign)
800 (setq key (read-key-sequence nil t)))
2076c87c 801 (setq prefix-arg
c637ae6f 802 (cond (factor (list factor))
2076c87c
JB
803 ((numberp value) (* value sign))
804 ((= sign -1) '-)))
c637ae6f
JB
805 ;; Calling universal-argument after digits
806 ;; terminates the argument but is ignored.
807 (if (eq (key-binding key) 'universal-argument)
808 (progn
809 (describe-arg value sign)
70e14c01 810 (setq key (read-key-sequence nil t))))
d70202c0 811 (setq unread-command-events (listify-key-sequence key))))
c637ae6f
JB
812
813(defun describe-arg (value sign)
814 (cond ((numberp value)
815 (message "Arg: %d" (* value sign)))
816 ((consp value)
817 (message "Arg: [%d]" (car value)))
818 ((< sign 0)
819 (message "Arg: -"))))
2076c87c
JB
820
821(defun digit-argument (arg)
822 "Part of the numeric argument for the next command.
823\\[universal-argument] following digits or minus sign ends the argument."
824 (interactive "P")
c637ae6f
JB
825 (prefix-arg-internal (char-to-string (logand last-command-char ?\177))
826 nil arg))
2076c87c
JB
827
828(defun negative-argument (arg)
829 "Begin a negative numeric argument for the next command.
830\\[universal-argument] following digits or minus sign ends the argument."
831 (interactive "P")
c637ae6f 832 (prefix-arg-internal "-" nil arg))
2076c87c
JB
833\f
834(defun forward-to-indentation (arg)
835 "Move forward ARG lines and position at first nonblank character."
836 (interactive "p")
837 (forward-line arg)
838 (skip-chars-forward " \t"))
839
840(defun backward-to-indentation (arg)
841 "Move backward ARG lines and position at first nonblank character."
842 (interactive "p")
843 (forward-line (- arg))
844 (skip-chars-forward " \t"))
845
846(defun kill-line (&optional arg)
847 "Kill the rest of the current line; if no nonblanks there, kill thru newline.
848With prefix argument, kill that many lines from point.
849Negative arguments kill lines backward.
850
851When calling from a program, nil means \"no arg\",
852a number counts as a prefix arg."
853 (interactive "P")
854 (kill-region (point)
c2e8a012
JB
855 ;; Don't shift point before doing the delete; that way,
856 ;; undo will record the right position of point.
857 (save-excursion
2076c87c
JB
858 (if arg
859 (forward-line (prefix-numeric-value arg))
860 (if (eobp)
861 (signal 'end-of-buffer nil))
862 (if (looking-at "[ \t]*$")
863 (forward-line 1)
864 (end-of-line)))
865 (point))))
866\f
70e14c01
JB
867;;;; Window system cut and paste hooks.
868
869(defvar interprogram-cut-function nil
870 "Function to call to make a killed region available to other programs.
871
872Most window systems provide some sort of facility for cutting and
873pasting text between the windows of different programs. On startup,
874this variable is set to a function which emacs will call whenever text
875is put in the kill ring to make the new kill available to other
876programs.
877
878The function takes one argument, TEXT, which is a string containing
879the text which should be made available.")
880
881(defvar interprogram-paste-function nil
882 "Function to call to get text cut from other programs.
883
884Most window systems provide some sort of facility for cutting and
885pasting text between the windows of different programs. On startup,
886this variable is set to a function which emacs will call to obtain
887text that other programs have provided for pasting.
888
889The function should be called with no arguments. If the function
890returns nil, then no other program has provided such text, and the top
891of the Emacs kill ring should be used. If the function returns a
daa37602
JB
892string, that string should be put in the kill ring as the latest kill.
893
894Note that the function should return a string only if a program other
895than Emacs has provided a string for pasting; if Emacs provided the
896most recent string, the function should return nil. If it is
897difficult to tell whether Emacs or some other program provided the
898current string, it is probably good enough to return nil if the string
899is equal (according to `string=') to the last text Emacs provided.")
70e14c01
JB
900
901
902\f
903;;;; The kill ring data structure.
2076c87c
JB
904
905(defvar kill-ring nil
70e14c01
JB
906 "List of killed text sequences.
907Since the kill ring is supposed to interact nicely with cut-and-paste
908facilities offered by window systems, use of this variable should
909interact nicely with `interprogram-cut-function' and
910`interprogram-paste-function'. The functions `kill-new',
911`kill-append', and `current-kill' are supposed to implement this
912interaction; you may want to use them instead of manipulating the kill
913ring directly.")
2076c87c
JB
914
915(defconst kill-ring-max 30
916 "*Maximum length of kill ring before oldest elements are thrown away.")
917
918(defvar kill-ring-yank-pointer nil
919 "The tail of the kill ring whose car is the last thing yanked.")
920
70e14c01
JB
921(defun kill-new (string)
922 "Make STRING the latest kill in the kill ring.
923Set the kill-ring-yank pointer to point to it.
924If `interprogram-cut-function' is non-nil, apply it to STRING."
925 (setq kill-ring (cons string kill-ring))
926 (if (> (length kill-ring) kill-ring-max)
927 (setcdr (nthcdr (1- kill-ring-max) kill-ring) nil))
928 (setq kill-ring-yank-pointer kill-ring)
929 (if interprogram-cut-function
930 (funcall interprogram-cut-function string)))
931
2076c87c 932(defun kill-append (string before-p)
70e14c01
JB
933 "Append STRING to the end of the latest kill in the kill ring.
934If BEFORE-P is non-nil, prepend STRING to the kill.
88c1aa79 935If `interprogram-cut-function' is set, pass the resulting kill to
70e14c01 936it."
2076c87c
JB
937 (setcar kill-ring
938 (if before-p
939 (concat string (car kill-ring))
70e14c01
JB
940 (concat (car kill-ring) string)))
941 (if interprogram-cut-function
942 (funcall interprogram-cut-function (car kill-ring))))
943
944(defun current-kill (n &optional do-not-move)
945 "Rotate the yanking point by N places, and then return that kill.
946If N is zero, `interprogram-paste-function' is set, and calling it
947returns a string, then that string is added to the front of the
948kill ring and returned as the latest kill.
949If optional arg DO-NOT-MOVE is non-nil, then don't actually move the
950yanking point; just return the Nth kill forward."
951 (let ((interprogram-paste (and (= n 0)
952 interprogram-paste-function
953 (funcall interprogram-paste-function))))
954 (if interprogram-paste
955 (progn
956 ;; Disable the interprogram cut function when we add the new
957 ;; text to the kill ring, so Emacs doesn't try to own the
958 ;; selection, with identical text.
959 (let ((interprogram-cut-function nil))
960 (kill-new interprogram-paste))
961 interprogram-paste)
962 (or kill-ring (error "Kill ring is empty"))
963 (let* ((length (length kill-ring))
964 (ARGth-kill-element
965 (nthcdr (% (+ n (- length (length kill-ring-yank-pointer)))
966 length)
967 kill-ring)))
968 (or do-not-move
969 (setq kill-ring-yank-pointer ARGth-kill-element))
970 (car ARGth-kill-element)))))
c88ab9ce 971
c88ab9ce 972
70e14c01
JB
973\f
974;;;; Commands for manipulating the kill ring.
c88ab9ce 975
2076c87c
JB
976(defun kill-region (beg end)
977 "Kill between point and mark.
978The text is deleted but saved in the kill ring.
979The command \\[yank] can retrieve it from there.
980\(If you want to kill and then yank immediately, use \\[copy-region-as-kill].)
2aa7a8bf
JB
981If the buffer is read-only, Emacs will beep and refrain from deleting
982the text, but put the text in the kill ring anyway. This means that
983you can use the killing commands to copy text from a read-only buffer.
2076c87c
JB
984
985This is the primitive for programs to kill text (as opposed to deleting it).
986Supply two arguments, character numbers indicating the stretch of text
987 to be killed.
988Any command that calls this function is a \"kill command\".
989If the previous command was also a kill command,
990the text killed this time appends to the text killed last time
991to make one entry in the kill ring."
2aa7a8bf 992 (interactive "r")
70e14c01 993 (cond
2aa7a8bf
JB
994
995 ;; If the buffer is read-only, we should beep, in case the person
996 ;; just isn't aware of this. However, there's no harm in putting
997 ;; the region's text in the kill ring, anyway.
998 (buffer-read-only
999 (copy-region-as-kill beg end)
1537a263
JB
1000 ;; This should always barf, and give us the correct error.
1001 (barf-if-buffer-read-only))
2aa7a8bf
JB
1002
1003 ;; In certain cases, we can arrange for the undo list and the kill
1004 ;; ring to share the same string object. This code does that.
70e14c01
JB
1005 ((not (or (eq buffer-undo-list t)
1006 (eq last-command 'kill-region)
1007 (eq beg end)))
1008 ;; Don't let the undo list be truncated before we can even access it.
109d300c 1009 (let ((undo-strong-limit (+ (- (max beg end) (min beg end)) 100)))
70e14c01
JB
1010 (delete-region beg end)
1011 ;; Take the same string recorded for undo
1012 ;; and put it in the kill-ring.
1013 (kill-new (car (car buffer-undo-list)))
1014 (setq this-command 'kill-region)))
2aa7a8bf 1015
70e14c01 1016 (t
2076c87c 1017 (copy-region-as-kill beg end)
70e14c01 1018 (delete-region beg end))))
2076c87c 1019
2076c87c
JB
1020(defun copy-region-as-kill (beg end)
1021 "Save the region as if killed, but don't kill it.
46947372
JB
1022If `interprogram-cut-function' is non-nil, also save the text for a window
1023system cut and paste."
2076c87c
JB
1024 (interactive "r")
1025 (if (eq last-command 'kill-region)
1026 (kill-append (buffer-substring beg end) (< end beg))
70e14c01
JB
1027 (kill-new (buffer-substring beg end)))
1028 (setq this-command 'kill-region)
2076c87c
JB
1029 nil)
1030
1031(defun kill-ring-save (beg end)
0964e562
JB
1032 "Save the region as if killed, but don't kill it.
1033This command is similar to copy-region-as-kill, except that it gives
1034visual feedback indicating the extent of the region being copied.
1035If `interprogram-cut-function' is non-nil, also save the text for a window
1036system cut and paste."
2076c87c
JB
1037 (interactive "r")
1038 (copy-region-as-kill beg end)
3a801d0c
ER
1039 (if (interactive-p)
1040 (save-excursion
1041 (let ((other-end (if (= (point) beg) end beg)))
1042 (if (pos-visible-in-window-p other-end (selected-window))
1043 (progn
1044 (goto-char other-end)
1045 (sit-for 1))
1046 (let* ((killed-text (current-kill 0))
1047 (message-len (min (length killed-text) 40)))
1048 (if (= (point) beg)
1049 ;; Don't say "killed"; that is misleading.
1050 (message "Saved text until \"%s\""
1051 (substring killed-text (- message-len)))
1052 (message "Saved text from \"%s\""
1053 (substring killed-text 0 message-len)))))))))
2076c87c
JB
1054
1055(defun append-next-kill ()
ff1fbe3e 1056 "Cause following command, if it kills, to append to previous kill."
2076c87c
JB
1057 (interactive)
1058 (if (interactive-p)
1059 (progn
1060 (setq this-command 'kill-region)
1061 (message "If the next command is a kill, it will append"))
1062 (setq last-command 'kill-region)))
1063
2076c87c 1064(defun yank-pop (arg)
ff1fbe3e
RS
1065 "Replace just-yanked stretch of killed text with a different stretch.
1066This command is allowed only immediately after a `yank' or a `yank-pop'.
2076c87c 1067At such a time, the region contains a stretch of reinserted
ff1fbe3e 1068previously-killed text. `yank-pop' deletes that text and inserts in its
2076c87c
JB
1069place a different stretch of killed text.
1070
1071With no argument, the previous kill is inserted.
ff1fbe3e
RS
1072With argument N, insert the Nth previous kill.
1073If N is negative, this is a more recent kill.
2076c87c
JB
1074
1075The sequence of kills wraps around, so that after the oldest one
1076comes the newest one."
1077 (interactive "*p")
1078 (if (not (eq last-command 'yank))
1079 (error "Previous command was not a yank"))
1080 (setq this-command 'yank)
1081 (let ((before (< (point) (mark))))
1082 (delete-region (point) (mark))
2076c87c 1083 (set-mark (point))
70e14c01 1084 (insert (current-kill arg))
0964e562
JB
1085 (if before (exchange-point-and-mark)))
1086 nil)
2076c87c
JB
1087
1088(defun yank (&optional arg)
1089 "Reinsert the last stretch of killed text.
1090More precisely, reinsert the stretch of killed text most recently
ff1fbe3e
RS
1091killed OR yanked. Put point at end, and set mark at beginning.
1092With just C-u as argument, same but put point at beginning (and mark at end).
1093With argument N, reinsert the Nth most recently killed stretch of killed
2076c87c
JB
1094text.
1095See also the command \\[yank-pop]."
1096 (interactive "*P")
2076c87c 1097 (push-mark (point))
70e14c01
JB
1098 (insert (current-kill (cond
1099 ((listp arg) 0)
1100 ((eq arg '-) -1)
1101 (t (1- arg)))))
2076c87c 1102 (if (consp arg)
0964e562
JB
1103 (exchange-point-and-mark))
1104 nil)
70e14c01
JB
1105
1106(defun rotate-yank-pointer (arg)
1107 "Rotate the yanking point in the kill ring.
1108With argument, rotate that many kills forward (or backward, if negative)."
1109 (interactive "p")
1110 (current-kill arg))
1111
2076c87c
JB
1112\f
1113(defun insert-buffer (buffer)
1114 "Insert after point the contents of BUFFER.
1115Puts mark after the inserted text.
1116BUFFER may be a buffer or a buffer name."
58ff020d
RS
1117 (interactive (list (progn (barf-if-buffer-read-only)
1118 (read-buffer "Insert buffer: " (other-buffer) t))))
2076c87c
JB
1119 (or (bufferp buffer)
1120 (setq buffer (get-buffer buffer)))
1121 (let (start end newmark)
1122 (save-excursion
1123 (save-excursion
1124 (set-buffer buffer)
1125 (setq start (point-min) end (point-max)))
1126 (insert-buffer-substring buffer start end)
1127 (setq newmark (point)))
1537a263
JB
1128 (push-mark newmark))
1129 nil)
2076c87c
JB
1130
1131(defun append-to-buffer (buffer start end)
1132 "Append to specified buffer the text of the region.
1133It is inserted into that buffer before its point.
1134
1135When calling from a program, give three arguments:
1136BUFFER (or buffer name), START and END.
1137START and END specify the portion of the current buffer to be copied."
70e14c01
JB
1138 (interactive
1139 (list (read-buffer "Append to buffer: " (other-buffer nil t) t)))
2076c87c
JB
1140 (let ((oldbuf (current-buffer)))
1141 (save-excursion
1142 (set-buffer (get-buffer-create buffer))
1143 (insert-buffer-substring oldbuf start end))))
1144
1145(defun prepend-to-buffer (buffer start end)
1146 "Prepend to specified buffer the text of the region.
1147It is inserted into that buffer after its point.
1148
1149When calling from a program, give three arguments:
1150BUFFER (or buffer name), START and END.
1151START and END specify the portion of the current buffer to be copied."
1152 (interactive "BPrepend to buffer: \nr")
1153 (let ((oldbuf (current-buffer)))
1154 (save-excursion
1155 (set-buffer (get-buffer-create buffer))
1156 (save-excursion
1157 (insert-buffer-substring oldbuf start end)))))
1158
1159(defun copy-to-buffer (buffer start end)
1160 "Copy to specified buffer the text of the region.
1161It is inserted into that buffer, replacing existing text there.
1162
1163When calling from a program, give three arguments:
1164BUFFER (or buffer name), START and END.
1165START and END specify the portion of the current buffer to be copied."
1166 (interactive "BCopy to buffer: \nr")
1167 (let ((oldbuf (current-buffer)))
1168 (save-excursion
1169 (set-buffer (get-buffer-create buffer))
1170 (erase-buffer)
1171 (save-excursion
1172 (insert-buffer-substring oldbuf start end)))))
1173\f
af39530e
RS
1174(defun mark (&optional force)
1175 "Return this buffer's mark value as integer, or nil if no active mark now.
1176If optional argument FORCE is non-nil, access the mark value
1177even if the mark is not currently active.
1178
2076c87c
JB
1179If you are using this in an editing command, you are most likely making
1180a mistake; see the documentation of `set-mark'."
af39530e
RS
1181 (if (or force mark-active)
1182 (marker-position (mark-marker))
1183 (error "The mark is not currently active")))
2076c87c
JB
1184
1185(defun set-mark (pos)
1186 "Set this buffer's mark to POS. Don't use this function!
1187That is to say, don't use this function unless you want
1188the user to see that the mark has moved, and you want the previous
1189mark position to be lost.
1190
1191Normally, when a new mark is set, the old one should go on the stack.
1192This is why most applications should use push-mark, not set-mark.
1193
ff1fbe3e 1194Novice Emacs Lisp programmers often try to use the mark for the wrong
2076c87c
JB
1195purposes. The mark saves a location for the user's convenience.
1196Most editing commands should not alter the mark.
1197To remember a location for internal use in the Lisp program,
1198store it in a Lisp variable. Example:
1199
1200 (let ((beg (point))) (forward-line 1) (delete-region beg (point)))."
1201
af39530e
RS
1202 (setq mark-active t)
1203 (run-hooks 'activate-mark-hook)
2076c87c
JB
1204 (set-marker (mark-marker) pos (current-buffer)))
1205
1206(defvar mark-ring nil
1207 "The list of saved former marks of the current buffer,
1208most recent first.")
1209(make-variable-buffer-local 'mark-ring)
1210
1211(defconst mark-ring-max 16
1212 "*Maximum size of mark ring. Start discarding off end if gets this big.")
1213
1214(defun set-mark-command (arg)
1215 "Set mark at where point is, or jump to mark.
79926889
JB
1216With no prefix argument, set mark, and push old mark position on mark ring.
1217With argument, jump to mark, and pop a new position for mark off the ring.
2076c87c 1218
ff1fbe3e 1219Novice Emacs Lisp programmers often try to use the mark for the wrong
2076c87c
JB
1220purposes. See the documentation of `set-mark' for more information."
1221 (interactive "P")
1222 (if (null arg)
1223 (push-mark)
af39530e 1224 (if (null (mark t))
2076c87c
JB
1225 (error "No mark set in this buffer")
1226 (goto-char (mark))
1227 (pop-mark))))
1228
1229(defun push-mark (&optional location nomsg)
1230 "Set mark at LOCATION (point, by default) and push old mark on mark ring.
1231Displays \"Mark set\" unless the optional second arg NOMSG is non-nil.
1232
ff1fbe3e 1233Novice Emacs Lisp programmers often try to use the mark for the wrong
2076c87c 1234purposes. See the documentation of `set-mark' for more information."
af39530e 1235 (if (null (mark t))
2076c87c
JB
1236 nil
1237 (setq mark-ring (cons (copy-marker (mark-marker)) mark-ring))
1238 (if (> (length mark-ring) mark-ring-max)
1239 (progn
1240 (move-marker (car (nthcdr mark-ring-max mark-ring)) nil)
1241 (setcdr (nthcdr (1- mark-ring-max) mark-ring) nil))))
1242 (set-mark (or location (point)))
1243 (or nomsg executing-macro (> (minibuffer-depth) 0)
1244 (message "Mark set"))
1245 nil)
1246
1247(defun pop-mark ()
1248 "Pop off mark ring into the buffer's actual mark.
1249Does not set point. Does nothing if mark ring is empty."
1250 (if mark-ring
1251 (progn
1252 (setq mark-ring (nconc mark-ring (list (copy-marker (mark-marker)))))
1253 (set-mark (+ 0 (car mark-ring)))
1254 (move-marker (car mark-ring) nil)
1255 (if (null (mark)) (ding))
1256 (setq mark-ring (cdr mark-ring)))))
1257
1258(fset 'exchange-dot-and-mark 'exchange-point-and-mark)
1259(defun exchange-point-and-mark ()
af39530e
RS
1260 "Put the mark where point is now, and point where the mark is now.
1261This command works even when the mark is not active,
1262and it reactivates the mark."
2076c87c 1263 (interactive nil)
af39530e 1264 (let ((omark (mark t)))
2076c87c
JB
1265 (if (null omark)
1266 (error "No mark set in this buffer"))
1267 (set-mark (point))
1268 (goto-char omark)
1269 nil))
1270\f
1271(defun next-line (arg)
1272 "Move cursor vertically down ARG lines.
1273If there is no character in the target line exactly under the current column,
1274the cursor is positioned after the character in that line which spans this
1275column, or at the end of the line if it is not long enough.
1276If there is no line in the buffer after this one,
1277a newline character is inserted to create a line
1278and the cursor moves to that line.
1279
1280The command \\[set-goal-column] can be used to create
1281a semipermanent goal column to which this command always moves.
1282Then it does not try to move vertically. This goal column is stored
1283in `goal-column', which is nil when there is none.
1284
1285If you are thinking of using this in a Lisp program, consider
1286using `forward-line' instead. It is usually easier to use
1287and more reliable (no dependence on goal column, etc.)."
1288 (interactive "p")
1289 (if (= arg 1)
1290 (let ((opoint (point)))
1291 (forward-line 1)
1292 (if (or (= opoint (point))
1293 (not (eq (preceding-char) ?\n)))
1294 (insert ?\n)
1295 (goto-char opoint)
1296 (line-move arg)))
1297 (line-move arg))
1298 nil)
1299
1300(defun previous-line (arg)
1301 "Move cursor vertically up ARG lines.
1302If there is no character in the target line exactly over the current column,
1303the cursor is positioned after the character in that line which spans this
1304column, or at the end of the line if it is not long enough.
1305
1306The command \\[set-goal-column] can be used to create
1307a semipermanent goal column to which this command always moves.
1308Then it does not try to move vertically.
1309
1310If you are thinking of using this in a Lisp program, consider using
c2e8a012 1311`forward-line' with a negative argument instead. It is usually easier
2076c87c
JB
1312to use and more reliable (no dependence on goal column, etc.)."
1313 (interactive "p")
1314 (line-move (- arg))
1315 nil)
1316
1317(defconst track-eol nil
1318 "*Non-nil means vertical motion starting at end of line keeps to ends of lines.
1319This means moving to the end of each line moved onto.
1320The beginning of a blank line does not count as the end of a line.")
1321
912c6728
RS
1322(defvar goal-column nil
1323 "*Semipermanent goal column for vertical motion, as set by \\[set-goal-column], or nil.")
1324(make-variable-buffer-local 'goal-column)
2076c87c
JB
1325
1326(defvar temporary-goal-column 0
1327 "Current goal column for vertical motion.
1328It is the column where point was
1329at the start of current run of vertical motion commands.
c637ae6f 1330When the `track-eol' feature is doing its job, the value is 9999.")
2076c87c
JB
1331
1332(defun line-move (arg)
1333 (if (not (or (eq last-command 'next-line)
1334 (eq last-command 'previous-line)))
1335 (setq temporary-goal-column
1336 (if (and track-eol (eolp)
1337 ;; Don't count beg of empty line as end of line
1338 ;; unless we just did explicit end-of-line.
1339 (or (not (bolp)) (eq last-command 'end-of-line)))
1340 9999
1341 (current-column))))
1342 (if (not (integerp selective-display))
1343 (forward-line arg)
1344 ;; Move by arg lines, but ignore invisible ones.
1345 (while (> arg 0)
1346 (vertical-motion 1)
1347 (forward-char -1)
1348 (forward-line 1)
1349 (setq arg (1- arg)))
1350 (while (< arg 0)
1351 (vertical-motion -1)
1352 (beginning-of-line)
1353 (setq arg (1+ arg))))
1354 (move-to-column (or goal-column temporary-goal-column))
1355 nil)
1356
d5ab2033
JB
1357;;; Many people have said they rarely use this feature, and often type
1358;;; it by accident. Maybe it shouldn't even be on a key.
1359(put 'set-goal-column 'disabled t)
2076c87c
JB
1360
1361(defun set-goal-column (arg)
1362 "Set the current horizontal position as a goal for \\[next-line] and \\[previous-line].
1363Those commands will move to this position in the line moved to
1364rather than trying to keep the same horizontal position.
1365With a non-nil argument, clears out the goal column
912c6728
RS
1366so that \\[next-line] and \\[previous-line] resume vertical motion.
1367The goal column is stored in the variable `goal-column'."
2076c87c
JB
1368 (interactive "P")
1369 (if arg
1370 (progn
1371 (setq goal-column nil)
1372 (message "No goal column"))
1373 (setq goal-column (current-column))
1374 (message (substitute-command-keys
1375 "Goal column %d (use \\[set-goal-column] with an arg to unset it)")
1376 goal-column))
1377 nil)
1378\f
1379(defun transpose-chars (arg)
1380 "Interchange characters around point, moving forward one character.
1381With prefix arg ARG, effect is to take character before point
1382and drag it forward past ARG other characters (backward if ARG negative).
1383If no argument and at end of line, the previous two chars are exchanged."
1384 (interactive "*P")
1385 (and (null arg) (eolp) (forward-char -1))
1386 (transpose-subr 'forward-char (prefix-numeric-value arg)))
1387
1388(defun transpose-words (arg)
1389 "Interchange words around point, leaving point at end of them.
1390With prefix arg ARG, effect is to take word before or around point
1391and drag it forward past ARG other words (backward if ARG negative).
1392If ARG is zero, the words around or after point and around or after mark
1393are interchanged."
1394 (interactive "*p")
1395 (transpose-subr 'forward-word arg))
1396
1397(defun transpose-sexps (arg)
1398 "Like \\[transpose-words] but applies to sexps.
1399Does not work on a sexp that point is in the middle of
1400if it is a list or string."
1401 (interactive "*p")
1402 (transpose-subr 'forward-sexp arg))
1403
1404(defun transpose-lines (arg)
1405 "Exchange current line and previous line, leaving point after both.
1406With argument ARG, takes previous line and moves it past ARG lines.
1407With argument 0, interchanges line point is in with line mark is in."
1408 (interactive "*p")
1409 (transpose-subr (function
1410 (lambda (arg)
1411 (if (= arg 1)
1412 (progn
1413 ;; Move forward over a line,
1414 ;; but create a newline if none exists yet.
1415 (end-of-line)
1416 (if (eobp)
1417 (newline)
1418 (forward-char 1)))
1419 (forward-line arg))))
1420 arg))
1421
1422(defun transpose-subr (mover arg)
1423 (let (start1 end1 start2 end2)
1424 (if (= arg 0)
1425 (progn
1426 (save-excursion
1427 (funcall mover 1)
1428 (setq end2 (point))
1429 (funcall mover -1)
1430 (setq start2 (point))
1431 (goto-char (mark))
1432 (funcall mover 1)
1433 (setq end1 (point))
1434 (funcall mover -1)
1435 (setq start1 (point))
1436 (transpose-subr-1))
1437 (exchange-point-and-mark)))
1438 (while (> arg 0)
1439 (funcall mover -1)
1440 (setq start1 (point))
1441 (funcall mover 1)
1442 (setq end1 (point))
1443 (funcall mover 1)
1444 (setq end2 (point))
1445 (funcall mover -1)
1446 (setq start2 (point))
1447 (transpose-subr-1)
1448 (goto-char end2)
1449 (setq arg (1- arg)))
1450 (while (< arg 0)
1451 (funcall mover -1)
1452 (setq start2 (point))
1453 (funcall mover -1)
1454 (setq start1 (point))
1455 (funcall mover 1)
1456 (setq end1 (point))
1457 (funcall mover 1)
1458 (setq end2 (point))
1459 (transpose-subr-1)
1460 (setq arg (1+ arg)))))
1461
1462(defun transpose-subr-1 ()
1463 (if (> (min end1 end2) (max start1 start2))
1464 (error "Don't have two things to transpose"))
1465 (let ((word1 (buffer-substring start1 end1))
1466 (word2 (buffer-substring start2 end2)))
1467 (delete-region start2 end2)
1468 (goto-char start2)
1469 (insert word1)
1470 (goto-char (if (< start1 start2) start1
1471 (+ start1 (- (length word1) (length word2)))))
1472 (delete-char (length word1))
1473 (insert word2)))
1474\f
1475(defconst comment-column 32
1476 "*Column to indent right-margin comments to.
8a8fa723
JB
1477Setting this variable automatically makes it local to the current buffer.
1478Each mode establishes a different default value for this variable; you
1479can the value for a particular mode using that mode's hook.")
2076c87c
JB
1480(make-variable-buffer-local 'comment-column)
1481
1482(defconst comment-start nil
1483 "*String to insert to start a new comment, or nil if no comment syntax defined.")
1484
1485(defconst comment-start-skip nil
1486 "*Regexp to match the start of a comment plus everything up to its body.
1487If there are any \\(...\\) pairs, the comment delimiter text is held to begin
1488at the place matched by the close of the first pair.")
1489
1490(defconst comment-end ""
1491 "*String to insert to end a new comment.
1492Should be an empty string if comments are terminated by end-of-line.")
1493
ec9a76e3
JB
1494(defconst comment-indent-hook nil
1495 "Obsolete variable for function to compute desired indentation for a comment.
1496This function is called with no args with point at the beginning of
1497the comment's starting delimiter.")
1498
1499(defconst comment-indent-function
2076c87c
JB
1500 '(lambda () comment-column)
1501 "Function to compute desired indentation for a comment.
1502This function is called with no args with point at the beginning of
1503the comment's starting delimiter.")
1504
1505(defun indent-for-comment ()
1506 "Indent this line's comment to comment column, or insert an empty comment."
1507 (interactive "*")
1508 (beginning-of-line 1)
1509 (if (null comment-start)
1510 (error "No comment syntax defined")
1511 (let* ((eolpos (save-excursion (end-of-line) (point)))
1512 cpos indent begpos)
1513 (if (re-search-forward comment-start-skip eolpos 'move)
1514 (progn (setq cpos (point-marker))
1515 ;; Find the start of the comment delimiter.
1516 ;; If there were paren-pairs in comment-start-skip,
1517 ;; position at the end of the first pair.
1518 (if (match-end 1)
1519 (goto-char (match-end 1))
1520 ;; If comment-start-skip matched a string with internal
1521 ;; whitespace (not final whitespace) then the delimiter
1522 ;; start at the end of that whitespace.
1523 ;; Otherwise, it starts at the beginning of what was matched.
1524 (skip-chars-backward " \t" (match-beginning 0))
1525 (skip-chars-backward "^ \t" (match-beginning 0)))))
1526 (setq begpos (point))
1527 ;; Compute desired indent.
1528 (if (= (current-column)
ec9a76e3
JB
1529 (if comment-indent-hook
1530 (funcall comment-indent-hook)
1531 (funcall comment-indent-function)))
2076c87c
JB
1532 (goto-char begpos)
1533 ;; If that's different from current, change it.
1534 (skip-chars-backward " \t")
1535 (delete-region (point) begpos)
1536 (indent-to indent))
1537 ;; An existing comment?
1538 (if cpos
1539 (progn (goto-char cpos)
1540 (set-marker cpos nil))
1541 ;; No, insert one.
1542 (insert comment-start)
1543 (save-excursion
1544 (insert comment-end))))))
1545
1546(defun set-comment-column (arg)
1547 "Set the comment column based on point.
1548With no arg, set the comment column to the current column.
1549With just minus as arg, kill any comment on this line.
1550With any other arg, set comment column to indentation of the previous comment
1551 and then align or create a comment on this line at that column."
1552 (interactive "P")
1553 (if (eq arg '-)
1554 (kill-comment nil)
1555 (if arg
1556 (progn
1557 (save-excursion
1558 (beginning-of-line)
1559 (re-search-backward comment-start-skip)
1560 (beginning-of-line)
1561 (re-search-forward comment-start-skip)
1562 (goto-char (match-beginning 0))
1563 (setq comment-column (current-column))
1564 (message "Comment column set to %d" comment-column))
1565 (indent-for-comment))
1566 (setq comment-column (current-column))
1567 (message "Comment column set to %d" comment-column))))
1568
1569(defun kill-comment (arg)
1570 "Kill the comment on this line, if any.
1571With argument, kill comments on that many lines starting with this one."
1572 ;; this function loses in a lot of situations. it incorrectly recognises
1573 ;; comment delimiters sometimes (ergo, inside a string), doesn't work
1574 ;; with multi-line comments, can kill extra whitespace if comment wasn't
1575 ;; through end-of-line, et cetera.
1576 (interactive "P")
1577 (or comment-start-skip (error "No comment syntax defined"))
1578 (let ((count (prefix-numeric-value arg)) endc)
1579 (while (> count 0)
1580 (save-excursion
1581 (end-of-line)
1582 (setq endc (point))
1583 (beginning-of-line)
1584 (and (string< "" comment-end)
1585 (setq endc
1586 (progn
1587 (re-search-forward (regexp-quote comment-end) endc 'move)
1588 (skip-chars-forward " \t")
1589 (point))))
1590 (beginning-of-line)
1591 (if (re-search-forward comment-start-skip endc t)
1592 (progn
1593 (goto-char (match-beginning 0))
1594 (skip-chars-backward " \t")
1595 (kill-region (point) endc)
1596 ;; to catch comments a line beginnings
1597 (indent-according-to-mode))))
1598 (if arg (forward-line 1))
1599 (setq count (1- count)))))
1600
1601(defun comment-region (beg end &optional arg)
1602 "Comment the region; third arg numeric means use ARG comment characters.
1603If ARG is negative, delete that many comment characters instead.
1604Comments are terminated on each line, even for syntax in which newline does
1605not end the comment. Blank lines do not get comments."
1606 ;; if someone wants it to only put a comment-start at the beginning and
1607 ;; comment-end at the end then typing it, C-x C-x, closing it, C-x C-x
1608 ;; is easy enough. No option is made here for other than commenting
1609 ;; every line.
1610 (interactive "r\np")
1611 (or comment-start (error "No comment syntax is defined"))
1612 (if (> beg end) (let (mid) (setq mid beg beg end end mid)))
1613 (save-excursion
1614 (save-restriction
1615 (let ((cs comment-start) (ce comment-end))
1616 (cond ((not arg) (setq arg 1))
1617 ((> arg 1)
1618 (while (> (setq arg (1- arg)) 0)
1619 (setq cs (concat cs comment-start)
1620 ce (concat ce comment-end)))))
1621 (narrow-to-region beg end)
1622 (goto-char beg)
1623 (while (not (eobp))
1624 (if (< arg 0)
1625 (let ((count arg))
1626 (while (and (> 1 (setq count (1+ count)))
1627 (looking-at (regexp-quote cs)))
1628 (delete-char (length cs)))
1629 (if (string= "" ce) ()
1630 (setq count arg)
1631 (while (> 1 (setq count (1+ count)))
1632 (end-of-line)
1633 ;; this is questionable if comment-end ends in whitespace
1634 ;; that is pretty brain-damaged though
1635 (skip-chars-backward " \t")
1636 (backward-char (length ce))
1637 (if (looking-at (regexp-quote ce))
6e88ed49
RS
1638 (delete-char (length ce)))))
1639 (forward-line 1))
2076c87c
JB
1640 (if (looking-at "[ \t]*$") ()
1641 (insert cs)
1642 (if (string= "" ce) ()
1643 (end-of-line)
1644 (insert ce)))
1645 (search-forward "\n" nil 'move)))))))
1646\f
1647(defun backward-word (arg)
1648 "Move backward until encountering the end of a word.
1649With argument, do this that many times.
ff1fbe3e 1650In programs, it is faster to call `forward-word' with negative arg."
2076c87c
JB
1651 (interactive "p")
1652 (forward-word (- arg)))
1653
1654(defun mark-word (arg)
1655 "Set mark arg words away from point."
1656 (interactive "p")
1657 (push-mark
1658 (save-excursion
1659 (forward-word arg)
1660 (point))))
1661
1662(defun kill-word (arg)
1663 "Kill characters forward until encountering the end of a word.
1664With argument, do this that many times."
1665 (interactive "p")
01b8e020 1666 (kill-region (point) (save-excursion (forward-word arg) (point))))
2076c87c
JB
1667
1668(defun backward-kill-word (arg)
1669 "Kill characters backward until encountering the end of a word.
1670With argument, do this that many times."
1671 (interactive "p")
1672 (kill-word (- arg)))
1673\f
1674(defconst fill-prefix nil
1675 "*String for filling to insert at front of new line, or nil for none.
1676Setting this variable automatically makes it local to the current buffer.")
1677(make-variable-buffer-local 'fill-prefix)
1678
1679(defconst auto-fill-inhibit-regexp nil
1680 "*Regexp to match lines which should not be auto-filled.")
1681
1682(defun do-auto-fill ()
1683 (let (give-up)
1684 (or (and auto-fill-inhibit-regexp
1685 (save-excursion (beginning-of-line)
1686 (looking-at auto-fill-inhibit-regexp)))
1687 (while (and (not give-up) (> (current-column) fill-column))
1688 (let ((fill-point
1689 (let ((opoint (point)))
1690 (save-excursion
1691 (move-to-column (1+ fill-column))
1692 (skip-chars-backward "^ \t\n")
1693 (if (bolp)
1694 (re-search-forward "[ \t]" opoint t))
1695 (skip-chars-backward " \t")
1696 (point)))))
1697 ;; If there is a space on the line before fill-point,
1698 ;; and nonspaces precede it, break the line there.
1699 (if (save-excursion
1700 (goto-char fill-point)
1701 (not (bolp)))
1702 ;; If point is at the fill-point, do not `save-excursion'.
1703 ;; Otherwise, if a comment prefix or fill-prefix is inserted,
1704 ;; point will end up before it rather than after it.
1705 (if (save-excursion
1706 (skip-chars-backward " \t")
1707 (= (point) fill-point))
1708 (indent-new-comment-line)
1709 (save-excursion
1710 (goto-char fill-point)
1711 (indent-new-comment-line)))
1712 ;; No place to break => stop trying.
1713 (setq give-up t)))))))
1714
1715(defconst comment-multi-line nil
1716 "*Non-nil means \\[indent-new-comment-line] should continue same comment
c88ab9ce
ER
1717on new line, with no new terminator or starter.
1718This is obsolete because you might as well use \\[newline-and-indent].")
2076c87c
JB
1719
1720(defun indent-new-comment-line ()
1721 "Break line at point and indent, continuing comment if presently within one.
c88ab9ce
ER
1722The body of the continued comment is indented under the previous comment line.
1723
1724This command is intended for styles where you write a comment per line,
1725starting a new comment (and terminating it if necessary) on each line.
1726If you want to continue one comment across several lines, use \\[newline-and-indent]."
2076c87c
JB
1727 (interactive "*")
1728 (let (comcol comstart)
1729 (skip-chars-backward " \t")
1730 (delete-region (point)
1731 (progn (skip-chars-forward " \t")
1732 (point)))
1733 (insert ?\n)
c88ab9ce
ER
1734 (if (not comment-multi-line)
1735 (save-excursion
1736 (if (and comment-start-skip
1737 (let ((opoint (point)))
1738 (forward-line -1)
1739 (re-search-forward comment-start-skip opoint t)))
1740 ;; The old line is a comment.
1741 ;; Set WIN to the pos of the comment-start.
1742 ;; But if the comment is empty, look at preceding lines
1743 ;; to find one that has a nonempty comment.
1744 (let ((win (match-beginning 0)))
1745 (while (and (eolp) (not (bobp))
1746 (let (opoint)
1747 (beginning-of-line)
1748 (setq opoint (point))
1749 (forward-line -1)
1750 (re-search-forward comment-start-skip opoint t)))
1751 (setq win (match-beginning 0)))
1752 ;; Indent this line like what we found.
1753 (goto-char win)
1754 (setq comcol (current-column))
1755 (setq comstart (buffer-substring (point) (match-end 0)))))))
2076c87c
JB
1756 (if comcol
1757 (let ((comment-column comcol)
1758 (comment-start comstart)
1759 (comment-end comment-end))
1760 (and comment-end (not (equal comment-end ""))
c88ab9ce 1761; (if (not comment-multi-line)
2076c87c
JB
1762 (progn
1763 (forward-char -1)
1764 (insert comment-end)
1765 (forward-char 1))
c88ab9ce
ER
1766; (setq comment-column (+ comment-column (length comment-start))
1767; comment-start "")
1768; )
1769 )
2076c87c
JB
1770 (if (not (eolp))
1771 (setq comment-end ""))
1772 (insert ?\n)
1773 (forward-char -1)
1774 (indent-for-comment)
1775 (save-excursion
1776 ;; Make sure we delete the newline inserted above.
1777 (end-of-line)
1778 (delete-char 1)))
1779 (if fill-prefix
1780 (insert fill-prefix)
1781 (indent-according-to-mode)))))
1782
1783(defun auto-fill-mode (&optional arg)
1784 "Toggle auto-fill mode.
1785With arg, turn auto-fill mode on if and only if arg is positive.
1786In auto-fill mode, inserting a space at a column beyond fill-column
1787automatically breaks the line at a previous space."
1788 (interactive "P")
1789 (prog1 (setq auto-fill-function
1790 (if (if (null arg)
1791 (not auto-fill-function)
1792 (> (prefix-numeric-value arg) 0))
1793 'do-auto-fill
1794 nil))
1795 ;; update mode-line
1796 (set-buffer-modified-p (buffer-modified-p))))
1797
1798(defun turn-on-auto-fill ()
1799 "Unconditionally turn on Auto Fill mode."
1800 (auto-fill-mode 1))
1801
1802(defun set-fill-column (arg)
ff1fbe3e
RS
1803 "Set `fill-column' to current column, or to argument if given.
1804The variable `fill-column' has a separate value for each buffer."
2076c87c
JB
1805 (interactive "P")
1806 (setq fill-column (if (integerp arg) arg (current-column)))
1807 (message "fill-column set to %d" fill-column))
1808\f
1809(defun set-selective-display (arg)
ff1fbe3e
RS
1810 "Set `selective-display' to ARG; clear it if no arg.
1811When the value of `selective-display' is a number > 0,
1812lines whose indentation is >= that value are not displayed.
1813The variable `selective-display' has a separate value for each buffer."
2076c87c
JB
1814 (interactive "P")
1815 (if (eq selective-display t)
1816 (error "selective-display already in use for marked lines"))
c88ab9ce
ER
1817 (let ((current-vpos
1818 (save-restriction
1819 (narrow-to-region (point-min) (point))
1820 (goto-char (window-start))
1821 (vertical-motion (window-height)))))
1822 (setq selective-display
1823 (and arg (prefix-numeric-value arg)))
1824 (recenter current-vpos))
2076c87c
JB
1825 (set-window-start (selected-window) (window-start (selected-window)))
1826 (princ "selective-display set to " t)
1827 (prin1 selective-display t)
1828 (princ "." t))
1829
b6a22db0
JB
1830(defconst overwrite-mode-textual " Ovwrt"
1831 "The string displayed in the mode line when in overwrite mode.")
1832(defconst overwrite-mode-binary " Bin Ovwrt"
1833 "The string displayed in the mode line when in binary overwrite mode.")
1834
2076c87c
JB
1835(defun overwrite-mode (arg)
1836 "Toggle overwrite mode.
1837With arg, turn overwrite mode on iff arg is positive.
1838In overwrite mode, printing characters typed in replace existing text
b6a22db0
JB
1839on a one-for-one basis, rather than pushing it to the right. At the
1840end of a line, such characters extend the line. Before a tab,
1841such characters insert until the tab is filled in.
1842\\[quoted-insert] still inserts characters in overwrite mode; this
1843is supposed to make it easier to insert characters when necessary."
1844 (interactive "P")
1845 (setq overwrite-mode
1846 (if (if (null arg) (not overwrite-mode)
1847 (> (prefix-numeric-value arg) 0))
1848 'overwrite-mode-textual))
1849 (force-mode-line-update))
1850
1851(defun binary-overwrite-mode (arg)
1852 "Toggle binary overwrite mode.
1853With arg, turn binary overwrite mode on iff arg is positive.
1854In binary overwrite mode, printing characters typed in replace
1855existing text. Newlines are not treated specially, so typing at the
1856end of a line joins the line to the next, with the typed character
1857between them. Typing before a tab character simply replaces the tab
1858with the character typed.
1859\\[quoted-insert] replaces the text at the cursor, just as ordinary
1860typing characters do.
1861
1862Note that binary overwrite mode is not its own minor mode; it is a
1863specialization of overwrite-mode, entered by setting the
1864`overwrite-mode' variable to `overwrite-mode-binary'."
2076c87c
JB
1865 (interactive "P")
1866 (setq overwrite-mode
b6a22db0 1867 (if (if (null arg)
a61099dd 1868 (not (eq overwrite-mode 'overwrite-mode-binary))
b6a22db0
JB
1869 (> (prefix-numeric-value arg) 0))
1870 'overwrite-mode-binary))
1871 (force-mode-line-update))
2076c87c 1872\f
a61099dd
RS
1873(defvar line-number-mode nil
1874 "*Non-nil means display line number in mode line.")
1875
1876(defun line-number-mode (arg)
1877 "Toggle Line Number mode.
1878With arg, turn Line Number mode on iff arg is positive.
1879When Line Number mode is enabled, the line number appears
1880in the mode line."
1881 (interactive "P")
1882 (setq line-number-mode
1883 (if (null arg) (not line-number-mode)
1884 (> (prefix-numeric-value arg) 0)))
1885 (force-mode-line-update))
1886
2076c87c
JB
1887(defvar blink-matching-paren t
1888 "*Non-nil means show matching open-paren when close-paren is inserted.")
1889
1890(defconst blink-matching-paren-distance 4000
1891 "*If non-nil, is maximum distance to search for matching open-paren
1892when close-paren is inserted.")
1893
1894(defun blink-matching-open ()
1895 "Move cursor momentarily to the beginning of the sexp before point."
1896 (interactive)
1897 (and (> (point) (1+ (point-min)))
1898 (/= (char-syntax (char-after (- (point) 2))) ?\\ )
1899 blink-matching-paren
1900 (let* ((oldpos (point))
1901 (blinkpos)
1902 (mismatch))
1903 (save-excursion
1904 (save-restriction
1905 (if blink-matching-paren-distance
1906 (narrow-to-region (max (point-min)
1907 (- (point) blink-matching-paren-distance))
1908 oldpos))
1909 (condition-case ()
1910 (setq blinkpos (scan-sexps oldpos -1))
1911 (error nil)))
1912 (and blinkpos (/= (char-syntax (char-after blinkpos))
1913 ?\$)
1914 (setq mismatch
1915 (/= (char-after (1- oldpos))
1916 (logand (lsh (aref (syntax-table)
1917 (char-after blinkpos))
1918 -8)
1919 255))))
1920 (if mismatch (setq blinkpos nil))
1921 (if blinkpos
1922 (progn
1923 (goto-char blinkpos)
1924 (if (pos-visible-in-window-p)
1925 (sit-for 1)
1926 (goto-char blinkpos)
1927 (message
1928 "Matches %s"
1929 (if (save-excursion
1930 (skip-chars-backward " \t")
1931 (not (bolp)))
1932 (buffer-substring (progn (beginning-of-line) (point))
1933 (1+ blinkpos))
1934 (buffer-substring blinkpos
1935 (progn
1936 (forward-char 1)
1937 (skip-chars-forward "\n \t")
1938 (end-of-line)
1939 (point)))))))
1940 (cond (mismatch
1941 (message "Mismatched parentheses"))
1942 ((not blink-matching-paren-distance)
1943 (message "Unmatched parenthesis"))))))))
1944
1945;Turned off because it makes dbx bomb out.
1946(setq blink-paren-function 'blink-matching-open)
1947
1948; this is just something for the luser to see in a keymap -- this is not
1949; how quitting works normally!
1950(defun keyboard-quit ()
af39530e
RS
1951 "Signal a quit condition.
1952During execution of Lisp code, this character causes a quit directly.
1953At top-level, as an editor command, this simply beeps."
2076c87c
JB
1954 (interactive)
1955 (signal 'quit nil))
1956
1957(define-key global-map "\C-g" 'keyboard-quit)
1958\f
1959(defun set-variable (var val)
1960 "Set VARIABLE to VALUE. VALUE is a Lisp object.
1961When using this interactively, supply a Lisp expression for VALUE.
3a801d0c
ER
1962If you want VALUE to be a string, you must surround it with doublequotes.
1963
1964If VARIABLE has a `variable-interactive' property, that is used as if
1965it were the arg to `interactive' (which see) to interactively read the value."
2076c87c
JB
1966 (interactive
1967 (let* ((var (read-variable "Set variable: "))
1968 (minibuffer-help-form
1969 '(funcall myhelp))
1970 (myhelp
1971 (function
1972 (lambda ()
1973 (with-output-to-temp-buffer "*Help*"
1974 (prin1 var)
1975 (princ "\nDocumentation:\n")
1976 (princ (substring (documentation-property var 'variable-documentation)
1977 1))
1978 (if (boundp var)
1979 (let ((print-length 20))
1980 (princ "\n\nCurrent value: ")
1981 (prin1 (symbol-value var))))
1982 nil)))))
1983 (list var
3a801d0c
ER
1984 (let ((prop (get var 'variable-interactive)))
1985 (if prop
1986 ;; Use VAR's `variable-interactive' property
1987 ;; as an interactive spec for prompting.
1988 (call-interactively (list 'lambda '(arg)
1989 (list 'interactive prop)
1990 'arg))
1991 (eval-minibuffer (format "Set %s to value: " var)))))))
2076c87c 1992 (set var val))
c88ab9ce
ER
1993
1994;;; simple.el ends here