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