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