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