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