Fix autoloads.
[emacs.git] / lisp / simple.el
blobe58213e27fce99ec549bcfc2d298ee920e81107c
1 ;;; simple.el --- basic editing commands for Emacs
3 ;; Copyright (C) 1985, 86, 87, 93, 94, 95 Free Software Foundation, Inc.
5 ;; This file is part of GNU Emacs.
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.
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.
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.
21 ;;; Commentary:
23 ;; A grab-bag of basic Emacs commands not specifically related to some
24 ;; major mode or to file-handling.
26 ;;; Code:
28 (defun newline (&optional arg)
29 "Insert a newline, and move to left margin of the new line if it's blank.
30 The newline is marked with the text-property `hard'.
31 With arg, insert that many newlines.
32 In Auto Fill mode, if no numeric arg, break the preceding line if it's long."
33 (interactive "*P")
34 (barf-if-buffer-read-only)
35 ;; Inserting a newline at the end of a line produces better redisplay in
36 ;; try_window_id than inserting at the beginning of a line, and the textual
37 ;; result is the same. So, if we're at beginning of line, pretend to be at
38 ;; the end of the previous line.
39 (let ((flag (and (not (bobp))
40 (bolp)
41 (< (or (previous-property-change (point)) -2)
42 (- (point) 2))))
43 (was-page-start (and (bolp)
44 (looking-at page-delimiter)))
45 (beforepos (point)))
46 (if flag (backward-char 1))
47 ;; Call self-insert so that auto-fill, abbrev expansion etc. happens.
48 ;; Set last-command-char to tell self-insert what to insert.
49 (let ((last-command-char ?\n)
50 ;; Don't auto-fill if we have a numeric argument.
51 ;; Also not if flag is true (it would fill wrong line);
52 ;; there is no need to since we're at BOL.
53 (auto-fill-function (if (or arg flag) nil auto-fill-function)))
54 (unwind-protect
55 (self-insert-command (prefix-numeric-value arg))
56 ;; If we get an error in self-insert-command, put point at right place.
57 (if flag (forward-char 1))))
58 ;; If we did *not* get an error, cancel that forward-char.
59 (if flag (backward-char 1))
60 ;; Mark the newline(s) `hard'.
61 (if use-hard-newlines
62 (let* ((from (- (point) (if arg (prefix-numeric-value arg) 1)))
63 (sticky (get-text-property from 'rear-nonsticky)))
64 (put-text-property from (point) 'hard 't)
65 ;; If rear-nonsticky is not "t", add 'hard to rear-nonsticky list
66 (if (and (listp sticky) (not (memq 'hard sticky)))
67 (put-text-property from (point) 'rear-nonsticky
68 (cons 'hard sticky)))))
69 ;; If the newline leaves the previous line blank,
70 ;; and we have a left margin, delete that from the blank line.
71 (or flag
72 (save-excursion
73 (goto-char beforepos)
74 (beginning-of-line)
75 (and (looking-at "[ \t]$")
76 (> (current-left-margin) 0)
77 (delete-region (point) (progn (end-of-line) (point))))))
78 (if flag (forward-char 1))
79 ;; Indent the line after the newline, except in one case:
80 ;; when we added the newline at the beginning of a line
81 ;; which starts a page.
82 (or was-page-start
83 (move-to-left-margin nil t)))
84 nil)
86 (defun open-line (arg)
87 "Insert a newline and leave point before it.
88 If there is a fill prefix and/or a left-margin, insert them on the new line
89 if the line would have been blank.
90 With arg N, insert N newlines."
91 (interactive "*p")
92 (let* ((do-fill-prefix (and fill-prefix (bolp)))
93 (do-left-margin (and (bolp) (> (current-left-margin) 0)))
94 (loc (point)))
95 (newline arg)
96 (goto-char loc)
97 (while (> arg 0)
98 (cond ((bolp)
99 (if do-left-margin (indent-to (current-left-margin)))
100 (if do-fill-prefix (insert-and-inherit fill-prefix))))
101 (forward-line 1)
102 (setq arg (1- arg)))
103 (goto-char loc)
104 (end-of-line)))
106 (defun split-line ()
107 "Split current line, moving portion beyond point vertically down."
108 (interactive "*")
109 (skip-chars-forward " \t")
110 (let ((col (current-column))
111 (pos (point)))
112 (newline 1)
113 (indent-to col 0)
114 (goto-char pos)))
116 (defun quoted-insert (arg)
117 "Read next input character and insert it.
118 This is useful for inserting control characters.
119 You may also type up to 3 octal digits, to insert a character with that code.
121 In overwrite mode, this function inserts the character anyway, and
122 does not handle octal digits specially. This means that if you use
123 overwrite as your normal editing mode, you can use this function to
124 insert characters when necessary.
126 In binary overwrite mode, this function does overwrite, and octal
127 digits are interpreted as a character code. This is supposed to make
128 this function useful in editing binary files."
129 (interactive "*p")
130 (let ((char (if (or (not overwrite-mode)
131 (eq overwrite-mode 'overwrite-mode-binary))
132 (read-quoted-char)
133 (read-char))))
134 (if (> arg 0)
135 (if (eq overwrite-mode 'overwrite-mode-binary)
136 (delete-char arg)))
137 (while (> arg 0)
138 (insert-and-inherit char)
139 (setq arg (1- arg)))))
141 (defun delete-indentation (&optional arg)
142 "Join this line to previous and fix up whitespace at join.
143 If there is a fill prefix, delete it from the beginning of this line.
144 With argument, join this line to following line."
145 (interactive "*P")
146 (beginning-of-line)
147 (if arg (forward-line 1))
148 (if (eq (preceding-char) ?\n)
149 (progn
150 (delete-region (point) (1- (point)))
151 ;; If the second line started with the fill prefix,
152 ;; delete the prefix.
153 (if (and fill-prefix
154 (<= (+ (point) (length fill-prefix)) (point-max))
155 (string= fill-prefix
156 (buffer-substring (point)
157 (+ (point) (length fill-prefix)))))
158 (delete-region (point) (+ (point) (length fill-prefix))))
159 (fixup-whitespace))))
161 (defun fixup-whitespace ()
162 "Fixup white space between objects around point.
163 Leave one space or none, according to the context."
164 (interactive "*")
165 (save-excursion
166 (delete-horizontal-space)
167 (if (or (looking-at "^\\|\\s)")
168 (save-excursion (forward-char -1)
169 (looking-at "$\\|\\s(\\|\\s'")))
171 (insert ?\ ))))
173 (defun delete-horizontal-space ()
174 "Delete all spaces and tabs around point."
175 (interactive "*")
176 (skip-chars-backward " \t")
177 (delete-region (point) (progn (skip-chars-forward " \t") (point))))
179 (defun just-one-space ()
180 "Delete all spaces and tabs around point, leaving one space."
181 (interactive "*")
182 (skip-chars-backward " \t")
183 (if (= (following-char) ? )
184 (forward-char 1)
185 (insert ? ))
186 (delete-region (point) (progn (skip-chars-forward " \t") (point))))
188 (defun delete-blank-lines ()
189 "On blank line, delete all surrounding blank lines, leaving just one.
190 On isolated blank line, delete that one.
191 On nonblank line, delete any immediately following blank lines."
192 (interactive "*")
193 (let (thisblank singleblank)
194 (save-excursion
195 (beginning-of-line)
196 (setq thisblank (looking-at "[ \t]*$"))
197 ;; Set singleblank if there is just one blank line here.
198 (setq singleblank
199 (and thisblank
200 (not (looking-at "[ \t]*\n[ \t]*$"))
201 (or (bobp)
202 (progn (forward-line -1)
203 (not (looking-at "[ \t]*$")))))))
204 ;; Delete preceding blank lines, and this one too if it's the only one.
205 (if thisblank
206 (progn
207 (beginning-of-line)
208 (if singleblank (forward-line 1))
209 (delete-region (point)
210 (if (re-search-backward "[^ \t\n]" nil t)
211 (progn (forward-line 1) (point))
212 (point-min)))))
213 ;; Delete following blank lines, unless the current line is blank
214 ;; and there are no following blank lines.
215 (if (not (and thisblank singleblank))
216 (save-excursion
217 (end-of-line)
218 (forward-line 1)
219 (delete-region (point)
220 (if (re-search-forward "[^ \t\n]" nil t)
221 (progn (beginning-of-line) (point))
222 (point-max)))))
223 ;; Handle the special case where point is followed by newline and eob.
224 ;; Delete the line, leaving point at eob.
225 (if (looking-at "^[ \t]*\n\\'")
226 (delete-region (point) (point-max)))))
228 (defun back-to-indentation ()
229 "Move point to the first non-whitespace character on this line."
230 (interactive)
231 (beginning-of-line 1)
232 (skip-chars-forward " \t"))
234 (defun newline-and-indent ()
235 "Insert a newline, then indent according to major mode.
236 Indentation is done using the value of `indent-line-function'.
237 In programming language modes, this is the same as TAB.
238 In some text modes, where TAB inserts a tab, this command indents to the
239 column specified by the function `current-left-margin'."
240 (interactive "*")
241 (delete-region (point) (progn (skip-chars-backward " \t") (point)))
242 (newline)
243 (indent-according-to-mode))
245 (defun reindent-then-newline-and-indent ()
246 "Reindent current line, insert newline, then indent the new line.
247 Indentation of both lines is done according to the current major mode,
248 which means calling the current value of `indent-line-function'.
249 In programming language modes, this is the same as TAB.
250 In some text modes, where TAB inserts a tab, this indents to the
251 column specified by the function `current-left-margin'."
252 (interactive "*")
253 (save-excursion
254 (delete-region (point) (progn (skip-chars-backward " \t") (point)))
255 (indent-according-to-mode))
256 (newline)
257 (indent-according-to-mode))
259 ;; Internal subroutine of delete-char
260 (defun kill-forward-chars (arg)
261 (if (listp arg) (setq arg (car arg)))
262 (if (eq arg '-) (setq arg -1))
263 (kill-region (point) (+ (point) arg)))
265 ;; Internal subroutine of backward-delete-char
266 (defun kill-backward-chars (arg)
267 (if (listp arg) (setq arg (car arg)))
268 (if (eq arg '-) (setq arg -1))
269 (kill-region (point) (- (point) arg)))
271 (defun backward-delete-char-untabify (arg &optional killp)
272 "Delete characters backward, changing tabs into spaces.
273 Delete ARG chars, and kill (save in kill ring) if KILLP is non-nil.
274 Interactively, ARG is the prefix arg (default 1)
275 and KILLP is t if a prefix arg was specified."
276 (interactive "*p\nP")
277 (let ((count arg))
278 (save-excursion
279 (while (and (> count 0) (not (bobp)))
280 (if (= (preceding-char) ?\t)
281 (let ((col (current-column)))
282 (forward-char -1)
283 (setq col (- col (current-column)))
284 (insert-char ?\ col)
285 (delete-char 1)))
286 (forward-char -1)
287 (setq count (1- count)))))
288 (delete-backward-char arg killp)
289 ;; In overwrite mode, back over columns while clearing them out,
290 ;; unless at end of line.
291 (and overwrite-mode (not (eolp))
292 (save-excursion (insert-char ?\ arg))))
294 (defun zap-to-char (arg char)
295 "Kill up to and including ARG'th occurrence of CHAR.
296 Goes backward if ARG is negative; error if CHAR not found."
297 (interactive "p\ncZap to char: ")
298 (kill-region (point) (progn
299 (search-forward (char-to-string char) nil nil arg)
300 ; (goto-char (if (> arg 0) (1- (point)) (1+ (point))))
301 (point))))
303 (defun beginning-of-buffer (&optional arg)
304 "Move point to the beginning of the buffer; leave mark at previous position.
305 With arg N, put point N/10 of the way from the beginning.
307 If the buffer is narrowed, this command uses the beginning and size
308 of the accessible part of the buffer.
310 Don't use this command in Lisp programs!
311 \(goto-char (point-min)) is faster and avoids clobbering the mark."
312 (interactive "P")
313 (push-mark)
314 (let ((size (- (point-max) (point-min))))
315 (goto-char (if arg
316 (+ (point-min)
317 (if (> size 10000)
318 ;; Avoid overflow for large buffer sizes!
319 (* (prefix-numeric-value arg)
320 (/ size 10))
321 (/ (+ 10 (* size (prefix-numeric-value arg))) 10)))
322 (point-min))))
323 (if arg (forward-line 1)))
325 (defun end-of-buffer (&optional arg)
326 "Move point to the end of the buffer; leave mark at previous position.
327 With arg N, put point N/10 of the way from the end.
329 If the buffer is narrowed, this command uses the beginning and size
330 of the accessible part of the buffer.
332 Don't use this command in Lisp programs!
333 \(goto-char (point-max)) is faster and avoids clobbering the mark."
334 (interactive "P")
335 (push-mark)
336 (let ((size (- (point-max) (point-min))))
337 (goto-char (if arg
338 (- (point-max)
339 (if (> size 10000)
340 ;; Avoid overflow for large buffer sizes!
341 (* (prefix-numeric-value arg)
342 (/ size 10))
343 (/ (* size (prefix-numeric-value arg)) 10)))
344 (point-max))))
345 ;; If we went to a place in the middle of the buffer,
346 ;; adjust it to the beginning of a line.
347 (if arg (forward-line 1)
348 ;; If the end of the buffer is not already on the screen,
349 ;; then scroll specially to put it near, but not at, the bottom.
350 (if (let ((old-point (point)))
351 (save-excursion
352 (goto-char (window-start))
353 (vertical-motion (window-height))
354 (< (point) old-point)))
355 (progn
356 (overlay-recenter (point))
357 (recenter -3)))))
359 (defun mark-whole-buffer ()
360 "Put point at beginning and mark at end of buffer.
361 You probably should not use this function in Lisp programs;
362 it is usually a mistake for a Lisp function to use any subroutine
363 that uses or sets the mark."
364 (interactive)
365 (push-mark (point))
366 (push-mark (point-max) nil t)
367 (goto-char (point-min)))
369 (defun count-lines-region (start end)
370 "Print number of lines and characters in the region."
371 (interactive "r")
372 (message "Region has %d lines, %d characters"
373 (count-lines start end) (- end start)))
375 (defun what-line ()
376 "Print the current buffer line number and narrowed line number of point."
377 (interactive)
378 (let ((opoint (point)) start)
379 (save-excursion
380 (save-restriction
381 (goto-char (point-min))
382 (widen)
383 (beginning-of-line)
384 (setq start (point))
385 (goto-char opoint)
386 (beginning-of-line)
387 (if (/= start 1)
388 (message "line %d (narrowed line %d)"
389 (1+ (count-lines 1 (point)))
390 (1+ (count-lines start (point))))
391 (message "Line %d" (1+ (count-lines 1 (point)))))))))
394 (defun count-lines (start end)
395 "Return number of lines between START and END.
396 This is usually the number of newlines between them,
397 but can be one more if START is not equal to END
398 and the greater of them is not at the start of a line."
399 (save-excursion
400 (save-restriction
401 (narrow-to-region start end)
402 (goto-char (point-min))
403 (if (eq selective-display t)
404 (save-match-data
405 (let ((done 0))
406 (while (re-search-forward "[\n\C-m]" nil t 40)
407 (setq done (+ 40 done)))
408 (while (re-search-forward "[\n\C-m]" nil t 1)
409 (setq done (+ 1 done)))
410 (goto-char (point-max))
411 (if (and (/= start end)
412 (not (bolp)))
413 (1+ done)
414 done)))
415 (- (buffer-size) (forward-line (buffer-size)))))))
417 (defun what-cursor-position ()
418 "Print info on cursor position (on screen and within buffer)."
419 (interactive)
420 (let* ((char (following-char))
421 (beg (point-min))
422 (end (point-max))
423 (pos (point))
424 (total (buffer-size))
425 (percent (if (> total 50000)
426 ;; Avoid overflow from multiplying by 100!
427 (/ (+ (/ total 200) (1- pos)) (max (/ total 100) 1))
428 (/ (+ (/ total 2) (* 100 (1- pos))) (max total 1))))
429 (hscroll (if (= (window-hscroll) 0)
431 (format " Hscroll=%d" (window-hscroll))))
432 (col (current-column)))
433 (if (= pos end)
434 (if (or (/= beg 1) (/= end (1+ total)))
435 (message "point=%d of %d(%d%%) <%d - %d> column %d %s"
436 pos total percent beg end col hscroll)
437 (message "point=%d of %d(%d%%) column %d %s"
438 pos total percent col hscroll))
439 (if (or (/= beg 1) (/= end (1+ total)))
440 (message "Char: %s (0%o, %d, 0x%x) point=%d of %d(%d%%) <%d - %d> column %d %s"
441 (single-key-description char) char char char pos total percent beg end col hscroll)
442 (message "Char: %s (0%o, %d, 0x%x) point=%d of %d(%d%%) column %d %s"
443 (single-key-description char) char char char pos total percent col hscroll)))))
445 (defun fundamental-mode ()
446 "Major mode not specialized for anything in particular.
447 Other major modes are defined by comparison with this one."
448 (interactive)
449 (kill-all-local-variables))
451 (defvar read-expression-map (cons 'keymap minibuffer-local-map)
452 "Minibuffer keymap used for reading Lisp expressions.")
453 (define-key read-expression-map "\M-\t" 'lisp-complete-symbol)
455 (put 'eval-expression 'disabled t)
457 (defvar read-expression-history nil)
459 ;; We define this, rather than making `eval' interactive,
460 ;; for the sake of completion of names like eval-region, eval-current-buffer.
461 (defun eval-expression (expression)
462 "Evaluate EXPRESSION and print value in minibuffer.
463 Value is also consed on to front of the variable `values'."
464 (interactive
465 (list (read-from-minibuffer "Eval: "
466 nil read-expression-map t
467 'read-expression-history)))
468 (setq values (cons (eval expression) values))
469 (prin1 (car values) t))
471 (defun edit-and-eval-command (prompt command)
472 "Prompting with PROMPT, let user edit COMMAND and eval result.
473 COMMAND is a Lisp expression. Let user edit that expression in
474 the minibuffer, then read and evaluate the result."
475 (let ((command (read-from-minibuffer prompt
476 (prin1-to-string command)
477 read-expression-map t
478 '(command-history . 1))))
479 ;; If command was added to command-history as a string,
480 ;; get rid of that. We want only evallable expressions there.
481 (if (stringp (car command-history))
482 (setq command-history (cdr command-history)))
484 ;; If command to be redone does not match front of history,
485 ;; add it to the history.
486 (or (equal command (car command-history))
487 (setq command-history (cons command command-history)))
488 (eval command)))
490 (defun repeat-complex-command (arg)
491 "Edit and re-evaluate last complex command, or ARGth from last.
492 A complex command is one which used the minibuffer.
493 The command is placed in the minibuffer as a Lisp form for editing.
494 The result is executed, repeating the command as changed.
495 If the command has been changed or is not the most recent previous command
496 it is added to the front of the command history.
497 You can use the minibuffer history commands \\<minibuffer-local-map>\\[next-history-element] and \\[previous-history-element]
498 to get different commands to edit and resubmit."
499 (interactive "p")
500 (let ((elt (nth (1- arg) command-history))
501 (minibuffer-history-position arg)
502 (minibuffer-history-sexp-flag t)
503 newcmd)
504 (if elt
505 (progn
506 (setq newcmd
507 (let ((print-level nil))
508 (read-from-minibuffer
509 "Redo: " (prin1-to-string elt) read-expression-map t
510 (cons 'command-history arg))))
512 ;; If command was added to command-history as a string,
513 ;; get rid of that. We want only evallable expressions there.
514 (if (stringp (car command-history))
515 (setq command-history (cdr command-history)))
517 ;; If command to be redone does not match front of history,
518 ;; add it to the history.
519 (or (equal newcmd (car command-history))
520 (setq command-history (cons newcmd command-history)))
521 (eval newcmd))
522 (ding))))
524 (defvar minibuffer-history nil
525 "Default minibuffer history list.
526 This is used for all minibuffer input
527 except when an alternate history list is specified.")
528 (defvar minibuffer-history-sexp-flag nil
529 "Non-nil when doing history operations on `command-history'.
530 More generally, indicates that the history list being acted on
531 contains expressions rather than strings.")
532 (setq minibuffer-history-variable 'minibuffer-history)
533 (setq minibuffer-history-position nil)
534 (defvar minibuffer-history-search-history nil)
536 (mapcar
537 (lambda (key-and-command)
538 (mapcar
539 (lambda (keymap-and-completionp)
540 ;; Arg is (KEYMAP-SYMBOL . COMPLETION-MAP-P).
541 ;; If the cdr of KEY-AND-COMMAND (the command) is a cons,
542 ;; its car is used if COMPLETION-MAP-P is nil, its cdr if it is t.
543 (define-key (symbol-value (car keymap-and-completionp))
544 (car key-and-command)
545 (let ((command (cdr key-and-command)))
546 (if (consp command)
547 ;; (and ... nil) => ... turns back on the completion-oriented
548 ;; history commands which rms turned off since they seem to
549 ;; do things he doesn't like.
550 (if (and (cdr keymap-and-completionp) nil) ;XXX turned off
551 (progn (error "EMACS BUG!") (cdr command))
552 (car command))
553 command))))
554 '((minibuffer-local-map . nil)
555 (minibuffer-local-ns-map . nil)
556 (minibuffer-local-completion-map . t)
557 (minibuffer-local-must-match-map . t)
558 (read-expression-map . nil))))
559 '(("\en" . (next-history-element . next-complete-history-element))
560 ([next] . (next-history-element . next-complete-history-element))
561 ("\ep" . (previous-history-element . previous-complete-history-element))
562 ([prior] . (previous-history-element . previous-complete-history-element))
563 ("\er" . previous-matching-history-element)
564 ("\es" . next-matching-history-element)))
566 (defun previous-matching-history-element (regexp n)
567 "Find the previous history element that matches REGEXP.
568 \(Previous history elements refer to earlier actions.)
569 With prefix argument N, search for Nth previous match.
570 If N is negative, find the next or Nth next match."
571 (interactive
572 (let* ((enable-recursive-minibuffers t)
573 (minibuffer-history-sexp-flag nil)
574 (regexp (read-from-minibuffer "Previous element matching (regexp): "
576 minibuffer-local-map
578 'minibuffer-history-search-history)))
579 ;; Use the last regexp specified, by default, if input is empty.
580 (list (if (string= regexp "")
581 (if minibuffer-history-search-history
582 (car minibuffer-history-search-history)
583 (error "No previous history search regexp"))
584 regexp)
585 (prefix-numeric-value current-prefix-arg))))
586 (let ((history (symbol-value minibuffer-history-variable))
587 prevpos
588 (pos minibuffer-history-position))
589 (while (/= n 0)
590 (setq prevpos pos)
591 (setq pos (min (max 1 (+ pos (if (< n 0) -1 1))) (length history)))
592 (if (= pos prevpos)
593 (error (if (= pos 1)
594 "No later matching history item"
595 "No earlier matching history item")))
596 (if (string-match regexp
597 (if minibuffer-history-sexp-flag
598 (let ((print-level nil))
599 (prin1-to-string (nth (1- pos) history)))
600 (nth (1- pos) history)))
601 (setq n (+ n (if (< n 0) 1 -1)))))
602 (setq minibuffer-history-position pos)
603 (erase-buffer)
604 (let ((elt (nth (1- pos) history)))
605 (insert (if minibuffer-history-sexp-flag
606 (let ((print-level nil))
607 (prin1-to-string elt))
608 elt)))
609 (goto-char (point-min)))
610 (if (or (eq (car (car command-history)) 'previous-matching-history-element)
611 (eq (car (car command-history)) 'next-matching-history-element))
612 (setq command-history (cdr command-history))))
614 (defun next-matching-history-element (regexp n)
615 "Find the next history element that matches REGEXP.
616 \(The next history element refers to a more recent action.)
617 With prefix argument N, search for Nth next match.
618 If N is negative, find the previous or Nth previous match."
619 (interactive
620 (let* ((enable-recursive-minibuffers t)
621 (minibuffer-history-sexp-flag nil)
622 (regexp (read-from-minibuffer "Next element matching (regexp): "
624 minibuffer-local-map
626 'minibuffer-history-search-history)))
627 ;; Use the last regexp specified, by default, if input is empty.
628 (list (if (string= regexp "")
629 (setcar minibuffer-history-search-history
630 (nth 1 minibuffer-history-search-history))
631 regexp)
632 (prefix-numeric-value current-prefix-arg))))
633 (previous-matching-history-element regexp (- n)))
635 (defun next-history-element (n)
636 "Insert the next element of the minibuffer history into the minibuffer."
637 (interactive "p")
638 (or (zerop n)
639 (let ((narg (min (max 1 (- minibuffer-history-position n))
640 (length (symbol-value minibuffer-history-variable)))))
641 (if (or (zerop narg)
642 (= minibuffer-history-position narg))
643 (error (if (if (zerop narg)
644 (> n 0)
645 (= minibuffer-history-position 1))
646 "End of history; no next item"
647 "Beginning of history; no preceding item"))
648 (erase-buffer)
649 (setq minibuffer-history-position narg)
650 (let ((elt (nth (1- minibuffer-history-position)
651 (symbol-value minibuffer-history-variable))))
652 (insert
653 (if minibuffer-history-sexp-flag
654 (let ((print-level nil))
655 (prin1-to-string elt))
656 elt)))
657 (goto-char (point-min))))))
659 (defun previous-history-element (n)
660 "Inserts the previous element of the minibuffer history into the minibuffer."
661 (interactive "p")
662 (next-history-element (- n)))
664 (defun next-complete-history-element (n)
665 "Get next element of history which is a completion of minibuffer contents."
666 (interactive "p")
667 (let ((point-at-start (point)))
668 (next-matching-history-element
669 (concat "^" (regexp-quote (buffer-substring (point-min) (point)))) n)
670 ;; next-matching-history-element always puts us at (point-min).
671 ;; Move to the position we were at before changing the buffer contents.
672 ;; This is still sensical, because the text before point has not changed.
673 (goto-char point-at-start)))
675 (defun previous-complete-history-element (n)
677 Get previous element of history which is a completion of minibuffer contents."
678 (interactive "p")
679 (next-complete-history-element (- n)))
681 (defun goto-line (arg)
682 "Goto line ARG, counting from line 1 at beginning of buffer."
683 (interactive "NGoto line: ")
684 (setq arg (prefix-numeric-value arg))
685 (save-restriction
686 (widen)
687 (goto-char 1)
688 (if (eq selective-display t)
689 (re-search-forward "[\n\C-m]" nil 'end (1- arg))
690 (forward-line (1- arg)))))
692 ;Put this on C-x u, so we can force that rather than C-_ into startup msg
693 (define-function 'advertised-undo 'undo)
695 (defun undo (&optional arg)
696 "Undo some previous changes.
697 Repeat this command to undo more changes.
698 A numeric argument serves as a repeat count."
699 (interactive "*p")
700 ;; If we don't get all the way thru, make last-command indicate that
701 ;; for the following command.
702 (setq this-command t)
703 (let ((modified (buffer-modified-p))
704 (recent-save (recent-auto-save-p)))
705 (or (eq (selected-window) (minibuffer-window))
706 (message "Undo!"))
707 (or (eq last-command 'undo)
708 (progn (undo-start)
709 (undo-more 1)))
710 (undo-more (or arg 1))
711 ;; Don't specify a position in the undo record for the undo command.
712 ;; Instead, undoing this should move point to where the change is.
713 (let ((tail buffer-undo-list)
714 done)
715 (while (and tail (not done) (not (null (car tail))))
716 (if (integerp (car tail))
717 (progn
718 (setq done t)
719 (setq buffer-undo-list (delq (car tail) buffer-undo-list))))
720 (setq tail (cdr tail))))
721 (and modified (not (buffer-modified-p))
722 (delete-auto-save-file-if-necessary recent-save)))
723 ;; If we do get all the way thru, make this-command indicate that.
724 (setq this-command 'undo))
726 (defvar pending-undo-list nil
727 "Within a run of consecutive undo commands, list remaining to be undone.")
729 (defun undo-start ()
730 "Set `pending-undo-list' to the front of the undo list.
731 The next call to `undo-more' will undo the most recently made change."
732 (if (eq buffer-undo-list t)
733 (error "No undo information in this buffer"))
734 (setq pending-undo-list buffer-undo-list))
736 (defun undo-more (count)
737 "Undo back N undo-boundaries beyond what was already undone recently.
738 Call `undo-start' to get ready to undo recent changes,
739 then call `undo-more' one or more times to undo them."
740 (or pending-undo-list
741 (error "No further undo information"))
742 (setq pending-undo-list (primitive-undo count pending-undo-list)))
744 (defvar shell-command-history nil
745 "History list for some commands that read shell commands.")
747 (defvar shell-command-switch "-c"
748 "Switch used to have the shell execute its command line argument.")
750 (defun shell-command (command &optional output-buffer)
751 "Execute string COMMAND in inferior shell; display output, if any.
753 If COMMAND ends in ampersand, execute it asynchronously.
754 The output appears in the buffer `*Async Shell Command*'.
755 That buffer is in shell mode.
757 Otherwise, COMMAND is executed synchronously. The output appears in the
758 buffer `*Shell Command Output*'.
759 If the output is one line, it is displayed in the echo area *as well*,
760 but it is nonetheless available in buffer `*Shell Command Output*',
761 even though that buffer is not automatically displayed.
762 If there is no output, or if output is inserted in the current buffer,
763 then `*Shell Command Output*' is deleted.
765 The optional second argument OUTPUT-BUFFER, if non-nil,
766 says to put the output in some other buffer.
767 If OUTPUT-BUFFER is a buffer or buffer name, put the output there.
768 If OUTPUT-BUFFER is not a buffer and not nil,
769 insert output in current buffer. (This cannot be done asynchronously.)
770 In either case, the output is inserted after point (leaving mark after it)."
771 (interactive (list (read-from-minibuffer "Shell command: "
772 nil nil nil 'shell-command-history)
773 current-prefix-arg))
774 (if (and output-buffer
775 (not (or (bufferp output-buffer) (stringp output-buffer))))
776 (progn (barf-if-buffer-read-only)
777 (push-mark)
778 ;; We do not use -f for csh; we will not support broken use of
779 ;; .cshrcs. Even the BSD csh manual says to use
780 ;; "if ($?prompt) exit" before things which are not useful
781 ;; non-interactively. Besides, if someone wants their other
782 ;; aliases for shell commands then they can still have them.
783 (call-process shell-file-name nil t nil
784 shell-command-switch command)
785 ;; This is like exchange-point-and-mark, but doesn't
786 ;; activate the mark. It is cleaner to avoid activation,
787 ;; even though the command loop would deactivate the mark
788 ;; because we inserted text.
789 (goto-char (prog1 (mark t)
790 (set-marker (mark-marker) (point)
791 (current-buffer)))))
792 ;; Preserve the match data in case called from a program.
793 (save-match-data
794 (if (string-match "[ \t]*&[ \t]*$" command)
795 ;; Command ending with ampersand means asynchronous.
796 (let ((buffer (get-buffer-create
797 (or output-buffer "*Asynch Shell Command*")))
798 (directory default-directory)
799 proc)
800 ;; Remove the ampersand.
801 (setq command (substring command 0 (match-beginning 0)))
802 ;; If will kill a process, query first.
803 (setq proc (get-buffer-process buffer))
804 (if proc
805 (if (yes-or-no-p "A command is running. Kill it? ")
806 (kill-process proc)
807 (error "Shell command in progress")))
808 (save-excursion
809 (set-buffer buffer)
810 (setq buffer-read-only nil)
811 (erase-buffer)
812 (display-buffer buffer)
813 (setq default-directory directory)
814 (setq proc (start-process "Shell" buffer shell-file-name
815 shell-command-switch command))
816 (setq mode-line-process '(":%s"))
817 (require 'shell) (shell-mode)
818 (set-process-sentinel proc 'shell-command-sentinel)
820 (shell-command-on-region (point) (point) command nil)
821 ))))
823 ;; We have a sentinel to prevent insertion of a termination message
824 ;; in the buffer itself.
825 (defun shell-command-sentinel (process signal)
826 (if (memq (process-status process) '(exit signal))
827 (message "%s: %s."
828 (car (cdr (cdr (process-command process))))
829 (substring signal 0 -1))))
831 (defun shell-command-on-region (start end command
832 &optional output-buffer replace)
833 "Execute string COMMAND in inferior shell with region as input.
834 Normally display output (if any) in temp buffer `*Shell Command Output*';
835 Prefix arg means replace the region with it.
837 The noninteractive arguments are START, END, COMMAND, OUTPUT-BUFFER, REPLACE.
838 If REPLACE is non-nil, that means insert the output
839 in place of text from START to END, putting point and mark around it.
841 If the output is one line, it is displayed in the echo area,
842 but it is nonetheless available in buffer `*Shell Command Output*'
843 even though that buffer is not automatically displayed.
844 If there is no output, or if output is inserted in the current buffer,
845 then `*Shell Command Output*' is deleted.
847 If the optional fourth argument OUTPUT-BUFFER is non-nil,
848 that says to put the output in some other buffer.
849 If OUTPUT-BUFFER is a buffer or buffer name, put the output there.
850 If OUTPUT-BUFFER is not a buffer and not nil,
851 insert output in the current buffer.
852 In either case, the output is inserted after point (leaving mark after it)."
853 (interactive (let ((string
854 ;; Do this before calling region-beginning
855 ;; and region-end, in case subprocess output
856 ;; relocates them while we are in the minibuffer.
857 (read-from-minibuffer "Shell command on region: "
858 nil nil nil
859 'shell-command-history)))
860 ;; call-interactively recognizes region-beginning and
861 ;; region-end specially, leaving them in the history.
862 (list (region-beginning) (region-end)
863 string
864 current-prefix-arg
865 current-prefix-arg)))
866 (if (or replace
867 (and output-buffer
868 (not (or (bufferp output-buffer) (stringp output-buffer))))
869 (equal (buffer-name (current-buffer)) "*Shell Command Output*"))
870 ;; Replace specified region with output from command.
871 (let ((swap (and replace (< start end))))
872 ;; Don't muck with mark unless REPLACE says we should.
873 (goto-char start)
874 (and replace (push-mark))
875 (call-process-region start end shell-file-name t t nil
876 shell-command-switch command)
877 (let ((shell-buffer (get-buffer "*Shell Command Output*")))
878 (and shell-buffer (not (eq shell-buffer (current-buffer)))
879 (kill-buffer shell-buffer)))
880 ;; Don't muck with mark unless REPLACE says we should.
881 (and replace swap (exchange-point-and-mark)))
882 ;; No prefix argument: put the output in a temp buffer,
883 ;; replacing its entire contents.
884 (let ((buffer (get-buffer-create
885 (or output-buffer "*Shell Command Output*")))
886 (success nil))
887 (unwind-protect
888 (if (eq buffer (current-buffer))
889 ;; If the input is the same buffer as the output,
890 ;; delete everything but the specified region,
891 ;; then replace that region with the output.
892 (progn (setq buffer-read-only nil)
893 (delete-region (max start end) (point-max))
894 (delete-region (point-min) (max start end))
895 (call-process-region (point-min) (point-max)
896 shell-file-name t t nil
897 shell-command-switch command)
898 (setq success t))
899 ;; Clear the output buffer, then run the command with output there.
900 (save-excursion
901 (set-buffer buffer)
902 (setq buffer-read-only nil)
903 (erase-buffer))
904 (call-process-region start end shell-file-name
905 nil buffer nil
906 shell-command-switch command)
907 (setq success t))
908 ;; Report the amount of output.
909 (let ((lines (save-excursion
910 (set-buffer buffer)
911 (if (= (buffer-size) 0)
913 (count-lines (point-min) (point-max))))))
914 (cond ((= lines 0)
915 (if success
916 (message "(Shell command completed with no output)"))
917 (kill-buffer buffer))
918 ((and success (= lines 1))
919 (message "%s"
920 (save-excursion
921 (set-buffer buffer)
922 (goto-char (point-min))
923 (buffer-substring (point)
924 (progn (end-of-line) (point))))))
926 (set-window-start (display-buffer buffer) 1))))))))
928 (defconst universal-argument-map
929 (let ((map (make-sparse-keymap)))
930 (define-key map [t] 'universal-argument-other-key)
931 (define-key map (vector meta-prefix-char t) 'universal-argument-other-key)
932 (define-key map [switch-frame] nil)
933 (define-key map [?\C-u] 'universal-argument-more)
934 (define-key map [?-] 'universal-argument-minus)
935 (define-key map [?0] 'digit-argument)
936 (define-key map [?1] 'digit-argument)
937 (define-key map [?2] 'digit-argument)
938 (define-key map [?3] 'digit-argument)
939 (define-key map [?4] 'digit-argument)
940 (define-key map [?5] 'digit-argument)
941 (define-key map [?6] 'digit-argument)
942 (define-key map [?7] 'digit-argument)
943 (define-key map [?8] 'digit-argument)
944 (define-key map [?9] 'digit-argument)
945 map)
946 "Keymap used while processing \\[universal-argument].")
948 (defvar universal-argument-num-events nil
949 "Number of argument-specifying events read by `universal-argument'.
950 `universal-argument-other-key' uses this to discard those events
951 from (this-command-keys), and reread only the final command.")
953 (defun universal-argument ()
954 "Begin a numeric argument for the following command.
955 Digits or minus sign following \\[universal-argument] make up the numeric argument.
956 \\[universal-argument] following the digits or minus sign ends the argument.
957 \\[universal-argument] without digits or minus sign provides 4 as argument.
958 Repeating \\[universal-argument] without digits or minus sign
959 multiplies the argument by 4 each time."
960 (interactive)
961 (setq prefix-arg (list 4))
962 (setq universal-argument-num-events (length (this-command-keys)))
963 (setq overriding-terminal-local-map universal-argument-map))
965 ;; A subsequent C-u means to multiply the factor by 4 if we've typed
966 ;; nothing but C-u's; otherwise it means to terminate the prefix arg.
967 (defun universal-argument-more (arg)
968 (interactive "P")
969 (if (consp arg)
970 (setq prefix-arg (list (* 4 (car arg))))
971 (setq prefix-arg arg)
972 (setq overriding-terminal-local-map nil))
973 (setq universal-argument-num-events (length (this-command-keys))))
975 (defun negative-argument (arg)
976 "Begin a negative numeric argument for the next command.
977 \\[universal-argument] following digits or minus sign ends the argument."
978 (interactive "P")
979 (cond ((integerp arg)
980 (setq prefix-arg (- arg)))
981 ((eq arg '-)
982 (setq prefix-arg nil))
984 (setq prefix-arg '-)))
985 (setq universal-argument-num-events (length (this-command-keys)))
986 (setq overriding-terminal-local-map universal-argument-map))
988 (defun digit-argument (arg)
989 "Part of the numeric argument for the next command.
990 \\[universal-argument] following digits or minus sign ends the argument."
991 (interactive "P")
992 (let ((digit (- (logand last-command-char ?\177) ?0)))
993 (cond ((integerp arg)
994 (setq prefix-arg (+ (* arg 10)
995 (if (< arg 0) (- digit) digit))))
996 ((eq arg '-)
997 ;; Treat -0 as just -, so that -01 will work.
998 (setq prefix-arg (if (zerop digit) '- (- digit))))
1000 (setq prefix-arg digit))))
1001 (setq universal-argument-num-events (length (this-command-keys)))
1002 (setq overriding-terminal-local-map universal-argument-map))
1004 ;; For backward compatibility, minus with no modifiers is an ordinary
1005 ;; command if digits have already been entered.
1006 (defun universal-argument-minus (arg)
1007 (interactive "P")
1008 (if (integerp arg)
1009 (universal-argument-other-key arg)
1010 (negative-argument arg)))
1012 ;; Anything else terminates the argument and is left in the queue to be
1013 ;; executed as a command.
1014 (defun universal-argument-other-key (arg)
1015 (interactive "P")
1016 (setq prefix-arg arg)
1017 (let* ((key (this-command-keys))
1018 (keylist (listify-key-sequence key)))
1019 (setq unread-command-events
1020 (append (nthcdr universal-argument-num-events keylist)
1021 unread-command-events)))
1022 (reset-this-command-lengths)
1023 (setq overriding-terminal-local-map nil))
1025 (defun forward-to-indentation (arg)
1026 "Move forward ARG lines and position at first nonblank character."
1027 (interactive "p")
1028 (forward-line arg)
1029 (skip-chars-forward " \t"))
1031 (defun backward-to-indentation (arg)
1032 "Move backward ARG lines and position at first nonblank character."
1033 (interactive "p")
1034 (forward-line (- arg))
1035 (skip-chars-forward " \t"))
1037 (defvar kill-whole-line nil
1038 "*If non-nil, `kill-line' with no arg at beg of line kills the whole line.")
1040 (defun kill-line (&optional arg)
1041 "Kill the rest of the current line; if no nonblanks there, kill thru newline.
1042 With prefix argument, kill that many lines from point.
1043 Negative arguments kill lines backward.
1045 When calling from a program, nil means \"no arg\",
1046 a number counts as a prefix arg.
1048 If `kill-whole-line' is non-nil, then kill the whole line
1049 when given no argument at the beginning of a line."
1050 (interactive "P")
1051 (kill-region (point)
1052 ;; It is better to move point to the other end of the kill
1053 ;; before killing. That way, in a read-only buffer, point
1054 ;; moves across the text that is copied to the kill ring.
1055 ;; The choice has no effect on undo now that undo records
1056 ;; the value of point from before the command was run.
1057 (progn
1058 (if arg
1059 (forward-line (prefix-numeric-value arg))
1060 (if (eobp)
1061 (signal 'end-of-buffer nil))
1062 (if (or (looking-at "[ \t]*$") (and kill-whole-line (bolp)))
1063 (forward-line 1)
1064 (end-of-line)))
1065 (point))))
1067 ;;;; Window system cut and paste hooks.
1069 (defvar interprogram-cut-function nil
1070 "Function to call to make a killed region available to other programs.
1072 Most window systems provide some sort of facility for cutting and
1073 pasting text between the windows of different programs.
1074 This variable holds a function that Emacs calls whenever text
1075 is put in the kill ring, to make the new kill available to other
1076 programs.
1078 The function takes one or two arguments.
1079 The first argument, TEXT, is a string containing
1080 the text which should be made available.
1081 The second, PUSH, if non-nil means this is a \"new\" kill;
1082 nil means appending to an \"old\" kill.")
1084 (defvar interprogram-paste-function nil
1085 "Function to call to get text cut from other programs.
1087 Most window systems provide some sort of facility for cutting and
1088 pasting text between the windows of different programs.
1089 This variable holds a function that Emacs calls to obtain
1090 text that other programs have provided for pasting.
1092 The function should be called with no arguments. If the function
1093 returns nil, then no other program has provided such text, and the top
1094 of the Emacs kill ring should be used. If the function returns a
1095 string, that string should be put in the kill ring as the latest kill.
1097 Note that the function should return a string only if a program other
1098 than Emacs has provided a string for pasting; if Emacs provided the
1099 most recent string, the function should return nil. If it is
1100 difficult to tell whether Emacs or some other program provided the
1101 current string, it is probably good enough to return nil if the string
1102 is equal (according to `string=') to the last text Emacs provided.")
1106 ;;;; The kill ring data structure.
1108 (defvar kill-ring nil
1109 "List of killed text sequences.
1110 Since the kill ring is supposed to interact nicely with cut-and-paste
1111 facilities offered by window systems, use of this variable should
1112 interact nicely with `interprogram-cut-function' and
1113 `interprogram-paste-function'. The functions `kill-new',
1114 `kill-append', and `current-kill' are supposed to implement this
1115 interaction; you may want to use them instead of manipulating the kill
1116 ring directly.")
1118 (defconst kill-ring-max 30
1119 "*Maximum length of kill ring before oldest elements are thrown away.")
1121 (defvar kill-ring-yank-pointer nil
1122 "The tail of the kill ring whose car is the last thing yanked.")
1124 (defun kill-new (string &optional replace)
1125 "Make STRING the latest kill in the kill ring.
1126 Set the kill-ring-yank pointer to point to it.
1127 If `interprogram-cut-function' is non-nil, apply it to STRING.
1128 Optional second argument REPLACE non-nil means that STRING will replace
1129 the front of the kill ring, rather than being added to the list."
1130 (and (fboundp 'menu-bar-update-yank-menu)
1131 (menu-bar-update-yank-menu string (and replace (car kill-ring))))
1132 (if replace
1133 (setcar kill-ring string)
1134 (setq kill-ring (cons string kill-ring))
1135 (if (> (length kill-ring) kill-ring-max)
1136 (setcdr (nthcdr (1- kill-ring-max) kill-ring) nil)))
1137 (setq kill-ring-yank-pointer kill-ring)
1138 (if interprogram-cut-function
1139 (funcall interprogram-cut-function string (not replace))))
1141 (defun kill-append (string before-p)
1142 "Append STRING to the end of the latest kill in the kill ring.
1143 If BEFORE-P is non-nil, prepend STRING to the kill.
1144 If `interprogram-cut-function' is set, pass the resulting kill to
1145 it."
1146 (kill-new (if before-p
1147 (concat string (car kill-ring))
1148 (concat (car kill-ring) string)) t))
1150 (defun current-kill (n &optional do-not-move)
1151 "Rotate the yanking point by N places, and then return that kill.
1152 If N is zero, `interprogram-paste-function' is set, and calling it
1153 returns a string, then that string is added to the front of the
1154 kill ring and returned as the latest kill.
1155 If optional arg DO-NOT-MOVE is non-nil, then don't actually move the
1156 yanking point; just return the Nth kill forward."
1157 (let ((interprogram-paste (and (= n 0)
1158 interprogram-paste-function
1159 (funcall interprogram-paste-function))))
1160 (if interprogram-paste
1161 (progn
1162 ;; Disable the interprogram cut function when we add the new
1163 ;; text to the kill ring, so Emacs doesn't try to own the
1164 ;; selection, with identical text.
1165 (let ((interprogram-cut-function nil))
1166 (kill-new interprogram-paste))
1167 interprogram-paste)
1168 (or kill-ring (error "Kill ring is empty"))
1169 (let ((ARGth-kill-element
1170 (nthcdr (mod (- n (length kill-ring-yank-pointer))
1171 (length kill-ring))
1172 kill-ring)))
1173 (or do-not-move
1174 (setq kill-ring-yank-pointer ARGth-kill-element))
1175 (car ARGth-kill-element)))))
1179 ;;;; Commands for manipulating the kill ring.
1181 (defvar kill-read-only-ok nil
1182 "*Non-nil means don't signal an error for killing read-only text.")
1184 (defun kill-region (beg end)
1185 "Kill between point and mark.
1186 The text is deleted but saved in the kill ring.
1187 The command \\[yank] can retrieve it from there.
1188 \(If you want to kill and then yank immediately, use \\[copy-region-as-kill].)
1189 If the buffer is read-only, Emacs will beep and refrain from deleting
1190 the text, but put the text in the kill ring anyway. This means that
1191 you can use the killing commands to copy text from a read-only buffer.
1193 This is the primitive for programs to kill text (as opposed to deleting it).
1194 Supply two arguments, character numbers indicating the stretch of text
1195 to be killed.
1196 Any command that calls this function is a \"kill command\".
1197 If the previous command was also a kill command,
1198 the text killed this time appends to the text killed last time
1199 to make one entry in the kill ring."
1200 (interactive "r")
1201 (cond
1203 ;; If the buffer is read-only, we should beep, in case the person
1204 ;; just isn't aware of this. However, there's no harm in putting
1205 ;; the region's text in the kill ring, anyway.
1206 ((or (and buffer-read-only (not inhibit-read-only))
1207 (text-property-not-all beg end 'read-only nil))
1208 (copy-region-as-kill beg end)
1209 ;; This should always barf, and give us the correct error.
1210 (if kill-read-only-ok
1211 (message "Read only text copied to kill ring")
1212 (setq this-command 'kill-region)
1213 (barf-if-buffer-read-only)))
1215 ;; In certain cases, we can arrange for the undo list and the kill
1216 ;; ring to share the same string object. This code does that.
1217 ((not (or (eq buffer-undo-list t)
1218 (eq last-command 'kill-region)
1219 ;; Use = since positions may be numbers or markers.
1220 (= beg end)))
1221 ;; Don't let the undo list be truncated before we can even access it.
1222 (let ((undo-strong-limit (+ (- (max beg end) (min beg end)) 100))
1223 (old-list buffer-undo-list)
1224 tail)
1225 (delete-region beg end)
1226 ;; Search back in buffer-undo-list for this string,
1227 ;; in case a change hook made property changes.
1228 (setq tail buffer-undo-list)
1229 (while (not (stringp (car (car tail))))
1230 (setq tail (cdr tail)))
1231 ;; Take the same string recorded for undo
1232 ;; and put it in the kill-ring.
1233 (kill-new (car (car tail)))))
1236 (copy-region-as-kill beg end)
1237 (delete-region beg end)))
1238 (setq this-command 'kill-region))
1240 ;; copy-region-as-kill no longer sets this-command, because it's confusing
1241 ;; to get two copies of the text when the user accidentally types M-w and
1242 ;; then corrects it with the intended C-w.
1243 (defun copy-region-as-kill (beg end)
1244 "Save the region as if killed, but don't kill it.
1245 If `interprogram-cut-function' is non-nil, also save the text for a window
1246 system cut and paste."
1247 (interactive "r")
1248 (if (eq last-command 'kill-region)
1249 (kill-append (buffer-substring beg end) (< end beg))
1250 (kill-new (buffer-substring beg end)))
1251 nil)
1253 (defun kill-ring-save (beg end)
1254 "Save the region as if killed, but don't kill it.
1255 This command is similar to `copy-region-as-kill', except that it gives
1256 visual feedback indicating the extent of the region being copied.
1257 If `interprogram-cut-function' is non-nil, also save the text for a window
1258 system cut and paste."
1259 (interactive "r")
1260 (copy-region-as-kill beg end)
1261 (if (interactive-p)
1262 (let ((other-end (if (= (point) beg) end beg))
1263 (opoint (point))
1264 ;; Inhibit quitting so we can make a quit here
1265 ;; look like a C-g typed as a command.
1266 (inhibit-quit t))
1267 (if (pos-visible-in-window-p other-end (selected-window))
1268 (progn
1269 ;; Swap point and mark.
1270 (set-marker (mark-marker) (point) (current-buffer))
1271 (goto-char other-end)
1272 (sit-for 1)
1273 ;; Swap back.
1274 (set-marker (mark-marker) other-end (current-buffer))
1275 (goto-char opoint)
1276 ;; If user quit, deactivate the mark
1277 ;; as C-g would as a command.
1278 (and quit-flag mark-active
1279 (deactivate-mark)))
1280 (let* ((killed-text (current-kill 0))
1281 (message-len (min (length killed-text) 40)))
1282 (if (= (point) beg)
1283 ;; Don't say "killed"; that is misleading.
1284 (message "Saved text until \"%s\""
1285 (substring killed-text (- message-len)))
1286 (message "Saved text from \"%s\""
1287 (substring killed-text 0 message-len))))))))
1289 (defun append-next-kill ()
1290 "Cause following command, if it kills, to append to previous kill."
1291 (interactive)
1292 (if (interactive-p)
1293 (progn
1294 (setq this-command 'kill-region)
1295 (message "If the next command is a kill, it will append"))
1296 (setq last-command 'kill-region)))
1298 (defun yank-pop (arg)
1299 "Replace just-yanked stretch of killed text with a different stretch.
1300 This command is allowed only immediately after a `yank' or a `yank-pop'.
1301 At such a time, the region contains a stretch of reinserted
1302 previously-killed text. `yank-pop' deletes that text and inserts in its
1303 place a different stretch of killed text.
1305 With no argument, the previous kill is inserted.
1306 With argument N, insert the Nth previous kill.
1307 If N is negative, this is a more recent kill.
1309 The sequence of kills wraps around, so that after the oldest one
1310 comes the newest one."
1311 (interactive "*p")
1312 (if (not (eq last-command 'yank))
1313 (error "Previous command was not a yank"))
1314 (setq this-command 'yank)
1315 (let ((before (< (point) (mark t))))
1316 (delete-region (point) (mark t))
1317 (set-marker (mark-marker) (point) (current-buffer))
1318 (insert (current-kill arg))
1319 (if before
1320 ;; This is like exchange-point-and-mark, but doesn't activate the mark.
1321 ;; It is cleaner to avoid activation, even though the command
1322 ;; loop would deactivate the mark because we inserted text.
1323 (goto-char (prog1 (mark t)
1324 (set-marker (mark-marker) (point) (current-buffer))))))
1325 nil)
1327 (defun yank (&optional arg)
1328 "Reinsert the last stretch of killed text.
1329 More precisely, reinsert the stretch of killed text most recently
1330 killed OR yanked. Put point at end, and set mark at beginning.
1331 With just C-u as argument, same but put point at beginning (and mark at end).
1332 With argument N, reinsert the Nth most recently killed stretch of killed
1333 text.
1334 See also the command \\[yank-pop]."
1335 (interactive "*P")
1336 ;; If we don't get all the way thru, make last-command indicate that
1337 ;; for the following command.
1338 (setq this-command t)
1339 (push-mark (point))
1340 (insert (current-kill (cond
1341 ((listp arg) 0)
1342 ((eq arg '-) -1)
1343 (t (1- arg)))))
1344 (if (consp arg)
1345 ;; This is like exchange-point-and-mark, but doesn't activate the mark.
1346 ;; It is cleaner to avoid activation, even though the command
1347 ;; loop would deactivate the mark because we inserted text.
1348 (goto-char (prog1 (mark t)
1349 (set-marker (mark-marker) (point) (current-buffer)))))
1350 ;; If we do get all the way thru, make this-command indicate that.
1351 (setq this-command 'yank)
1352 nil)
1354 (defun rotate-yank-pointer (arg)
1355 "Rotate the yanking point in the kill ring.
1356 With argument, rotate that many kills forward (or backward, if negative)."
1357 (interactive "p")
1358 (current-kill arg))
1361 (defun insert-buffer (buffer)
1362 "Insert after point the contents of BUFFER.
1363 Puts mark after the inserted text.
1364 BUFFER may be a buffer or a buffer name."
1365 (interactive (list (progn (barf-if-buffer-read-only)
1366 (read-buffer "Insert buffer: "
1367 (other-buffer (current-buffer) t)
1368 t))))
1369 (or (bufferp buffer)
1370 (setq buffer (get-buffer buffer)))
1371 (let (start end newmark)
1372 (save-excursion
1373 (save-excursion
1374 (set-buffer buffer)
1375 (setq start (point-min) end (point-max)))
1376 (insert-buffer-substring buffer start end)
1377 (setq newmark (point)))
1378 (push-mark newmark))
1379 nil)
1381 (defun append-to-buffer (buffer start end)
1382 "Append to specified buffer the text of the region.
1383 It is inserted into that buffer before its point.
1385 When calling from a program, give three arguments:
1386 BUFFER (or buffer name), START and END.
1387 START and END specify the portion of the current buffer to be copied."
1388 (interactive
1389 (list (read-buffer "Append to buffer: " (other-buffer (current-buffer) t))
1390 (region-beginning) (region-end)))
1391 (let ((oldbuf (current-buffer)))
1392 (save-excursion
1393 (set-buffer (get-buffer-create buffer))
1394 (insert-buffer-substring oldbuf start end))))
1396 (defun prepend-to-buffer (buffer start end)
1397 "Prepend to specified buffer the text of the region.
1398 It is inserted into that buffer after its point.
1400 When calling from a program, give three arguments:
1401 BUFFER (or buffer name), START and END.
1402 START and END specify the portion of the current buffer to be copied."
1403 (interactive "BPrepend to buffer: \nr")
1404 (let ((oldbuf (current-buffer)))
1405 (save-excursion
1406 (set-buffer (get-buffer-create buffer))
1407 (save-excursion
1408 (insert-buffer-substring oldbuf start end)))))
1410 (defun copy-to-buffer (buffer start end)
1411 "Copy to specified buffer the text of the region.
1412 It is inserted into that buffer, replacing existing text there.
1414 When calling from a program, give three arguments:
1415 BUFFER (or buffer name), START and END.
1416 START and END specify the portion of the current buffer to be copied."
1417 (interactive "BCopy to buffer: \nr")
1418 (let ((oldbuf (current-buffer)))
1419 (save-excursion
1420 (set-buffer (get-buffer-create buffer))
1421 (erase-buffer)
1422 (save-excursion
1423 (insert-buffer-substring oldbuf start end)))))
1425 (put 'mark-inactive 'error-conditions '(mark-inactive error))
1426 (put 'mark-inactive 'error-message "The mark is not active now")
1428 (defun mark (&optional force)
1429 "Return this buffer's mark value as integer; error if mark inactive.
1430 If optional argument FORCE is non-nil, access the mark value
1431 even if the mark is not currently active, and return nil
1432 if there is no mark at all.
1434 If you are using this in an editing command, you are most likely making
1435 a mistake; see the documentation of `set-mark'."
1436 (if (or force (not transient-mark-mode) mark-active mark-even-if-inactive)
1437 (marker-position (mark-marker))
1438 (signal 'mark-inactive nil)))
1440 ;; Many places set mark-active directly, and several of them failed to also
1441 ;; run deactivate-mark-hook. This shorthand should simplify.
1442 (defsubst deactivate-mark ()
1443 "Deactivate the mark by setting `mark-active' to nil.
1444 \(That makes a difference only in Transient Mark mode.)
1445 Also runs the hook `deactivate-mark-hook'."
1446 (if transient-mark-mode
1447 (progn
1448 (setq mark-active nil)
1449 (run-hooks 'deactivate-mark-hook))))
1451 (defun set-mark (pos)
1452 "Set this buffer's mark to POS. Don't use this function!
1453 That is to say, don't use this function unless you want
1454 the user to see that the mark has moved, and you want the previous
1455 mark position to be lost.
1457 Normally, when a new mark is set, the old one should go on the stack.
1458 This is why most applications should use push-mark, not set-mark.
1460 Novice Emacs Lisp programmers often try to use the mark for the wrong
1461 purposes. The mark saves a location for the user's convenience.
1462 Most editing commands should not alter the mark.
1463 To remember a location for internal use in the Lisp program,
1464 store it in a Lisp variable. Example:
1466 (let ((beg (point))) (forward-line 1) (delete-region beg (point)))."
1468 (if pos
1469 (progn
1470 (setq mark-active t)
1471 (run-hooks 'activate-mark-hook)
1472 (set-marker (mark-marker) pos (current-buffer)))
1473 ;; Normally we never clear mark-active except in Transient Mark mode.
1474 ;; But when we actually clear out the mark value too,
1475 ;; we must clear mark-active in any mode.
1476 (setq mark-active nil)
1477 (run-hooks 'deactivate-mark-hook)
1478 (set-marker (mark-marker) nil)))
1480 (defvar mark-ring nil
1481 "The list of former marks of the current buffer, most recent first.")
1482 (make-variable-buffer-local 'mark-ring)
1483 (put 'mark-ring 'permanent-local t)
1485 (defconst mark-ring-max 16
1486 "*Maximum size of mark ring. Start discarding off end if gets this big.")
1488 (defvar global-mark-ring nil
1489 "The list of saved global marks, most recent first.")
1491 (defconst global-mark-ring-max 16
1492 "*Maximum size of global mark ring. \
1493 Start discarding off end if gets this big.")
1495 (defun set-mark-command (arg)
1496 "Set mark at where point is, or jump to mark.
1497 With no prefix argument, set mark, push old mark position on local mark
1498 ring, and push mark on global mark ring.
1499 With argument, jump to mark, and pop a new position for mark off the ring
1500 \(does not affect global mark ring\).
1502 Novice Emacs Lisp programmers often try to use the mark for the wrong
1503 purposes. See the documentation of `set-mark' for more information."
1504 (interactive "P")
1505 (if (null arg)
1506 (progn
1507 (push-mark nil nil t))
1508 (if (null (mark t))
1509 (error "No mark set in this buffer")
1510 (goto-char (mark t))
1511 (pop-mark))))
1513 (defun push-mark (&optional location nomsg activate)
1514 "Set mark at LOCATION (point, by default) and push old mark on mark ring.
1515 If the last global mark pushed was not in the current buffer,
1516 also push LOCATION on the global mark ring.
1517 Display `Mark set' unless the optional second arg NOMSG is non-nil.
1518 In Transient Mark mode, activate mark if optional third arg ACTIVATE non-nil.
1520 Novice Emacs Lisp programmers often try to use the mark for the wrong
1521 purposes. See the documentation of `set-mark' for more information.
1523 In Transient Mark mode, this does not activate the mark."
1524 (if (null (mark t))
1526 (setq mark-ring (cons (copy-marker (mark-marker)) mark-ring))
1527 (if (> (length mark-ring) mark-ring-max)
1528 (progn
1529 (move-marker (car (nthcdr mark-ring-max mark-ring)) nil)
1530 (setcdr (nthcdr (1- mark-ring-max) mark-ring) nil))))
1531 (set-marker (mark-marker) (or location (point)) (current-buffer))
1532 ;; Now push the mark on the global mark ring.
1533 (if (and global-mark-ring
1534 (eq (marker-buffer (car global-mark-ring)) (current-buffer)))
1535 ;; The last global mark pushed was in this same buffer.
1536 ;; Don't push another one.
1538 (setq global-mark-ring (cons (copy-marker (mark-marker)) global-mark-ring))
1539 (if (> (length global-mark-ring) global-mark-ring-max)
1540 (progn
1541 (move-marker (car (nthcdr global-mark-ring-max global-mark-ring))
1542 nil)
1543 (setcdr (nthcdr (1- global-mark-ring-max) global-mark-ring) nil))))
1544 (or nomsg executing-macro (> (minibuffer-depth) 0)
1545 (message "Mark set"))
1546 (if (or activate (not transient-mark-mode))
1547 (set-mark (mark t)))
1548 nil)
1550 (defun pop-mark ()
1551 "Pop off mark ring into the buffer's actual mark.
1552 Does not set point. Does nothing if mark ring is empty."
1553 (if mark-ring
1554 (progn
1555 (setq mark-ring (nconc mark-ring (list (copy-marker (mark-marker)))))
1556 (set-marker (mark-marker) (+ 0 (car mark-ring)) (current-buffer))
1557 (deactivate-mark)
1558 (move-marker (car mark-ring) nil)
1559 (if (null (mark t)) (ding))
1560 (setq mark-ring (cdr mark-ring)))))
1562 (define-function 'exchange-dot-and-mark 'exchange-point-and-mark)
1563 (defun exchange-point-and-mark ()
1564 "Put the mark where point is now, and point where the mark is now.
1565 This command works even when the mark is not active,
1566 and it reactivates the mark."
1567 (interactive nil)
1568 (let ((omark (mark t)))
1569 (if (null omark)
1570 (error "No mark set in this buffer"))
1571 (set-mark (point))
1572 (goto-char omark)
1573 nil))
1575 (defun transient-mark-mode (arg)
1576 "Toggle Transient Mark mode.
1577 With arg, turn Transient Mark mode on if arg is positive, off otherwise.
1579 In Transient Mark mode, when the mark is active, the region is highlighted.
1580 Changing the buffer \"deactivates\" the mark.
1581 So do certain other operations that set the mark
1582 but whose main purpose is something else--for example,
1583 incremental search, \\[beginning-of-buffer], and \\[end-of-buffer]."
1584 (interactive "P")
1585 (setq transient-mark-mode
1586 (if (null arg)
1587 (not transient-mark-mode)
1588 (> (prefix-numeric-value arg) 0))))
1590 (defun pop-global-mark ()
1591 "Pop off global mark ring and jump to the top location."
1592 (interactive)
1593 ;; Pop entries which refer to non-existent buffers.
1594 (while (and global-mark-ring (not (marker-buffer (car global-mark-ring))))
1595 (setq global-mark-ring (cdr global-mark-ring)))
1596 (or global-mark-ring
1597 (error "No global mark set"))
1598 (let* ((marker (car global-mark-ring))
1599 (buffer (marker-buffer marker))
1600 (position (marker-position marker)))
1601 (setq global-mark-ring (nconc (cdr global-mark-ring)
1602 (list (car global-mark-ring))))
1603 (set-buffer buffer)
1604 (or (and (>= position (point-min))
1605 (<= position (point-max)))
1606 (widen))
1607 (goto-char position)
1608 (switch-to-buffer buffer)))
1610 (defvar next-line-add-newlines t
1611 "*If non-nil, `next-line' inserts newline to avoid `end of buffer' error.")
1613 (defun next-line (arg)
1614 "Move cursor vertically down ARG lines.
1615 If there is no character in the target line exactly under the current column,
1616 the cursor is positioned after the character in that line which spans this
1617 column, or at the end of the line if it is not long enough.
1618 If there is no line in the buffer after this one, behavior depends on the
1619 value of `next-line-add-newlines'. If non-nil, it inserts a newline character
1620 to create a line, and moves the cursor to that line. Otherwise it moves the
1621 cursor to the end of the buffer.
1623 The command \\[set-goal-column] can be used to create
1624 a semipermanent goal column to which this command always moves.
1625 Then it does not try to move vertically. This goal column is stored
1626 in `goal-column', which is nil when there is none.
1628 If you are thinking of using this in a Lisp program, consider
1629 using `forward-line' instead. It is usually easier to use
1630 and more reliable (no dependence on goal column, etc.)."
1631 (interactive "p")
1632 (if (and next-line-add-newlines (= arg 1))
1633 (let ((opoint (point)))
1634 (end-of-line)
1635 (if (eobp)
1636 (newline 1)
1637 (goto-char opoint)
1638 (line-move arg)))
1639 (if (interactive-p)
1640 (condition-case nil
1641 (line-move arg)
1642 ((beginning-of-buffer end-of-buffer) (ding)))
1643 (line-move arg)))
1644 nil)
1646 (defun previous-line (arg)
1647 "Move cursor vertically up ARG lines.
1648 If there is no character in the target line exactly over the current column,
1649 the cursor is positioned after the character in that line which spans this
1650 column, or at the end of the line if it is not long enough.
1652 The command \\[set-goal-column] can be used to create
1653 a semipermanent goal column to which this command always moves.
1654 Then it does not try to move vertically.
1656 If you are thinking of using this in a Lisp program, consider using
1657 `forward-line' with a negative argument instead. It is usually easier
1658 to use and more reliable (no dependence on goal column, etc.)."
1659 (interactive "p")
1660 (if (interactive-p)
1661 (condition-case nil
1662 (line-move (- arg))
1663 ((beginning-of-buffer end-of-buffer) (ding)))
1664 (line-move (- arg)))
1665 nil)
1667 (defconst track-eol nil
1668 "*Non-nil means vertical motion starting at end of line keeps to ends of lines.
1669 This means moving to the end of each line moved onto.
1670 The beginning of a blank line does not count as the end of a line.")
1672 (defvar goal-column nil
1673 "*Semipermanent goal column for vertical motion, as set by \\[set-goal-column], or nil.")
1674 (make-variable-buffer-local 'goal-column)
1676 (defvar temporary-goal-column 0
1677 "Current goal column for vertical motion.
1678 It is the column where point was
1679 at the start of current run of vertical motion commands.
1680 When the `track-eol' feature is doing its job, the value is 9999.")
1682 (defvar line-move-ignore-invisible nil
1683 "*Non-nil means \\[next-line] and \\[previous-line] ignore invisible lines.
1684 Outline mode sets this.")
1686 ;; This is the guts of next-line and previous-line.
1687 ;; Arg says how many lines to move.
1688 (defun line-move (arg)
1689 ;; Don't run any point-motion hooks, and disregard intangibility,
1690 ;; for intermediate positions.
1691 (let ((inhibit-point-motion-hooks t)
1692 (opoint (point))
1693 new)
1694 (unwind-protect
1695 (progn
1696 (if (not (or (eq last-command 'next-line)
1697 (eq last-command 'previous-line)))
1698 (setq temporary-goal-column
1699 (if (and track-eol (eolp)
1700 ;; Don't count beg of empty line as end of line
1701 ;; unless we just did explicit end-of-line.
1702 (or (not (bolp)) (eq last-command 'end-of-line)))
1703 9999
1704 (current-column))))
1705 (if (and (not (integerp selective-display))
1706 (not line-move-ignore-invisible))
1707 ;; Use just newline characters.
1708 (or (if (> arg 0)
1709 (progn (if (> arg 1) (forward-line (1- arg)))
1710 ;; This way of moving forward ARG lines
1711 ;; verifies that we have a newline after the last one.
1712 ;; It doesn't get confused by intangible text.
1713 (end-of-line)
1714 (zerop (forward-line 1)))
1715 (and (zerop (forward-line arg))
1716 (bolp)))
1717 (signal (if (< arg 0)
1718 'beginning-of-buffer
1719 'end-of-buffer)
1720 nil))
1721 ;; Move by arg lines, but ignore invisible ones.
1722 (while (> arg 0)
1723 (end-of-line)
1724 (and (zerop (vertical-motion 1))
1725 (signal 'end-of-buffer nil))
1726 ;; If the following character is currently invisible,
1727 ;; skip all characters with that same `invisible' property value.
1728 (while (and (not (eobp))
1729 (let ((prop
1730 (get-char-property (point) 'invisible)))
1731 (if (eq buffer-invisibility-spec t)
1732 prop
1733 (or (memq prop buffer-invisibility-spec)
1734 (assq prop buffer-invisibility-spec)))))
1735 (if (get-text-property (point) 'invisible)
1736 (goto-char (next-single-property-change (point) 'invisible))
1737 (goto-char (next-overlay-change (point)))))
1738 (setq arg (1- arg)))
1739 (while (< arg 0)
1740 (beginning-of-line)
1741 (and (zerop (vertical-motion -1))
1742 (signal 'beginning-of-buffer nil))
1743 (while (and (not (bobp))
1744 (let ((prop
1745 (get-char-property (1- (point)) 'invisible)))
1746 (if (eq buffer-invisibility-spec t)
1747 prop
1748 (or (memq prop buffer-invisibility-spec)
1749 (assq prop buffer-invisibility-spec)))))
1750 (if (get-text-property (1- (point)) 'invisible)
1751 (goto-char (previous-single-property-change (point) 'invisible))
1752 (goto-char (previous-overlay-change (point)))))
1753 (setq arg (1+ arg))))
1754 (move-to-column (or goal-column temporary-goal-column)))
1755 ;; Remember where we moved to, go back home,
1756 ;; then do the motion over again
1757 ;; in just one step, with intangibility and point-motion hooks
1758 ;; enabled this time.
1759 (setq new (point))
1760 (goto-char opoint)
1761 (setq inhibit-point-motion-hooks nil)
1762 (goto-char new)))
1763 nil)
1765 ;;; Many people have said they rarely use this feature, and often type
1766 ;;; it by accident. Maybe it shouldn't even be on a key.
1767 (put 'set-goal-column 'disabled t)
1769 (defun set-goal-column (arg)
1770 "Set the current horizontal position as a goal for \\[next-line] and \\[previous-line].
1771 Those commands will move to this position in the line moved to
1772 rather than trying to keep the same horizontal position.
1773 With a non-nil argument, clears out the goal column
1774 so that \\[next-line] and \\[previous-line] resume vertical motion.
1775 The goal column is stored in the variable `goal-column'."
1776 (interactive "P")
1777 (if arg
1778 (progn
1779 (setq goal-column nil)
1780 (message "No goal column"))
1781 (setq goal-column (current-column))
1782 (message (substitute-command-keys
1783 "Goal column %d (use \\[set-goal-column] with an arg to unset it)")
1784 goal-column))
1785 nil)
1787 ;;; Partial support for horizontal autoscrolling. Someday, this feature
1788 ;;; will be built into the C level and all the (hscroll-point-visible) calls
1789 ;;; will go away.
1791 (defvar hscroll-step 0
1792 "*The number of columns to try scrolling a window by when point moves out.
1793 If that fails to bring point back on frame, point is centered instead.
1794 If this is zero, point is always centered after it moves off frame.")
1796 (defun hscroll-point-visible ()
1797 "Scrolls the selected window horizontally to make point visible."
1798 (save-excursion
1799 (set-buffer (window-buffer))
1800 (if (not (or truncate-lines
1801 (> (window-hscroll) 0)
1802 (and truncate-partial-width-windows
1803 (< (window-width) (frame-width)))))
1804 ;; Point is always visible when lines are wrapped.
1806 ;; If point is on the invisible part of the line before window-start,
1807 ;; then hscrolling can't bring it back, so reset window-start first.
1808 (and (< (point) (window-start))
1809 (let ((ws-bol (save-excursion
1810 (goto-char (window-start))
1811 (beginning-of-line)
1812 (point))))
1813 (and (>= (point) ws-bol)
1814 (set-window-start nil ws-bol))))
1815 (let* ((here (hscroll-window-column))
1816 (left (min (window-hscroll) 1))
1817 (right (1- (window-width))))
1818 ;; Allow for the truncation glyph, if we're not exactly at eol.
1819 (if (not (and (= here right)
1820 (= (following-char) ?\n)))
1821 (setq right (1- right)))
1822 (cond
1823 ;; If too far away, just recenter. But don't show too much
1824 ;; white space off the end of the line.
1825 ((or (< here (- left hscroll-step))
1826 (> here (+ right hscroll-step)))
1827 (let ((eol (save-excursion (end-of-line) (hscroll-window-column))))
1828 (scroll-left (min (- here (/ (window-width) 2))
1829 (- eol (window-width) -5)))))
1830 ;; Within range. Scroll by one step (or maybe not at all).
1831 ((< here left)
1832 (scroll-right hscroll-step))
1833 ((> here right)
1834 (scroll-left hscroll-step)))))))
1836 ;; This function returns the window's idea of the display column of point,
1837 ;; assuming that the window is already known to be truncated rather than
1838 ;; wrapped, and that we've already handled the case where point is on the
1839 ;; part of the line before window-start. We ignore window-width; if point
1840 ;; is beyond the right margin, we want to know how far. The return value
1841 ;; includes the effects of window-hscroll, window-start, and the prompt
1842 ;; string in the minibuffer. It may be negative due to hscroll.
1843 (defun hscroll-window-column ()
1844 (let* ((hscroll (window-hscroll))
1845 (startpos (save-excursion
1846 (beginning-of-line)
1847 (if (= (point) (save-excursion
1848 (goto-char (window-start))
1849 (beginning-of-line)
1850 (point)))
1851 (goto-char (window-start)))
1852 (point)))
1853 (hpos (+ (if (and (eq (selected-window) (minibuffer-window))
1854 (= 1 (window-start))
1855 (= startpos (point-min)))
1856 (minibuffer-prompt-width)
1858 (min 0 (- 1 hscroll))))
1859 val)
1860 (car (cdr (compute-motion startpos (cons hpos 0)
1861 (point) (cons 0 1)
1862 1000000 (cons hscroll 0) nil)))))
1865 ;; rms: (1) The definitions of arrow keys should not simply restate
1866 ;; what keys they are. The arrow keys should run the ordinary commands.
1867 ;; (2) The arrow keys are just one of many common ways of moving point
1868 ;; within a line. Real horizontal autoscrolling would be a good feature,
1869 ;; but supporting it only for arrow keys is too incomplete to be desirable.
1871 ;;;;; Make arrow keys do the right thing for improved terminal support
1872 ;;;;; When we implement true horizontal autoscrolling, right-arrow and
1873 ;;;;; left-arrow can lose the (if truncate-lines ...) clause and become
1874 ;;;;; aliases. These functions are bound to the corresponding keyboard
1875 ;;;;; events in loaddefs.el.
1877 ;;(defun right-arrow (arg)
1878 ;; "Move right one character on the screen (with prefix ARG, that many chars).
1879 ;;Scroll right if needed to keep point horizontally onscreen."
1880 ;; (interactive "P")
1881 ;; (forward-char arg)
1882 ;; (hscroll-point-visible))
1884 ;;(defun left-arrow (arg)
1885 ;; "Move left one character on the screen (with prefix ARG, that many chars).
1886 ;;Scroll left if needed to keep point horizontally onscreen."
1887 ;; (interactive "P")
1888 ;; (backward-char arg)
1889 ;; (hscroll-point-visible))
1891 (defun scroll-other-window-down (lines)
1892 "Scroll the \"other window\" down.
1893 For more details, see the documentation for `scroll-other-window'."
1894 (interactive "P")
1895 (scroll-other-window
1896 ;; Just invert the argument's meaning.
1897 ;; We can do that without knowing which window it will be.
1898 (if (eq lines '-) nil
1899 (if (null lines) '-
1900 (- (prefix-numeric-value lines))))))
1901 (define-key esc-map [?\C-\S-v] 'scroll-other-window-down)
1903 (defun beginning-of-buffer-other-window (arg)
1904 "Move point to the beginning of the buffer in the other window.
1905 Leave mark at previous position.
1906 With arg N, put point N/10 of the way from the true beginning."
1907 (interactive "P")
1908 (let ((orig-window (selected-window))
1909 (window (other-window-for-scrolling)))
1910 ;; We use unwind-protect rather than save-window-excursion
1911 ;; because the latter would preserve the things we want to change.
1912 (unwind-protect
1913 (progn
1914 (select-window window)
1915 ;; Set point and mark in that window's buffer.
1916 (beginning-of-buffer arg)
1917 ;; Set point accordingly.
1918 (recenter '(t)))
1919 (select-window orig-window))))
1921 (defun end-of-buffer-other-window (arg)
1922 "Move point to the end of the buffer in the other window.
1923 Leave mark at previous position.
1924 With arg N, put point N/10 of the way from the true end."
1925 (interactive "P")
1926 ;; See beginning-of-buffer-other-window for comments.
1927 (let ((orig-window (selected-window))
1928 (window (other-window-for-scrolling)))
1929 (unwind-protect
1930 (progn
1931 (select-window window)
1932 (end-of-buffer arg)
1933 (recenter '(t)))
1934 (select-window orig-window))))
1936 (defun transpose-chars (arg)
1937 "Interchange characters around point, moving forward one character.
1938 With prefix arg ARG, effect is to take character before point
1939 and drag it forward past ARG other characters (backward if ARG negative).
1940 If no argument and at end of line, the previous two chars are exchanged."
1941 (interactive "*P")
1942 (and (null arg) (eolp) (forward-char -1))
1943 (transpose-subr 'forward-char (prefix-numeric-value arg)))
1945 (defun transpose-words (arg)
1946 "Interchange words around point, leaving point at end of them.
1947 With prefix arg ARG, effect is to take word before or around point
1948 and drag it forward past ARG other words (backward if ARG negative).
1949 If ARG is zero, the words around or after point and around or after mark
1950 are interchanged."
1951 (interactive "*p")
1952 (transpose-subr 'forward-word arg))
1954 (defun transpose-sexps (arg)
1955 "Like \\[transpose-words] but applies to sexps.
1956 Does not work on a sexp that point is in the middle of
1957 if it is a list or string."
1958 (interactive "*p")
1959 (transpose-subr 'forward-sexp arg))
1961 (defun transpose-lines (arg)
1962 "Exchange current line and previous line, leaving point after both.
1963 With argument ARG, takes previous line and moves it past ARG lines.
1964 With argument 0, interchanges line point is in with line mark is in."
1965 (interactive "*p")
1966 (transpose-subr (function
1967 (lambda (arg)
1968 (if (= arg 1)
1969 (progn
1970 ;; Move forward over a line,
1971 ;; but create a newline if none exists yet.
1972 (end-of-line)
1973 (if (eobp)
1974 (newline)
1975 (forward-char 1)))
1976 (forward-line arg))))
1977 arg))
1979 (defun transpose-subr (mover arg)
1980 (let (start1 end1 start2 end2)
1981 (if (= arg 0)
1982 (progn
1983 (save-excursion
1984 (funcall mover 1)
1985 (setq end2 (point))
1986 (funcall mover -1)
1987 (setq start2 (point))
1988 (goto-char (mark))
1989 (funcall mover 1)
1990 (setq end1 (point))
1991 (funcall mover -1)
1992 (setq start1 (point))
1993 (transpose-subr-1))
1994 (exchange-point-and-mark)))
1995 (while (> arg 0)
1996 (funcall mover -1)
1997 (setq start1 (point))
1998 (funcall mover 1)
1999 (setq end1 (point))
2000 (funcall mover 1)
2001 (setq end2 (point))
2002 (funcall mover -1)
2003 (setq start2 (point))
2004 (transpose-subr-1)
2005 (goto-char end2)
2006 (setq arg (1- arg)))
2007 (while (< arg 0)
2008 (funcall mover -1)
2009 (setq start2 (point))
2010 (funcall mover -1)
2011 (setq start1 (point))
2012 (funcall mover 1)
2013 (setq end1 (point))
2014 (funcall mover 1)
2015 (setq end2 (point))
2016 (transpose-subr-1)
2017 (setq arg (1+ arg)))))
2019 (defun transpose-subr-1 ()
2020 (if (> (min end1 end2) (max start1 start2))
2021 (error "Don't have two things to transpose"))
2022 (let ((word1 (buffer-substring start1 end1))
2023 (word2 (buffer-substring start2 end2)))
2024 (delete-region start2 end2)
2025 (goto-char start2)
2026 (insert word1)
2027 (goto-char (if (< start1 start2) start1
2028 (+ start1 (- (length word1) (length word2)))))
2029 (delete-char (length word1))
2030 (insert word2)))
2032 (defconst comment-column 32
2033 "*Column to indent right-margin comments to.
2034 Setting this variable automatically makes it local to the current buffer.
2035 Each mode establishes a different default value for this variable; you
2036 can set the value for a particular mode using that mode's hook.")
2037 (make-variable-buffer-local 'comment-column)
2039 (defconst comment-start nil
2040 "*String to insert to start a new comment, or nil if no comment syntax.")
2042 (defconst comment-start-skip nil
2043 "*Regexp to match the start of a comment plus everything up to its body.
2044 If there are any \\(...\\) pairs, the comment delimiter text is held to begin
2045 at the place matched by the close of the first pair.")
2047 (defconst comment-end ""
2048 "*String to insert to end a new comment.
2049 Should be an empty string if comments are terminated by end-of-line.")
2051 (defconst comment-indent-hook nil
2052 "Obsolete variable for function to compute desired indentation for a comment.
2053 This function is called with no args with point at the beginning of
2054 the comment's starting delimiter.")
2056 (defconst comment-indent-function
2057 '(lambda () comment-column)
2058 "Function to compute desired indentation for a comment.
2059 This function is called with no args with point at the beginning of
2060 the comment's starting delimiter.")
2062 (defconst block-comment-start nil
2063 "*String to insert to start a new comment on a line by itself.
2064 If nil, use `comment-start' instead.
2065 Note that the regular expression `comment-start-skip' should skip this string
2066 as well as the `comment-start' string.")
2068 (defconst block-comment-end nil
2069 "*String to insert to end a new comment on a line by itself.
2070 Should be an empty string if comments are terminated by end-of-line.
2071 If nil, use `comment-end' instead.")
2073 (defun indent-for-comment ()
2074 "Indent this line's comment to comment column, or insert an empty comment."
2075 (interactive "*")
2076 (let* ((empty (save-excursion (beginning-of-line)
2077 (looking-at "[ \t]*$")))
2078 (starter (or (and empty block-comment-start) comment-start))
2079 (ender (or (and empty block-comment-end) comment-end)))
2080 (if (null starter)
2081 (error "No comment syntax defined")
2082 (let* ((eolpos (save-excursion (end-of-line) (point)))
2083 cpos indent begpos)
2084 (beginning-of-line)
2085 (if (re-search-forward comment-start-skip eolpos 'move)
2086 (progn (setq cpos (point-marker))
2087 ;; Find the start of the comment delimiter.
2088 ;; If there were paren-pairs in comment-start-skip,
2089 ;; position at the end of the first pair.
2090 (if (match-end 1)
2091 (goto-char (match-end 1))
2092 ;; If comment-start-skip matched a string with
2093 ;; internal whitespace (not final whitespace) then
2094 ;; the delimiter start at the end of that
2095 ;; whitespace. Otherwise, it starts at the
2096 ;; beginning of what was matched.
2097 (skip-syntax-backward " " (match-beginning 0))
2098 (skip-syntax-backward "^ " (match-beginning 0)))))
2099 (setq begpos (point))
2100 ;; Compute desired indent.
2101 (if (= (current-column)
2102 (setq indent (if comment-indent-hook
2103 (funcall comment-indent-hook)
2104 (funcall comment-indent-function))))
2105 (goto-char begpos)
2106 ;; If that's different from current, change it.
2107 (skip-chars-backward " \t")
2108 (delete-region (point) begpos)
2109 (indent-to indent))
2110 ;; An existing comment?
2111 (if cpos
2112 (progn (goto-char cpos)
2113 (set-marker cpos nil))
2114 ;; No, insert one.
2115 (insert starter)
2116 (save-excursion
2117 (insert ender)))))))
2119 (defun set-comment-column (arg)
2120 "Set the comment column based on point.
2121 With no arg, set the comment column to the current column.
2122 With just minus as arg, kill any comment on this line.
2123 With any other arg, set comment column to indentation of the previous comment
2124 and then align or create a comment on this line at that column."
2125 (interactive "P")
2126 (if (eq arg '-)
2127 (kill-comment nil)
2128 (if arg
2129 (progn
2130 (save-excursion
2131 (beginning-of-line)
2132 (re-search-backward comment-start-skip)
2133 (beginning-of-line)
2134 (re-search-forward comment-start-skip)
2135 (goto-char (match-beginning 0))
2136 (setq comment-column (current-column))
2137 (message "Comment column set to %d" comment-column))
2138 (indent-for-comment))
2139 (setq comment-column (current-column))
2140 (message "Comment column set to %d" comment-column))))
2142 (defun kill-comment (arg)
2143 "Kill the comment on this line, if any.
2144 With argument, kill comments on that many lines starting with this one."
2145 ;; this function loses in a lot of situations. it incorrectly recognises
2146 ;; comment delimiters sometimes (ergo, inside a string), doesn't work
2147 ;; with multi-line comments, can kill extra whitespace if comment wasn't
2148 ;; through end-of-line, et cetera.
2149 (interactive "P")
2150 (or comment-start-skip (error "No comment syntax defined"))
2151 (let ((count (prefix-numeric-value arg)) endc)
2152 (while (> count 0)
2153 (save-excursion
2154 (end-of-line)
2155 (setq endc (point))
2156 (beginning-of-line)
2157 (and (string< "" comment-end)
2158 (setq endc
2159 (progn
2160 (re-search-forward (regexp-quote comment-end) endc 'move)
2161 (skip-chars-forward " \t")
2162 (point))))
2163 (beginning-of-line)
2164 (if (re-search-forward comment-start-skip endc t)
2165 (progn
2166 (goto-char (match-beginning 0))
2167 (skip-chars-backward " \t")
2168 (kill-region (point) endc)
2169 ;; to catch comments a line beginnings
2170 (indent-according-to-mode))))
2171 (if arg (forward-line 1))
2172 (setq count (1- count)))))
2174 (defun comment-region (beg end &optional arg)
2175 "Comment or uncomment each line in the region.
2176 With just C-u prefix arg, uncomment each line in region.
2177 Numeric prefix arg ARG means use ARG comment characters.
2178 If ARG is negative, delete that many comment characters instead.
2179 Comments are terminated on each line, even for syntax in which newline does
2180 not end the comment. Blank lines do not get comments."
2181 ;; if someone wants it to only put a comment-start at the beginning and
2182 ;; comment-end at the end then typing it, C-x C-x, closing it, C-x C-x
2183 ;; is easy enough. No option is made here for other than commenting
2184 ;; every line.
2185 (interactive "r\nP")
2186 (or comment-start (error "No comment syntax is defined"))
2187 (if (> beg end) (let (mid) (setq mid beg beg end end mid)))
2188 (save-excursion
2189 (save-restriction
2190 (let ((cs comment-start) (ce comment-end)
2191 numarg)
2192 (if (consp arg) (setq numarg t)
2193 (setq numarg (prefix-numeric-value arg))
2194 ;; For positive arg > 1, replicate the comment delims now,
2195 ;; then insert the replicated strings just once.
2196 (while (> numarg 1)
2197 (setq cs (concat cs comment-start)
2198 ce (concat ce comment-end))
2199 (setq numarg (1- numarg))))
2200 ;; Loop over all lines from BEG to END.
2201 (narrow-to-region beg end)
2202 (goto-char beg)
2203 (while (not (eobp))
2204 (if (or (eq numarg t) (< numarg 0))
2205 (progn
2206 ;; Delete comment start from beginning of line.
2207 (if (eq numarg t)
2208 (while (looking-at (regexp-quote cs))
2209 (delete-char (length cs)))
2210 (let ((count numarg))
2211 (while (and (> 1 (setq count (1+ count)))
2212 (looking-at (regexp-quote cs)))
2213 (delete-char (length cs)))))
2214 ;; Delete comment end from end of line.
2215 (if (string= "" ce)
2217 (if (eq numarg t)
2218 (progn
2219 (end-of-line)
2220 ;; This is questionable if comment-end ends in
2221 ;; whitespace. That is pretty brain-damaged,
2222 ;; though.
2223 (skip-chars-backward " \t")
2224 (if (and (>= (- (point) (point-min)) (length ce))
2225 (save-excursion
2226 (backward-char (length ce))
2227 (looking-at (regexp-quote ce))))
2228 (delete-char (- (length ce)))))
2229 (let ((count numarg))
2230 (while (> 1 (setq count (1+ count)))
2231 (end-of-line)
2232 ;; this is questionable if comment-end ends in whitespace
2233 ;; that is pretty brain-damaged though
2234 (skip-chars-backward " \t")
2235 (save-excursion
2236 (backward-char (length ce))
2237 (if (looking-at (regexp-quote ce))
2238 (delete-char (length ce))))))))
2239 (forward-line 1))
2240 ;; Insert at beginning and at end.
2241 (if (looking-at "[ \t]*$") ()
2242 (insert cs)
2243 (if (string= "" ce) ()
2244 (end-of-line)
2245 (insert ce)))
2246 (search-forward "\n" nil 'move)))))))
2248 (defun backward-word (arg)
2249 "Move backward until encountering the end of a word.
2250 With argument, do this that many times.
2251 In programs, it is faster to call `forward-word' with negative arg."
2252 (interactive "p")
2253 (forward-word (- arg)))
2255 (defun mark-word (arg)
2256 "Set mark arg words away from point."
2257 (interactive "p")
2258 (push-mark
2259 (save-excursion
2260 (forward-word arg)
2261 (point))
2262 nil t))
2264 (defun kill-word (arg)
2265 "Kill characters forward until encountering the end of a word.
2266 With argument, do this that many times."
2267 (interactive "p")
2268 (kill-region (point) (progn (forward-word arg) (point))))
2270 (defun backward-kill-word (arg)
2271 "Kill characters backward until encountering the end of a word.
2272 With argument, do this that many times."
2273 (interactive "p")
2274 (kill-word (- arg)))
2276 (defun current-word (&optional strict)
2277 "Return the word point is on (or a nearby word) as a string.
2278 If optional arg STRICT is non-nil, return nil unless point is within
2279 or adjacent to a word."
2280 (save-excursion
2281 (let ((oldpoint (point)) (start (point)) (end (point)))
2282 (skip-syntax-backward "w_") (setq start (point))
2283 (goto-char oldpoint)
2284 (skip-syntax-forward "w_") (setq end (point))
2285 (if (and (eq start oldpoint) (eq end oldpoint))
2286 ;; Point is neither within nor adjacent to a word.
2287 (and (not strict)
2288 (progn
2289 ;; Look for preceding word in same line.
2290 (skip-syntax-backward "^w_"
2291 (save-excursion (beginning-of-line)
2292 (point)))
2293 (if (bolp)
2294 ;; No preceding word in same line.
2295 ;; Look for following word in same line.
2296 (progn
2297 (skip-syntax-forward "^w_"
2298 (save-excursion (end-of-line)
2299 (point)))
2300 (setq start (point))
2301 (skip-syntax-forward "w_")
2302 (setq end (point)))
2303 (setq end (point))
2304 (skip-syntax-backward "w_")
2305 (setq start (point)))
2306 (buffer-substring start end)))
2307 (buffer-substring start end)))))
2309 (defconst fill-prefix nil
2310 "*String for filling to insert at front of new line, or nil for none.
2311 Setting this variable automatically makes it local to the current buffer.")
2312 (make-variable-buffer-local 'fill-prefix)
2314 (defconst auto-fill-inhibit-regexp nil
2315 "*Regexp to match lines which should not be auto-filled.")
2317 (defun do-auto-fill ()
2318 (let (fc justify bol give-up
2319 (fill-prefix fill-prefix))
2320 (if (or (not (setq justify (current-justification)))
2321 (null (setq fc (current-fill-column)))
2322 (and (eq justify 'left)
2323 (<= (current-column) fc))
2324 (save-excursion (beginning-of-line)
2325 (setq bol (point))
2326 (and auto-fill-inhibit-regexp
2327 (looking-at auto-fill-inhibit-regexp))))
2328 nil ;; Auto-filling not required
2329 (if (memq justify '(full center right))
2330 (save-excursion (unjustify-current-line)))
2332 ;; Choose a fill-prefix automatically.
2333 (if (and adaptive-fill-mode
2334 (or (null fill-prefix) (string= fill-prefix "")))
2335 (let ((prefix
2336 (fill-context-prefix
2337 (save-excursion (backward-paragraph 1) (point))
2338 (save-excursion (forward-paragraph 1) (point))
2339 ;; Don't accept a non-whitespace fill prefix
2340 ;; from the first line of a paragraph.
2341 "^[ \t]*$")))
2342 (and prefix (not (equal prefix ""))
2343 (setq fill-prefix prefix))))
2345 (while (and (not give-up) (> (current-column) fc))
2346 ;; Determine where to split the line.
2347 (let ((fill-point
2348 (let ((opoint (point))
2349 bounce
2350 (first t))
2351 (save-excursion
2352 (move-to-column (1+ fc))
2353 ;; Move back to a word boundary.
2354 (while (or first
2355 ;; If this is after period and a single space,
2356 ;; move back once more--we don't want to break
2357 ;; the line there and make it look like a
2358 ;; sentence end.
2359 (and (not (bobp))
2360 (not bounce)
2361 sentence-end-double-space
2362 (save-excursion (forward-char -1)
2363 (and (looking-at "\\. ")
2364 (not (looking-at "\\. "))))))
2365 (setq first nil)
2366 (skip-chars-backward "^ \t\n")
2367 ;; If we find nowhere on the line to break it,
2368 ;; break after one word. Set bounce to t
2369 ;; so we will not keep going in this while loop.
2370 (if (bolp)
2371 (progn
2372 (re-search-forward "[ \t]" opoint t)
2373 (setq bounce t)))
2374 (skip-chars-backward " \t"))
2375 ;; Let fill-point be set to the place where we end up.
2376 (point)))))
2377 ;; If that place is not the beginning of the line,
2378 ;; break the line there.
2379 (if (save-excursion
2380 (goto-char fill-point)
2381 (not (bolp)))
2382 (let ((prev-column (current-column)))
2383 ;; If point is at the fill-point, do not `save-excursion'.
2384 ;; Otherwise, if a comment prefix or fill-prefix is inserted,
2385 ;; point will end up before it rather than after it.
2386 (if (save-excursion
2387 (skip-chars-backward " \t")
2388 (= (point) fill-point))
2389 (indent-new-comment-line t)
2390 (save-excursion
2391 (goto-char fill-point)
2392 (indent-new-comment-line t)))
2393 ;; Now do justification, if required
2394 (if (not (eq justify 'left))
2395 (save-excursion
2396 (end-of-line 0)
2397 (justify-current-line justify nil t)))
2398 ;; If making the new line didn't reduce the hpos of
2399 ;; the end of the line, then give up now;
2400 ;; trying again will not help.
2401 (if (>= (current-column) prev-column)
2402 (setq give-up t)))
2403 ;; No place to break => stop trying.
2404 (setq give-up t))))
2405 ;; justify last line
2406 (justify-current-line justify t t))))
2408 (defun auto-fill-mode (&optional arg)
2409 "Toggle auto-fill mode.
2410 With arg, turn Auto-Fill mode on if and only if arg is positive.
2411 In Auto-Fill mode, inserting a space at a column beyond `current-fill-column'
2412 automatically breaks the line at a previous space."
2413 (interactive "P")
2414 (prog1 (setq auto-fill-function
2415 (if (if (null arg)
2416 (not auto-fill-function)
2417 (> (prefix-numeric-value arg) 0))
2418 'do-auto-fill
2419 nil))
2420 (force-mode-line-update)))
2422 ;; This holds a document string used to document auto-fill-mode.
2423 (defun auto-fill-function ()
2424 "Automatically break line at a previous space, in insertion of text."
2425 nil)
2427 (defun turn-on-auto-fill ()
2428 "Unconditionally turn on Auto Fill mode."
2429 (auto-fill-mode 1))
2431 (defun set-fill-column (arg)
2432 "Set `fill-column' to current column, or to argument if given.
2433 The variable `fill-column' has a separate value for each buffer."
2434 (interactive "P")
2435 (setq fill-column (if (integerp arg) arg (current-column)))
2436 (message "fill-column set to %d" fill-column))
2438 (defconst comment-multi-line nil
2439 "*Non-nil means \\[indent-new-comment-line] should continue same comment
2440 on new line, with no new terminator or starter.
2441 This is obsolete because you might as well use \\[newline-and-indent].")
2443 (defun indent-new-comment-line (&optional soft)
2444 "Break line at point and indent, continuing comment if within one.
2445 This indents the body of the continued comment
2446 under the previous comment line.
2448 This command is intended for styles where you write a comment per line,
2449 starting a new comment (and terminating it if necessary) on each line.
2450 If you want to continue one comment across several lines, use \\[newline-and-indent].
2452 If a fill column is specified, it overrides the use of the comment column
2453 or comment indentation.
2455 The inserted newline is marked hard if `use-hard-newlines' is true,
2456 unless optional argument SOFT is non-nil."
2457 (interactive)
2458 (let (comcol comstart)
2459 (skip-chars-backward " \t")
2460 (delete-region (point)
2461 (progn (skip-chars-forward " \t")
2462 (point)))
2463 (if soft (insert-and-inherit ?\n) (newline 1))
2464 (if fill-prefix
2465 (progn
2466 (indent-to-left-margin)
2467 (insert-and-inherit fill-prefix))
2468 (if (not comment-multi-line)
2469 (save-excursion
2470 (if (and comment-start-skip
2471 (let ((opoint (point)))
2472 (forward-line -1)
2473 (re-search-forward comment-start-skip opoint t)))
2474 ;; The old line is a comment.
2475 ;; Set WIN to the pos of the comment-start.
2476 ;; But if the comment is empty, look at preceding lines
2477 ;; to find one that has a nonempty comment.
2479 ;; If comment-start-skip contains a \(...\) pair,
2480 ;; the real comment delimiter starts at the end of that pair.
2481 (let ((win (or (match-end 1) (match-beginning 0))))
2482 (while (and (eolp) (not (bobp))
2483 (let (opoint)
2484 (beginning-of-line)
2485 (setq opoint (point))
2486 (forward-line -1)
2487 (re-search-forward comment-start-skip opoint t)))
2488 (setq win (or (match-end 1) (match-beginning 0))))
2489 ;; Indent this line like what we found.
2490 (goto-char win)
2491 (setq comcol (current-column))
2492 (setq comstart
2493 (buffer-substring (point) (match-end 0)))))))
2494 (if comcol
2495 (let ((comment-column comcol)
2496 (comment-start comstart)
2497 (comment-end comment-end))
2498 (and comment-end (not (equal comment-end ""))
2499 ; (if (not comment-multi-line)
2500 (progn
2501 (forward-char -1)
2502 (insert comment-end)
2503 (forward-char 1))
2504 ; (setq comment-column (+ comment-column (length comment-start))
2505 ; comment-start "")
2508 (if (not (eolp))
2509 (setq comment-end ""))
2510 (insert-and-inherit ?\n)
2511 (forward-char -1)
2512 (indent-for-comment)
2513 (save-excursion
2514 ;; Make sure we delete the newline inserted above.
2515 (end-of-line)
2516 (delete-char 1)))
2517 (indent-according-to-mode)))))
2519 (defun set-selective-display (arg)
2520 "Set `selective-display' to ARG; clear it if no arg.
2521 When the value of `selective-display' is a number > 0,
2522 lines whose indentation is >= that value are not displayed.
2523 The variable `selective-display' has a separate value for each buffer."
2524 (interactive "P")
2525 (if (eq selective-display t)
2526 (error "selective-display already in use for marked lines"))
2527 (let ((current-vpos
2528 (save-restriction
2529 (narrow-to-region (point-min) (point))
2530 (goto-char (window-start))
2531 (vertical-motion (window-height)))))
2532 (setq selective-display
2533 (and arg (prefix-numeric-value arg)))
2534 (recenter current-vpos))
2535 (set-window-start (selected-window) (window-start (selected-window)))
2536 (princ "selective-display set to " t)
2537 (prin1 selective-display t)
2538 (princ "." t))
2540 (defconst overwrite-mode-textual " Ovwrt"
2541 "The string displayed in the mode line when in overwrite mode.")
2542 (defconst overwrite-mode-binary " Bin Ovwrt"
2543 "The string displayed in the mode line when in binary overwrite mode.")
2545 (defun overwrite-mode (arg)
2546 "Toggle overwrite mode.
2547 With arg, turn overwrite mode on iff arg is positive.
2548 In overwrite mode, printing characters typed in replace existing text
2549 on a one-for-one basis, rather than pushing it to the right. At the
2550 end of a line, such characters extend the line. Before a tab,
2551 such characters insert until the tab is filled in.
2552 \\[quoted-insert] still inserts characters in overwrite mode; this
2553 is supposed to make it easier to insert characters when necessary."
2554 (interactive "P")
2555 (setq overwrite-mode
2556 (if (if (null arg) (not overwrite-mode)
2557 (> (prefix-numeric-value arg) 0))
2558 'overwrite-mode-textual))
2559 (force-mode-line-update))
2561 (defun binary-overwrite-mode (arg)
2562 "Toggle binary overwrite mode.
2563 With arg, turn binary overwrite mode on iff arg is positive.
2564 In binary overwrite mode, printing characters typed in replace
2565 existing text. Newlines are not treated specially, so typing at the
2566 end of a line joins the line to the next, with the typed character
2567 between them. Typing before a tab character simply replaces the tab
2568 with the character typed.
2569 \\[quoted-insert] replaces the text at the cursor, just as ordinary
2570 typing characters do.
2572 Note that binary overwrite mode is not its own minor mode; it is a
2573 specialization of overwrite-mode, entered by setting the
2574 `overwrite-mode' variable to `overwrite-mode-binary'."
2575 (interactive "P")
2576 (setq overwrite-mode
2577 (if (if (null arg)
2578 (not (eq overwrite-mode 'overwrite-mode-binary))
2579 (> (prefix-numeric-value arg) 0))
2580 'overwrite-mode-binary))
2581 (force-mode-line-update))
2583 (defvar line-number-mode t
2584 "*Non-nil means display line number in mode line.")
2586 (defun line-number-mode (arg)
2587 "Toggle Line Number mode.
2588 With arg, turn Line Number mode on iff arg is positive.
2589 When Line Number mode is enabled, the line number appears
2590 in the mode line."
2591 (interactive "P")
2592 (setq line-number-mode
2593 (if (null arg) (not line-number-mode)
2594 (> (prefix-numeric-value arg) 0)))
2595 (force-mode-line-update))
2597 (defvar column-number-mode nil
2598 "*Non-nil means display column number in mode line.")
2600 (defun column-number-mode (arg)
2601 "Toggle Column Number mode.
2602 With arg, turn Column Number mode on iff arg is positive.
2603 When Column Number mode is enabled, the column number appears
2604 in the mode line."
2605 (interactive "P")
2606 (setq column-number-mode
2607 (if (null arg) (not column-number-mode)
2608 (> (prefix-numeric-value arg) 0)))
2609 (force-mode-line-update))
2611 (defvar blink-matching-paren t
2612 "*Non-nil means show matching open-paren when close-paren is inserted.")
2614 (defvar blink-matching-paren-on-screen t
2615 "*Non-nil means show matching open-paren when it is on screen.
2616 nil means don't show it (but the open-paren can still be shown
2617 when it is off screen.")
2619 (defconst blink-matching-paren-distance 12000
2620 "*If non-nil, is maximum distance to search for matching open-paren.")
2622 (defconst blink-matching-delay 1
2623 "*The number of seconds that `blink-matching-open' will delay at a match.")
2625 (defconst blink-matching-paren-dont-ignore-comments nil
2626 "*Non-nil means `blink-matching-paren' should not ignore comments.")
2628 (defun blink-matching-open ()
2629 "Move cursor momentarily to the beginning of the sexp before point."
2630 (interactive)
2631 (and (> (point) (1+ (point-min)))
2632 blink-matching-paren
2633 ;; Verify an even number of quoting characters precede the close.
2634 (= 1 (logand 1 (- (point)
2635 (save-excursion
2636 (forward-char -1)
2637 (skip-syntax-backward "/\\")
2638 (point)))))
2639 (let* ((oldpos (point))
2640 (blinkpos)
2641 (mismatch))
2642 (save-excursion
2643 (save-restriction
2644 (if blink-matching-paren-distance
2645 (narrow-to-region (max (point-min)
2646 (- (point) blink-matching-paren-distance))
2647 oldpos))
2648 (condition-case ()
2649 (let ((parse-sexp-ignore-comments
2650 (and parse-sexp-ignore-comments
2651 (not blink-matching-paren-dont-ignore-comments))))
2652 (setq blinkpos (scan-sexps oldpos -1)))
2653 (error nil)))
2654 (and blinkpos
2655 (/= (char-syntax (char-after blinkpos))
2656 ?\$)
2657 (setq mismatch
2658 (or (null (matching-paren (char-after blinkpos)))
2659 (/= (char-after (1- oldpos))
2660 (matching-paren (char-after blinkpos))))))
2661 (if mismatch (setq blinkpos nil))
2662 (if blinkpos
2663 (progn
2664 (goto-char blinkpos)
2665 (if (pos-visible-in-window-p)
2666 (and blink-matching-paren-on-screen
2667 (sit-for blink-matching-delay))
2668 (goto-char blinkpos)
2669 (message
2670 "Matches %s"
2671 ;; Show what precedes the open in its line, if anything.
2672 (if (save-excursion
2673 (skip-chars-backward " \t")
2674 (not (bolp)))
2675 (buffer-substring (progn (beginning-of-line) (point))
2676 (1+ blinkpos))
2677 ;; Show what follows the open in its line, if anything.
2678 (if (save-excursion
2679 (forward-char 1)
2680 (skip-chars-forward " \t")
2681 (not (eolp)))
2682 (buffer-substring blinkpos
2683 (progn (end-of-line) (point)))
2684 ;; Otherwise show the previous nonblank line,
2685 ;; if there is one.
2686 (if (save-excursion
2687 (skip-chars-backward "\n \t")
2688 (not (bobp)))
2689 (concat
2690 (buffer-substring (progn
2691 (skip-chars-backward "\n \t")
2692 (beginning-of-line)
2693 (point))
2694 (progn (end-of-line)
2695 (skip-chars-backward " \t")
2696 (point)))
2697 ;; Replace the newline and other whitespace with `...'.
2698 "..."
2699 (buffer-substring blinkpos (1+ blinkpos)))
2700 ;; There is nothing to show except the char itself.
2701 (buffer-substring blinkpos (1+ blinkpos))))))))
2702 (cond (mismatch
2703 (message "Mismatched parentheses"))
2704 ((not blink-matching-paren-distance)
2705 (message "Unmatched parenthesis"))))))))
2707 ;Turned off because it makes dbx bomb out.
2708 (setq blink-paren-function 'blink-matching-open)
2710 ;; This executes C-g typed while Emacs is waiting for a command.
2711 ;; Quitting out of a program does not go through here;
2712 ;; that happens in the QUIT macro at the C code level.
2713 (defun keyboard-quit ()
2714 "Signal a quit condition.
2715 During execution of Lisp code, this character causes a quit directly.
2716 At top-level, as an editor command, this simply beeps."
2717 (interactive)
2718 (deactivate-mark)
2719 (signal 'quit nil))
2721 (define-key global-map "\C-g" 'keyboard-quit)
2723 (defvar buffer-quit-function nil
2724 "Function to call to \"quit\" the current buffer, or nil if none.
2725 \\[keyboard-escape-quit] calls this function when its more local actions
2726 \(such as cancelling a prefix argument, minibuffer or region) do not apply.")
2728 (defun keyboard-escape-quit ()
2729 "Exit the current \"mode\" (in a generalized sense of the word).
2730 This command can exit an interactive command such as `query-replace',
2731 can clear out a prefix argument or a region,
2732 can get out of the minibuffer or other recursive edit,
2733 cancel the use of the current buffer (for special-purpose buffers),
2734 or go back to just one window (by deleting all but the selected window)."
2735 (interactive)
2736 (cond ((eq last-command 'mode-exited) nil)
2737 ((> (minibuffer-depth) 0)
2738 (abort-recursive-edit))
2739 (current-prefix-arg
2740 nil)
2741 ((and transient-mark-mode
2742 mark-active)
2743 (deactivate-mark))
2744 (buffer-quit-function
2745 (funcall buffer-quit-function))
2746 ((not (one-window-p t))
2747 (delete-other-windows))))
2749 (define-key global-map "\e\e\e" 'keyboard-escape-quit)
2751 (defun set-variable (var val)
2752 "Set VARIABLE to VALUE. VALUE is a Lisp object.
2753 When using this interactively, supply a Lisp expression for VALUE.
2754 If you want VALUE to be a string, you must surround it with doublequotes.
2756 If VARIABLE has a `variable-interactive' property, that is used as if
2757 it were the arg to `interactive' (which see) to interactively read the value."
2758 (interactive
2759 (let* ((var (read-variable "Set variable: "))
2760 (minibuffer-help-form
2761 '(funcall myhelp))
2762 (myhelp
2763 (function
2764 (lambda ()
2765 (with-output-to-temp-buffer "*Help*"
2766 (prin1 var)
2767 (princ "\nDocumentation:\n")
2768 (princ (substring (documentation-property var 'variable-documentation)
2770 (if (boundp var)
2771 (let ((print-length 20))
2772 (princ "\n\nCurrent value: ")
2773 (prin1 (symbol-value var))))
2774 (save-excursion
2775 (set-buffer standard-output)
2776 (help-mode))
2777 nil)))))
2778 (list var
2779 (let ((prop (get var 'variable-interactive)))
2780 (if prop
2781 ;; Use VAR's `variable-interactive' property
2782 ;; as an interactive spec for prompting.
2783 (call-interactively (list 'lambda '(arg)
2784 (list 'interactive prop)
2785 'arg))
2786 (eval-minibuffer (format "Set %s to value: " var)))))))
2787 (set var val))
2789 ;; Define the major mode for lists of completions.
2791 (defvar completion-list-mode-map nil
2792 "Local map for completion list buffers.")
2793 (or completion-list-mode-map
2794 (let ((map (make-sparse-keymap)))
2795 (define-key map [mouse-2] 'mouse-choose-completion)
2796 (define-key map [down-mouse-2] nil)
2797 (define-key map "\C-m" 'choose-completion)
2798 (define-key map "\e\e\e" 'delete-completion-window)
2799 (define-key map [left] 'previous-completion)
2800 (define-key map [right] 'next-completion)
2801 (setq completion-list-mode-map map)))
2803 ;; Completion mode is suitable only for specially formatted data.
2804 (put 'completion-list-mode 'mode-class 'special)
2806 (defvar completion-reference-buffer nil
2807 "Record the buffer that was current when the completion list was requested.
2808 This is a local variable in the completion list buffer.
2809 Initial value is nil to avoid some compiler warnings.")
2811 (defvar completion-base-size nil
2812 "Number of chars at beginning of minibuffer not involved in completion.
2813 This is a local variable in the completion list buffer
2814 but it talks about the buffer in `completion-reference-buffer'.
2815 If this is nil, it means to compare text to determine which part
2816 of the tail end of the buffer's text is involved in completion.")
2818 (defun delete-completion-window ()
2819 "Delete the completion list window.
2820 Go to the window from which completion was requested."
2821 (interactive)
2822 (let ((buf completion-reference-buffer))
2823 (delete-window (selected-window))
2824 (if (get-buffer-window buf)
2825 (select-window (get-buffer-window buf)))))
2827 (defun previous-completion (n)
2828 "Move to the previous item in the completion list."
2829 (interactive "p")
2830 (next-completion (- n)))
2832 (defun next-completion (n)
2833 "Move to the next item in the completion list.
2834 WIth prefix argument N, move N items (negative N means move backward)."
2835 (interactive "p")
2836 (while (and (> n 0) (not (eobp)))
2837 (let ((prop (get-text-property (point) 'mouse-face))
2838 (end (point-max)))
2839 ;; If in a completion, move to the end of it.
2840 (if prop
2841 (goto-char (next-single-property-change (point) 'mouse-face nil end)))
2842 ;; Move to start of next one.
2843 (goto-char (next-single-property-change (point) 'mouse-face nil end)))
2844 (setq n (1- n)))
2845 (while (and (< n 0) (not (bobp)))
2846 (let ((prop (get-text-property (1- (point)) 'mouse-face))
2847 (end (point-min)))
2848 ;; If in a completion, move to the start of it.
2849 (if prop
2850 (goto-char (previous-single-property-change
2851 (point) 'mouse-face nil end)))
2852 ;; Move to end of the previous completion.
2853 (goto-char (previous-single-property-change (point) 'mouse-face nil end))
2854 ;; Move to the start of that one.
2855 (goto-char (previous-single-property-change (point) 'mouse-face nil end)))
2856 (setq n (1+ n))))
2858 (defun choose-completion ()
2859 "Choose the completion that point is in or next to."
2860 (interactive)
2861 (let (beg end completion (buffer completion-reference-buffer)
2862 (base-size completion-base-size))
2863 (if (and (not (eobp)) (get-text-property (point) 'mouse-face))
2864 (setq end (point) beg (1+ (point))))
2865 (if (and (not (bobp)) (get-text-property (1- (point)) 'mouse-face))
2866 (setq end (1- (point)) beg (point)))
2867 (if (null beg)
2868 (error "No completion here"))
2869 (setq beg (previous-single-property-change beg 'mouse-face))
2870 (setq end (or (next-single-property-change end 'mouse-face) (point-max)))
2871 (setq completion (buffer-substring beg end))
2872 (let ((owindow (selected-window)))
2873 (if (and (one-window-p t 'selected-frame)
2874 (window-dedicated-p (selected-window)))
2875 ;; This is a special buffer's frame
2876 (iconify-frame (selected-frame))
2877 (or (window-dedicated-p (selected-window))
2878 (bury-buffer)))
2879 (select-window owindow))
2880 (choose-completion-string completion buffer base-size)))
2882 ;; Delete the longest partial match for STRING
2883 ;; that can be found before POINT.
2884 (defun choose-completion-delete-max-match (string)
2885 (let ((opoint (point))
2886 (len (min (length string)
2887 (- (point) (point-min)))))
2888 (goto-char (- (point) (length string)))
2889 (if completion-ignore-case
2890 (setq string (downcase string)))
2891 (while (and (> len 0)
2892 (let ((tail (buffer-substring (point)
2893 (+ (point) len))))
2894 (if completion-ignore-case
2895 (setq tail (downcase tail)))
2896 (not (string= tail (substring string 0 len)))))
2897 (setq len (1- len))
2898 (forward-char 1))
2899 (delete-char len)))
2901 ;; Switch to BUFFER and insert the completion choice CHOICE.
2902 ;; BASE-SIZE, if non-nil, says how many characters of BUFFER's text
2903 ;; to keep. If it is nil, use choose-completion-delete-max-match instead.
2904 (defun choose-completion-string (choice &optional buffer base-size)
2905 (let ((buffer (or buffer completion-reference-buffer)))
2906 ;; If BUFFER is a minibuffer, barf unless it's the currently
2907 ;; active minibuffer.
2908 (if (and (string-match "\\` \\*Minibuf-[0-9]+\\*\\'" (buffer-name buffer))
2909 (or (not (active-minibuffer-window))
2910 (not (equal buffer
2911 (window-buffer (active-minibuffer-window))))))
2912 (error "Minibuffer is not active for completion")
2913 ;; Insert the completion into the buffer where completion was requested.
2914 (set-buffer buffer)
2915 (if base-size
2916 (delete-region (+ base-size (point-min)) (point))
2917 (choose-completion-delete-max-match choice))
2918 (insert choice)
2919 (remove-text-properties (- (point) (length choice)) (point)
2920 '(mouse-face nil))
2921 ;; Update point in the window that BUFFER is showing in.
2922 (let ((window (get-buffer-window buffer t)))
2923 (set-window-point window (point)))
2924 ;; If completing for the minibuffer, exit it with this choice.
2925 (and (equal buffer (window-buffer (minibuffer-window)))
2926 minibuffer-completion-table
2927 (exit-minibuffer)))))
2929 (defun completion-list-mode ()
2930 "Major mode for buffers showing lists of possible completions.
2931 Type \\<completion-list-mode-map>\\[choose-completion] in the completion list\
2932 to select the completion near point.
2933 Use \\<completion-list-mode-map>\\[mouse-choose-completion] to select one\
2934 with the mouse."
2935 (interactive)
2936 (kill-all-local-variables)
2937 (use-local-map completion-list-mode-map)
2938 (setq mode-name "Completion List")
2939 (setq major-mode 'completion-list-mode)
2940 (make-local-variable 'completion-base-size)
2941 (setq completion-base-size nil)
2942 (run-hooks 'completion-list-mode-hook))
2944 (defvar completion-fixup-function nil
2945 "A function to customize how completions are identified in completion lists.
2946 `completion-setup-function' calls this function with no arguments
2947 each time it has found what it thinks is one completion.
2948 Point is at the end of the completion in the completion list buffer.
2949 If this function moves point, it can alter the end of that completion.")
2951 ;; This function goes in completion-setup-hook, so that it is called
2952 ;; after the text of the completion list buffer is written.
2954 (defun completion-setup-function ()
2955 (save-excursion
2956 (let ((mainbuf (current-buffer)))
2957 (set-buffer standard-output)
2958 (completion-list-mode)
2959 (make-local-variable 'completion-reference-buffer)
2960 (setq completion-reference-buffer mainbuf)
2961 ;;; The value 0 is right in most cases, but not for file name completion.
2962 ;;; so this has to be turned off.
2963 ;;; (setq completion-base-size 0)
2964 (goto-char (point-min))
2965 (if window-system
2966 (insert (substitute-command-keys
2967 "Click \\[mouse-choose-completion] on a completion to select it.\n")))
2968 (insert (substitute-command-keys
2969 "In this buffer, type \\[choose-completion] to \
2970 select the completion near point.\n\n"))
2971 (forward-line 1)
2972 (while (re-search-forward "[^ \t\n]+\\( [^ \t\n]+\\)*" nil t)
2973 (let ((beg (match-beginning 0))
2974 (end (point)))
2975 (if completion-fixup-function
2976 (funcall completion-fixup-function))
2977 (put-text-property beg (point) 'mouse-face 'highlight)
2978 (goto-char end))))))
2980 (add-hook 'completion-setup-hook 'completion-setup-function)
2982 (define-key minibuffer-local-completion-map [prior]
2983 'switch-to-completions)
2984 (define-key minibuffer-local-must-match-map [prior]
2985 'switch-to-completions)
2986 (define-key minibuffer-local-completion-map "\M-v"
2987 'switch-to-completions)
2988 (define-key minibuffer-local-must-match-map "\M-v"
2989 'switch-to-completions)
2991 (defun switch-to-completions ()
2992 "Select the completion list window."
2993 (interactive)
2994 ;; Make sure we have a completions window.
2995 (or (get-buffer-window "*Completions*")
2996 (minibuffer-completion-help))
2997 (select-window (get-buffer-window "*Completions*"))
2998 (goto-char (point-min))
2999 (search-forward "\n\n")
3000 (forward-line 1))
3002 ;; Support keyboard commands to turn on various modifiers.
3004 ;; These functions -- which are not commands -- each add one modifier
3005 ;; to the following event.
3007 (defun event-apply-alt-modifier (ignore-prompt)
3008 (vector (event-apply-modifier (read-event) 'alt 22 "A-")))
3009 (defun event-apply-super-modifier (ignore-prompt)
3010 (vector (event-apply-modifier (read-event) 'super 23 "s-")))
3011 (defun event-apply-hyper-modifier (ignore-prompt)
3012 (vector (event-apply-modifier (read-event) 'hyper 24 "H-")))
3013 (defun event-apply-shift-modifier (ignore-prompt)
3014 (vector (event-apply-modifier (read-event) 'shift 25 "S-")))
3015 (defun event-apply-control-modifier (ignore-prompt)
3016 (vector (event-apply-modifier (read-event) 'control 26 "C-")))
3017 (defun event-apply-meta-modifier (ignore-prompt)
3018 (vector (event-apply-modifier (read-event) 'meta 27 "M-")))
3020 (defun event-apply-modifier (event symbol lshiftby prefix)
3021 "Apply a modifier flag to event EVENT.
3022 SYMBOL is the name of this modifier, as a symbol.
3023 LSHIFTBY is the numeric value of this modifier, in keyboard events.
3024 PREFIX is the string that represents this modifier in an event type symbol."
3025 (if (numberp event)
3026 (cond ((eq symbol 'control)
3027 (if (and (<= (downcase event) ?z)
3028 (>= (downcase event) ?a))
3029 (- (downcase event) ?a -1)
3030 (if (and (<= (downcase event) ?Z)
3031 (>= (downcase event) ?A))
3032 (- (downcase event) ?A -1)
3033 (logior (lsh 1 lshiftby) event))))
3034 ((eq symbol 'shift)
3035 (if (and (<= (downcase event) ?z)
3036 (>= (downcase event) ?a))
3037 (upcase event)
3038 (logior (lsh 1 lshiftby) event)))
3040 (logior (lsh 1 lshiftby) event)))
3041 (if (memq symbol (event-modifiers event))
3042 event
3043 (let ((event-type (if (symbolp event) event (car event))))
3044 (setq event-type (intern (concat prefix (symbol-name event-type))))
3045 (if (symbolp event)
3046 event-type
3047 (cons event-type (cdr event)))))))
3049 (define-key function-key-map [?\C-x ?@ ?h] 'event-apply-hyper-modifier)
3050 (define-key function-key-map [?\C-x ?@ ?s] 'event-apply-super-modifier)
3051 (define-key function-key-map [?\C-x ?@ ?m] 'event-apply-meta-modifier)
3052 (define-key function-key-map [?\C-x ?@ ?a] 'event-apply-alt-modifier)
3053 (define-key function-key-map [?\C-x ?@ ?S] 'event-apply-shift-modifier)
3054 (define-key function-key-map [?\C-x ?@ ?c] 'event-apply-control-modifier)
3056 ;;;; Keypad support.
3058 ;;; Make the keypad keys act like ordinary typing keys. If people add
3059 ;;; bindings for the function key symbols, then those bindings will
3060 ;;; override these, so this shouldn't interfere with any existing
3061 ;;; bindings.
3063 ;; Also tell read-char how to handle these keys.
3064 (mapcar
3065 (lambda (keypad-normal)
3066 (let ((keypad (nth 0 keypad-normal))
3067 (normal (nth 1 keypad-normal)))
3068 (put keypad 'ascii-character normal)
3069 (define-key function-key-map (vector keypad) (vector normal))))
3070 '((kp-0 ?0) (kp-1 ?1) (kp-2 ?2) (kp-3 ?3) (kp-4 ?4)
3071 (kp-5 ?5) (kp-6 ?6) (kp-7 ?7) (kp-8 ?8) (kp-9 ?9)
3072 (kp-space ?\ )
3073 (kp-tab ?\t)
3074 (kp-enter ?\r)
3075 (kp-multiply ?*)
3076 (kp-add ?+)
3077 (kp-separator ?,)
3078 (kp-subtract ?-)
3079 (kp-decimal ?.)
3080 (kp-divide ?/)
3081 (kp-equal ?=)))
3083 ;;; simple.el ends here