(universal-argument-other-key): Add to existing unread-command-events value.
[emacs.git] / lisp / simple.el
blob9d34a467d965352838c0dc8de006a545a3babd6d
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 ;; Replace specified region with output from command.
870 (let ((swap (and replace (< start end))))
871 ;; Don't muck with mark unless REPLACE says we should.
872 (goto-char start)
873 (and replace (push-mark))
874 (call-process-region start end shell-file-name t t nil
875 shell-command-switch command)
876 (let ((shell-buffer (get-buffer "*Shell Command Output*")))
877 (and shell-buffer (not (eq shell-buffer (current-buffer)))
878 (kill-buffer shell-buffer)))
879 ;; Don't muck with mark unless REPLACE says we should.
880 (and replace swap (exchange-point-and-mark)))
881 ;; No prefix argument: put the output in a temp buffer,
882 ;; replacing its entire contents.
883 (let ((buffer (get-buffer-create
884 (or output-buffer "*Shell Command Output*")))
885 (success nil))
886 (unwind-protect
887 (if (eq buffer (current-buffer))
888 ;; If the input is the same buffer as the output,
889 ;; delete everything but the specified region,
890 ;; then replace that region with the output.
891 (progn (setq buffer-read-only nil)
892 (delete-region (max start end) (point-max))
893 (delete-region (point-min) (max start end))
894 (call-process-region (point-min) (point-max)
895 shell-file-name t t nil
896 shell-command-switch command)
897 (setq success t))
898 ;; Clear the output buffer, then run the command with output there.
899 (save-excursion
900 (set-buffer buffer)
901 (setq buffer-read-only nil)
902 (erase-buffer))
903 (call-process-region start end shell-file-name
904 nil buffer nil
905 shell-command-switch command)
906 (setq success t))
907 ;; Report the amount of output.
908 (let ((lines (save-excursion
909 (set-buffer buffer)
910 (if (= (buffer-size) 0)
912 (count-lines (point-min) (point-max))))))
913 (cond ((= lines 0)
914 (if success
915 (message "(Shell command completed with no output)"))
916 (kill-buffer buffer))
917 ((and success (= lines 1))
918 (message "%s"
919 (save-excursion
920 (set-buffer buffer)
921 (goto-char (point-min))
922 (buffer-substring (point)
923 (progn (end-of-line) (point))))))
925 (set-window-start (display-buffer buffer) 1))))))))
927 (defconst universal-argument-map
928 (let ((map (make-sparse-keymap)))
929 (define-key map [t] 'universal-argument-other-key)
930 (define-key map (vector meta-prefix-char t) 'universal-argument-other-key)
931 (define-key map [switch-frame] nil)
932 (define-key map [?\C-u] 'universal-argument-more)
933 (define-key map [?-] 'universal-argument-minus)
934 (define-key map [?0] 'digit-argument)
935 (define-key map [?1] 'digit-argument)
936 (define-key map [?2] 'digit-argument)
937 (define-key map [?3] 'digit-argument)
938 (define-key map [?4] 'digit-argument)
939 (define-key map [?5] 'digit-argument)
940 (define-key map [?6] 'digit-argument)
941 (define-key map [?7] 'digit-argument)
942 (define-key map [?8] 'digit-argument)
943 (define-key map [?9] 'digit-argument)
944 map)
945 "Keymap used while processing \\[universal-argument].")
947 (defvar universal-argument-num-events nil
948 "Number of argument-specifying events read by `universal-argument'.
949 `universal-argument-other-key' uses this to discard those events
950 from (this-command-keys), and reread only the final command.")
952 (defun universal-argument ()
953 "Begin a numeric argument for the following command.
954 Digits or minus sign following \\[universal-argument] make up the numeric argument.
955 \\[universal-argument] following the digits or minus sign ends the argument.
956 \\[universal-argument] without digits or minus sign provides 4 as argument.
957 Repeating \\[universal-argument] without digits or minus sign
958 multiplies the argument by 4 each time."
959 (interactive)
960 (setq prefix-arg (list 4))
961 (setq universal-argument-num-events (length (this-command-keys)))
962 (setq overriding-terminal-local-map universal-argument-map))
964 ;; A subsequent C-u means to multiply the factor by 4 if we've typed
965 ;; nothing but C-u's; otherwise it means to terminate the prefix arg.
966 (defun universal-argument-more (arg)
967 (interactive "P")
968 (if (consp arg)
969 (setq prefix-arg (list (* 4 (car arg))))
970 (setq prefix-arg arg)
971 (setq overriding-terminal-local-map nil))
972 (setq universal-argument-num-events (length (this-command-keys))))
974 (defun negative-argument (arg)
975 "Begin a negative numeric argument for the next command.
976 \\[universal-argument] following digits or minus sign ends the argument."
977 (interactive "P")
978 (cond ((integerp arg)
979 (setq prefix-arg (- arg)))
980 ((eq arg '-)
981 (setq prefix-arg nil))
983 (setq prefix-arg '-)))
984 (setq universal-argument-num-events (length (this-command-keys)))
985 (setq overriding-terminal-local-map universal-argument-map))
987 (defun digit-argument (arg)
988 "Part of the numeric argument for the next command.
989 \\[universal-argument] following digits or minus sign ends the argument."
990 (interactive "P")
991 (let ((digit (- (logand last-command-char ?\177) ?0)))
992 (cond ((integerp arg)
993 (setq prefix-arg (+ (* arg 10)
994 (if (< arg 0) (- digit) digit))))
995 ((eq arg '-)
996 ;; Treat -0 as just -, so that -01 will work.
997 (setq prefix-arg (if (zerop digit) '- (- digit))))
999 (setq prefix-arg digit))))
1000 (setq universal-argument-num-events (length (this-command-keys)))
1001 (setq overriding-terminal-local-map universal-argument-map))
1003 ;; For backward compatibility, minus with no modifiers is an ordinary
1004 ;; command if digits have already been entered.
1005 (defun universal-argument-minus (arg)
1006 (interactive "P")
1007 (if (integerp arg)
1008 (universal-argument-other-key arg)
1009 (negative-argument arg)))
1011 ;; Anything else terminates the argument and is left in the queue to be
1012 ;; executed as a command.
1013 (defun universal-argument-other-key (arg)
1014 (interactive "P")
1015 (setq prefix-arg arg)
1016 (let* ((key (this-command-keys))
1017 (keylist (listify-key-sequence key)))
1018 (setq unread-command-events
1019 (append (nthcdr universal-argument-num-events keylist)
1020 unread-command-events)))
1021 (reset-this-command-lengths)
1022 (setq overriding-terminal-local-map nil))
1024 (defun forward-to-indentation (arg)
1025 "Move forward ARG lines and position at first nonblank character."
1026 (interactive "p")
1027 (forward-line arg)
1028 (skip-chars-forward " \t"))
1030 (defun backward-to-indentation (arg)
1031 "Move backward ARG lines and position at first nonblank character."
1032 (interactive "p")
1033 (forward-line (- arg))
1034 (skip-chars-forward " \t"))
1036 (defvar kill-whole-line nil
1037 "*If non-nil, `kill-line' with no arg at beg of line kills the whole line.")
1039 (defun kill-line (&optional arg)
1040 "Kill the rest of the current line; if no nonblanks there, kill thru newline.
1041 With prefix argument, kill that many lines from point.
1042 Negative arguments kill lines backward.
1044 When calling from a program, nil means \"no arg\",
1045 a number counts as a prefix arg.
1047 If `kill-whole-line' is non-nil, then kill the whole line
1048 when given no argument at the beginning of a line."
1049 (interactive "P")
1050 (kill-region (point)
1051 ;; It is better to move point to the other end of the kill
1052 ;; before killing. That way, in a read-only buffer, point
1053 ;; moves across the text that is copied to the kill ring.
1054 ;; The choice has no effect on undo now that undo records
1055 ;; the value of point from before the command was run.
1056 (progn
1057 (if arg
1058 (forward-line (prefix-numeric-value arg))
1059 (if (eobp)
1060 (signal 'end-of-buffer nil))
1061 (if (or (looking-at "[ \t]*$") (and kill-whole-line (bolp)))
1062 (forward-line 1)
1063 (end-of-line)))
1064 (point))))
1066 ;;;; Window system cut and paste hooks.
1068 (defvar interprogram-cut-function nil
1069 "Function to call to make a killed region available to other programs.
1071 Most window systems provide some sort of facility for cutting and
1072 pasting text between the windows of different programs.
1073 This variable holds a function that Emacs calls whenever text
1074 is put in the kill ring, to make the new kill available to other
1075 programs.
1077 The function takes one or two arguments.
1078 The first argument, TEXT, is a string containing
1079 the text which should be made available.
1080 The second, PUSH, if non-nil means this is a \"new\" kill;
1081 nil means appending to an \"old\" kill.")
1083 (defvar interprogram-paste-function nil
1084 "Function to call to get text cut from other programs.
1086 Most window systems provide some sort of facility for cutting and
1087 pasting text between the windows of different programs.
1088 This variable holds a function that Emacs calls to obtain
1089 text that other programs have provided for pasting.
1091 The function should be called with no arguments. If the function
1092 returns nil, then no other program has provided such text, and the top
1093 of the Emacs kill ring should be used. If the function returns a
1094 string, that string should be put in the kill ring as the latest kill.
1096 Note that the function should return a string only if a program other
1097 than Emacs has provided a string for pasting; if Emacs provided the
1098 most recent string, the function should return nil. If it is
1099 difficult to tell whether Emacs or some other program provided the
1100 current string, it is probably good enough to return nil if the string
1101 is equal (according to `string=') to the last text Emacs provided.")
1105 ;;;; The kill ring data structure.
1107 (defvar kill-ring nil
1108 "List of killed text sequences.
1109 Since the kill ring is supposed to interact nicely with cut-and-paste
1110 facilities offered by window systems, use of this variable should
1111 interact nicely with `interprogram-cut-function' and
1112 `interprogram-paste-function'. The functions `kill-new',
1113 `kill-append', and `current-kill' are supposed to implement this
1114 interaction; you may want to use them instead of manipulating the kill
1115 ring directly.")
1117 (defconst kill-ring-max 30
1118 "*Maximum length of kill ring before oldest elements are thrown away.")
1120 (defvar kill-ring-yank-pointer nil
1121 "The tail of the kill ring whose car is the last thing yanked.")
1123 (defun kill-new (string &optional replace)
1124 "Make STRING the latest kill in the kill ring.
1125 Set the kill-ring-yank pointer to point to it.
1126 If `interprogram-cut-function' is non-nil, apply it to STRING.
1127 Optional second argument REPLACE non-nil means that STRING will replace
1128 the front of the kill ring, rather than being added to the list."
1129 (and (fboundp 'menu-bar-update-yank-menu)
1130 (menu-bar-update-yank-menu string (and replace (car kill-ring))))
1131 (if replace
1132 (setcar kill-ring string)
1133 (setq kill-ring (cons string kill-ring))
1134 (if (> (length kill-ring) kill-ring-max)
1135 (setcdr (nthcdr (1- kill-ring-max) kill-ring) nil)))
1136 (setq kill-ring-yank-pointer kill-ring)
1137 (if interprogram-cut-function
1138 (funcall interprogram-cut-function string (not replace))))
1140 (defun kill-append (string before-p)
1141 "Append STRING to the end of the latest kill in the kill ring.
1142 If BEFORE-P is non-nil, prepend STRING to the kill.
1143 If `interprogram-cut-function' is set, pass the resulting kill to
1144 it."
1145 (kill-new (if before-p
1146 (concat string (car kill-ring))
1147 (concat (car kill-ring) string)) t))
1149 (defun current-kill (n &optional do-not-move)
1150 "Rotate the yanking point by N places, and then return that kill.
1151 If N is zero, `interprogram-paste-function' is set, and calling it
1152 returns a string, then that string is added to the front of the
1153 kill ring and returned as the latest kill.
1154 If optional arg DO-NOT-MOVE is non-nil, then don't actually move the
1155 yanking point; just return the Nth kill forward."
1156 (let ((interprogram-paste (and (= n 0)
1157 interprogram-paste-function
1158 (funcall interprogram-paste-function))))
1159 (if interprogram-paste
1160 (progn
1161 ;; Disable the interprogram cut function when we add the new
1162 ;; text to the kill ring, so Emacs doesn't try to own the
1163 ;; selection, with identical text.
1164 (let ((interprogram-cut-function nil))
1165 (kill-new interprogram-paste))
1166 interprogram-paste)
1167 (or kill-ring (error "Kill ring is empty"))
1168 (let ((ARGth-kill-element
1169 (nthcdr (mod (- n (length kill-ring-yank-pointer))
1170 (length kill-ring))
1171 kill-ring)))
1172 (or do-not-move
1173 (setq kill-ring-yank-pointer ARGth-kill-element))
1174 (car ARGth-kill-element)))))
1178 ;;;; Commands for manipulating the kill ring.
1180 (defvar kill-read-only-ok nil
1181 "*Non-nil means don't signal an error for killing read-only text.")
1183 (defun kill-region (beg end)
1184 "Kill between point and mark.
1185 The text is deleted but saved in the kill ring.
1186 The command \\[yank] can retrieve it from there.
1187 \(If you want to kill and then yank immediately, use \\[copy-region-as-kill].)
1188 If the buffer is read-only, Emacs will beep and refrain from deleting
1189 the text, but put the text in the kill ring anyway. This means that
1190 you can use the killing commands to copy text from a read-only buffer.
1192 This is the primitive for programs to kill text (as opposed to deleting it).
1193 Supply two arguments, character numbers indicating the stretch of text
1194 to be killed.
1195 Any command that calls this function is a \"kill command\".
1196 If the previous command was also a kill command,
1197 the text killed this time appends to the text killed last time
1198 to make one entry in the kill ring."
1199 (interactive "r")
1200 (cond
1202 ;; If the buffer is read-only, we should beep, in case the person
1203 ;; just isn't aware of this. However, there's no harm in putting
1204 ;; the region's text in the kill ring, anyway.
1205 ((or (and buffer-read-only (not inhibit-read-only))
1206 (text-property-not-all beg end 'read-only nil))
1207 (copy-region-as-kill beg end)
1208 ;; This should always barf, and give us the correct error.
1209 (if kill-read-only-ok
1210 (message "Read only text copied to kill ring")
1211 (setq this-command 'kill-region)
1212 (barf-if-buffer-read-only)))
1214 ;; In certain cases, we can arrange for the undo list and the kill
1215 ;; ring to share the same string object. This code does that.
1216 ((not (or (eq buffer-undo-list t)
1217 (eq last-command 'kill-region)
1218 ;; Use = since positions may be numbers or markers.
1219 (= beg end)))
1220 ;; Don't let the undo list be truncated before we can even access it.
1221 (let ((undo-strong-limit (+ (- (max beg end) (min beg end)) 100))
1222 (old-list buffer-undo-list)
1223 tail)
1224 (delete-region beg end)
1225 ;; Search back in buffer-undo-list for this string,
1226 ;; in case a change hook made property changes.
1227 (setq tail buffer-undo-list)
1228 (while (not (stringp (car (car tail))))
1229 (setq tail (cdr tail)))
1230 ;; Take the same string recorded for undo
1231 ;; and put it in the kill-ring.
1232 (kill-new (car (car tail)))))
1235 (copy-region-as-kill beg end)
1236 (delete-region beg end)))
1237 (setq this-command 'kill-region))
1239 ;; copy-region-as-kill no longer sets this-command, because it's confusing
1240 ;; to get two copies of the text when the user accidentally types M-w and
1241 ;; then corrects it with the intended C-w.
1242 (defun copy-region-as-kill (beg end)
1243 "Save the region as if killed, but don't kill it.
1244 If `interprogram-cut-function' is non-nil, also save the text for a window
1245 system cut and paste."
1246 (interactive "r")
1247 (if (eq last-command 'kill-region)
1248 (kill-append (buffer-substring beg end) (< end beg))
1249 (kill-new (buffer-substring beg end)))
1250 nil)
1252 (defun kill-ring-save (beg end)
1253 "Save the region as if killed, but don't kill it.
1254 This command is similar to `copy-region-as-kill', except that it gives
1255 visual feedback indicating the extent of the region being copied.
1256 If `interprogram-cut-function' is non-nil, also save the text for a window
1257 system cut and paste."
1258 (interactive "r")
1259 (copy-region-as-kill beg end)
1260 (if (interactive-p)
1261 (let ((other-end (if (= (point) beg) end beg))
1262 (opoint (point))
1263 ;; Inhibit quitting so we can make a quit here
1264 ;; look like a C-g typed as a command.
1265 (inhibit-quit t))
1266 (if (pos-visible-in-window-p other-end (selected-window))
1267 (progn
1268 ;; Swap point and mark.
1269 (set-marker (mark-marker) (point) (current-buffer))
1270 (goto-char other-end)
1271 (sit-for 1)
1272 ;; Swap back.
1273 (set-marker (mark-marker) other-end (current-buffer))
1274 (goto-char opoint)
1275 ;; If user quit, deactivate the mark
1276 ;; as C-g would as a command.
1277 (and quit-flag mark-active
1278 (deactivate-mark)))
1279 (let* ((killed-text (current-kill 0))
1280 (message-len (min (length killed-text) 40)))
1281 (if (= (point) beg)
1282 ;; Don't say "killed"; that is misleading.
1283 (message "Saved text until \"%s\""
1284 (substring killed-text (- message-len)))
1285 (message "Saved text from \"%s\""
1286 (substring killed-text 0 message-len))))))))
1288 (defun append-next-kill ()
1289 "Cause following command, if it kills, to append to previous kill."
1290 (interactive)
1291 (if (interactive-p)
1292 (progn
1293 (setq this-command 'kill-region)
1294 (message "If the next command is a kill, it will append"))
1295 (setq last-command 'kill-region)))
1297 (defun yank-pop (arg)
1298 "Replace just-yanked stretch of killed text with a different stretch.
1299 This command is allowed only immediately after a `yank' or a `yank-pop'.
1300 At such a time, the region contains a stretch of reinserted
1301 previously-killed text. `yank-pop' deletes that text and inserts in its
1302 place a different stretch of killed text.
1304 With no argument, the previous kill is inserted.
1305 With argument N, insert the Nth previous kill.
1306 If N is negative, this is a more recent kill.
1308 The sequence of kills wraps around, so that after the oldest one
1309 comes the newest one."
1310 (interactive "*p")
1311 (if (not (eq last-command 'yank))
1312 (error "Previous command was not a yank"))
1313 (setq this-command 'yank)
1314 (let ((before (< (point) (mark t))))
1315 (delete-region (point) (mark t))
1316 (set-marker (mark-marker) (point) (current-buffer))
1317 (insert (current-kill arg))
1318 (if before
1319 ;; This is like exchange-point-and-mark, but doesn't activate the mark.
1320 ;; It is cleaner to avoid activation, even though the command
1321 ;; loop would deactivate the mark because we inserted text.
1322 (goto-char (prog1 (mark t)
1323 (set-marker (mark-marker) (point) (current-buffer))))))
1324 nil)
1326 (defun yank (&optional arg)
1327 "Reinsert the last stretch of killed text.
1328 More precisely, reinsert the stretch of killed text most recently
1329 killed OR yanked. Put point at end, and set mark at beginning.
1330 With just C-u as argument, same but put point at beginning (and mark at end).
1331 With argument N, reinsert the Nth most recently killed stretch of killed
1332 text.
1333 See also the command \\[yank-pop]."
1334 (interactive "*P")
1335 ;; If we don't get all the way thru, make last-command indicate that
1336 ;; for the following command.
1337 (setq this-command t)
1338 (push-mark (point))
1339 (insert (current-kill (cond
1340 ((listp arg) 0)
1341 ((eq arg '-) -1)
1342 (t (1- arg)))))
1343 (if (consp arg)
1344 ;; This is like exchange-point-and-mark, but doesn't activate the mark.
1345 ;; It is cleaner to avoid activation, even though the command
1346 ;; loop would deactivate the mark because we inserted text.
1347 (goto-char (prog1 (mark t)
1348 (set-marker (mark-marker) (point) (current-buffer)))))
1349 ;; If we do get all the way thru, make this-command indicate that.
1350 (setq this-command 'yank)
1351 nil)
1353 (defun rotate-yank-pointer (arg)
1354 "Rotate the yanking point in the kill ring.
1355 With argument, rotate that many kills forward (or backward, if negative)."
1356 (interactive "p")
1357 (current-kill arg))
1360 (defun insert-buffer (buffer)
1361 "Insert after point the contents of BUFFER.
1362 Puts mark after the inserted text.
1363 BUFFER may be a buffer or a buffer name."
1364 (interactive (list (progn (barf-if-buffer-read-only)
1365 (read-buffer "Insert buffer: "
1366 (other-buffer (current-buffer) t)
1367 t))))
1368 (or (bufferp buffer)
1369 (setq buffer (get-buffer buffer)))
1370 (let (start end newmark)
1371 (save-excursion
1372 (save-excursion
1373 (set-buffer buffer)
1374 (setq start (point-min) end (point-max)))
1375 (insert-buffer-substring buffer start end)
1376 (setq newmark (point)))
1377 (push-mark newmark))
1378 nil)
1380 (defun append-to-buffer (buffer start end)
1381 "Append to specified buffer the text of the region.
1382 It is inserted into that buffer before its point.
1384 When calling from a program, give three arguments:
1385 BUFFER (or buffer name), START and END.
1386 START and END specify the portion of the current buffer to be copied."
1387 (interactive
1388 (list (read-buffer "Append to buffer: " (other-buffer (current-buffer) t))
1389 (region-beginning) (region-end)))
1390 (let ((oldbuf (current-buffer)))
1391 (save-excursion
1392 (set-buffer (get-buffer-create buffer))
1393 (insert-buffer-substring oldbuf start end))))
1395 (defun prepend-to-buffer (buffer start end)
1396 "Prepend to specified buffer the text of the region.
1397 It is inserted into that buffer after its point.
1399 When calling from a program, give three arguments:
1400 BUFFER (or buffer name), START and END.
1401 START and END specify the portion of the current buffer to be copied."
1402 (interactive "BPrepend to buffer: \nr")
1403 (let ((oldbuf (current-buffer)))
1404 (save-excursion
1405 (set-buffer (get-buffer-create buffer))
1406 (save-excursion
1407 (insert-buffer-substring oldbuf start end)))))
1409 (defun copy-to-buffer (buffer start end)
1410 "Copy to specified buffer the text of the region.
1411 It is inserted into that buffer, replacing existing text there.
1413 When calling from a program, give three arguments:
1414 BUFFER (or buffer name), START and END.
1415 START and END specify the portion of the current buffer to be copied."
1416 (interactive "BCopy to buffer: \nr")
1417 (let ((oldbuf (current-buffer)))
1418 (save-excursion
1419 (set-buffer (get-buffer-create buffer))
1420 (erase-buffer)
1421 (save-excursion
1422 (insert-buffer-substring oldbuf start end)))))
1424 (put 'mark-inactive 'error-conditions '(mark-inactive error))
1425 (put 'mark-inactive 'error-message "The mark is not active now")
1427 (defun mark (&optional force)
1428 "Return this buffer's mark value as integer; error if mark inactive.
1429 If optional argument FORCE is non-nil, access the mark value
1430 even if the mark is not currently active, and return nil
1431 if there is no mark at all.
1433 If you are using this in an editing command, you are most likely making
1434 a mistake; see the documentation of `set-mark'."
1435 (if (or force (not transient-mark-mode) mark-active mark-even-if-inactive)
1436 (marker-position (mark-marker))
1437 (signal 'mark-inactive nil)))
1439 ;; Many places set mark-active directly, and several of them failed to also
1440 ;; run deactivate-mark-hook. This shorthand should simplify.
1441 (defsubst deactivate-mark ()
1442 "Deactivate the mark by setting `mark-active' to nil.
1443 \(That makes a difference only in Transient Mark mode.)
1444 Also runs the hook `deactivate-mark-hook'."
1445 (if transient-mark-mode
1446 (progn
1447 (setq mark-active nil)
1448 (run-hooks 'deactivate-mark-hook))))
1450 (defun set-mark (pos)
1451 "Set this buffer's mark to POS. Don't use this function!
1452 That is to say, don't use this function unless you want
1453 the user to see that the mark has moved, and you want the previous
1454 mark position to be lost.
1456 Normally, when a new mark is set, the old one should go on the stack.
1457 This is why most applications should use push-mark, not set-mark.
1459 Novice Emacs Lisp programmers often try to use the mark for the wrong
1460 purposes. The mark saves a location for the user's convenience.
1461 Most editing commands should not alter the mark.
1462 To remember a location for internal use in the Lisp program,
1463 store it in a Lisp variable. Example:
1465 (let ((beg (point))) (forward-line 1) (delete-region beg (point)))."
1467 (if pos
1468 (progn
1469 (setq mark-active t)
1470 (run-hooks 'activate-mark-hook)
1471 (set-marker (mark-marker) pos (current-buffer)))
1472 ;; Normally we never clear mark-active except in Transient Mark mode.
1473 ;; But when we actually clear out the mark value too,
1474 ;; we must clear mark-active in any mode.
1475 (setq mark-active nil)
1476 (run-hooks 'deactivate-mark-hook)
1477 (set-marker (mark-marker) nil)))
1479 (defvar mark-ring nil
1480 "The list of former marks of the current buffer, most recent first.")
1481 (make-variable-buffer-local 'mark-ring)
1482 (put 'mark-ring 'permanent-local t)
1484 (defconst mark-ring-max 16
1485 "*Maximum size of mark ring. Start discarding off end if gets this big.")
1487 (defvar global-mark-ring nil
1488 "The list of saved global marks, most recent first.")
1490 (defconst global-mark-ring-max 16
1491 "*Maximum size of global mark ring. \
1492 Start discarding off end if gets this big.")
1494 (defun set-mark-command (arg)
1495 "Set mark at where point is, or jump to mark.
1496 With no prefix argument, set mark, push old mark position on local mark
1497 ring, and push mark on global mark ring.
1498 With argument, jump to mark, and pop a new position for mark off the ring
1499 \(does not affect global mark ring\).
1501 Novice Emacs Lisp programmers often try to use the mark for the wrong
1502 purposes. See the documentation of `set-mark' for more information."
1503 (interactive "P")
1504 (if (null arg)
1505 (progn
1506 (push-mark nil nil t))
1507 (if (null (mark t))
1508 (error "No mark set in this buffer")
1509 (goto-char (mark t))
1510 (pop-mark))))
1512 (defun push-mark (&optional location nomsg activate)
1513 "Set mark at LOCATION (point, by default) and push old mark on mark ring.
1514 If the last global mark pushed was not in the current buffer,
1515 also push LOCATION on the global mark ring.
1516 Display `Mark set' unless the optional second arg NOMSG is non-nil.
1517 In Transient Mark mode, activate mark if optional third arg ACTIVATE non-nil.
1519 Novice Emacs Lisp programmers often try to use the mark for the wrong
1520 purposes. See the documentation of `set-mark' for more information.
1522 In Transient Mark mode, this does not activate the mark."
1523 (if (null (mark t))
1525 (setq mark-ring (cons (copy-marker (mark-marker)) mark-ring))
1526 (if (> (length mark-ring) mark-ring-max)
1527 (progn
1528 (move-marker (car (nthcdr mark-ring-max mark-ring)) nil)
1529 (setcdr (nthcdr (1- mark-ring-max) mark-ring) nil))))
1530 (set-marker (mark-marker) (or location (point)) (current-buffer))
1531 ;; Now push the mark on the global mark ring.
1532 (if (and global-mark-ring
1533 (eq (marker-buffer (car global-mark-ring)) (current-buffer)))
1534 ;; The last global mark pushed was in this same buffer.
1535 ;; Don't push another one.
1537 (setq global-mark-ring (cons (copy-marker (mark-marker)) global-mark-ring))
1538 (if (> (length global-mark-ring) global-mark-ring-max)
1539 (progn
1540 (move-marker (car (nthcdr global-mark-ring-max global-mark-ring))
1541 nil)
1542 (setcdr (nthcdr (1- global-mark-ring-max) global-mark-ring) nil))))
1543 (or nomsg executing-macro (> (minibuffer-depth) 0)
1544 (message "Mark set"))
1545 (if (or activate (not transient-mark-mode))
1546 (set-mark (mark t)))
1547 nil)
1549 (defun pop-mark ()
1550 "Pop off mark ring into the buffer's actual mark.
1551 Does not set point. Does nothing if mark ring is empty."
1552 (if mark-ring
1553 (progn
1554 (setq mark-ring (nconc mark-ring (list (copy-marker (mark-marker)))))
1555 (set-marker (mark-marker) (+ 0 (car mark-ring)) (current-buffer))
1556 (deactivate-mark)
1557 (move-marker (car mark-ring) nil)
1558 (if (null (mark t)) (ding))
1559 (setq mark-ring (cdr mark-ring)))))
1561 (define-function 'exchange-dot-and-mark 'exchange-point-and-mark)
1562 (defun exchange-point-and-mark ()
1563 "Put the mark where point is now, and point where the mark is now.
1564 This command works even when the mark is not active,
1565 and it reactivates the mark."
1566 (interactive nil)
1567 (let ((omark (mark t)))
1568 (if (null omark)
1569 (error "No mark set in this buffer"))
1570 (set-mark (point))
1571 (goto-char omark)
1572 nil))
1574 (defun transient-mark-mode (arg)
1575 "Toggle Transient Mark mode.
1576 With arg, turn Transient Mark mode on if arg is positive, off otherwise.
1578 In Transient Mark mode, when the mark is active, the region is highlighted.
1579 Changing the buffer \"deactivates\" the mark.
1580 So do certain other operations that set the mark
1581 but whose main purpose is something else--for example,
1582 incremental search, \\[beginning-of-buffer], and \\[end-of-buffer]."
1583 (interactive "P")
1584 (setq transient-mark-mode
1585 (if (null arg)
1586 (not transient-mark-mode)
1587 (> (prefix-numeric-value arg) 0))))
1589 (defun pop-global-mark ()
1590 "Pop off global mark ring and jump to the top location."
1591 (interactive)
1592 ;; Pop entries which refer to non-existent buffers.
1593 (while (and global-mark-ring (not (marker-buffer (car global-mark-ring))))
1594 (setq global-mark-ring (cdr global-mark-ring)))
1595 (or global-mark-ring
1596 (error "No global mark set"))
1597 (let* ((marker (car global-mark-ring))
1598 (buffer (marker-buffer marker))
1599 (position (marker-position marker)))
1600 (setq global-mark-ring (nconc (cdr global-mark-ring)
1601 (list (car global-mark-ring))))
1602 (set-buffer buffer)
1603 (or (and (>= position (point-min))
1604 (<= position (point-max)))
1605 (widen))
1606 (goto-char position)
1607 (switch-to-buffer buffer)))
1609 (defvar next-line-add-newlines t
1610 "*If non-nil, `next-line' inserts newline to avoid `end of buffer' error.")
1612 (defun next-line (arg)
1613 "Move cursor vertically down ARG lines.
1614 If there is no character in the target line exactly under the current column,
1615 the cursor is positioned after the character in that line which spans this
1616 column, or at the end of the line if it is not long enough.
1617 If there is no line in the buffer after this one, behavior depends on the
1618 value of `next-line-add-newlines'. If non-nil, it inserts a newline character
1619 to create a line, and moves the cursor to that line. Otherwise it moves the
1620 cursor to the end of the buffer.
1622 The command \\[set-goal-column] can be used to create
1623 a semipermanent goal column to which this command always moves.
1624 Then it does not try to move vertically. This goal column is stored
1625 in `goal-column', which is nil when there is none.
1627 If you are thinking of using this in a Lisp program, consider
1628 using `forward-line' instead. It is usually easier to use
1629 and more reliable (no dependence on goal column, etc.)."
1630 (interactive "p")
1631 (if (and next-line-add-newlines (= arg 1))
1632 (let ((opoint (point)))
1633 (end-of-line)
1634 (if (eobp)
1635 (newline 1)
1636 (goto-char opoint)
1637 (line-move arg)))
1638 (if (interactive-p)
1639 (condition-case nil
1640 (line-move arg)
1641 ((beginning-of-buffer end-of-buffer) (ding)))
1642 (line-move arg)))
1643 nil)
1645 (defun previous-line (arg)
1646 "Move cursor vertically up ARG lines.
1647 If there is no character in the target line exactly over the current column,
1648 the cursor is positioned after the character in that line which spans this
1649 column, or at the end of the line if it is not long enough.
1651 The command \\[set-goal-column] can be used to create
1652 a semipermanent goal column to which this command always moves.
1653 Then it does not try to move vertically.
1655 If you are thinking of using this in a Lisp program, consider using
1656 `forward-line' with a negative argument instead. It is usually easier
1657 to use and more reliable (no dependence on goal column, etc.)."
1658 (interactive "p")
1659 (if (interactive-p)
1660 (condition-case nil
1661 (line-move (- arg))
1662 ((beginning-of-buffer end-of-buffer) (ding)))
1663 (line-move (- arg)))
1664 nil)
1666 (defconst track-eol nil
1667 "*Non-nil means vertical motion starting at end of line keeps to ends of lines.
1668 This means moving to the end of each line moved onto.
1669 The beginning of a blank line does not count as the end of a line.")
1671 (defvar goal-column nil
1672 "*Semipermanent goal column for vertical motion, as set by \\[set-goal-column], or nil.")
1673 (make-variable-buffer-local 'goal-column)
1675 (defvar temporary-goal-column 0
1676 "Current goal column for vertical motion.
1677 It is the column where point was
1678 at the start of current run of vertical motion commands.
1679 When the `track-eol' feature is doing its job, the value is 9999.")
1681 (defvar line-move-ignore-invisible nil
1682 "*Non-nil means \\[next-line] and \\[previous-line] ignore invisible lines.
1683 Outline mode sets this.")
1685 ;; This is the guts of next-line and previous-line.
1686 ;; Arg says how many lines to move.
1687 (defun line-move (arg)
1688 ;; Don't run any point-motion hooks, and disregard intangibility,
1689 ;; for intermediate positions.
1690 (let ((inhibit-point-motion-hooks t)
1691 (opoint (point))
1692 new)
1693 (unwind-protect
1694 (progn
1695 (if (not (or (eq last-command 'next-line)
1696 (eq last-command 'previous-line)))
1697 (setq temporary-goal-column
1698 (if (and track-eol (eolp)
1699 ;; Don't count beg of empty line as end of line
1700 ;; unless we just did explicit end-of-line.
1701 (or (not (bolp)) (eq last-command 'end-of-line)))
1702 9999
1703 (current-column))))
1704 (if (and (not (integerp selective-display))
1705 (not line-move-ignore-invisible))
1706 ;; Use just newline characters.
1707 (or (if (> arg 0)
1708 (progn (if (> arg 1) (forward-line (1- arg)))
1709 ;; This way of moving forward ARG lines
1710 ;; verifies that we have a newline after the last one.
1711 ;; It doesn't get confused by intangible text.
1712 (end-of-line)
1713 (zerop (forward-line 1)))
1714 (and (zerop (forward-line arg))
1715 (bolp)))
1716 (signal (if (< arg 0)
1717 'beginning-of-buffer
1718 'end-of-buffer)
1719 nil))
1720 ;; Move by arg lines, but ignore invisible ones.
1721 (while (> arg 0)
1722 (end-of-line)
1723 (and (zerop (vertical-motion 1))
1724 (signal 'end-of-buffer nil))
1725 ;; If the following character is currently invisible,
1726 ;; skip all characters with that same `invisible' property value.
1727 (while (and (not (eobp))
1728 (let ((prop
1729 (get-char-property (point) 'invisible)))
1730 (if (eq buffer-invisibility-spec t)
1731 prop
1732 (or (memq prop buffer-invisibility-spec)
1733 (assq prop buffer-invisibility-spec)))))
1734 (if (get-text-property (point) 'invisible)
1735 (goto-char (next-single-property-change (point) 'invisible))
1736 (goto-char (next-overlay-change (point)))))
1737 (setq arg (1- arg)))
1738 (while (< arg 0)
1739 (beginning-of-line)
1740 (and (zerop (vertical-motion -1))
1741 (signal 'beginning-of-buffer nil))
1742 (while (and (not (bobp))
1743 (let ((prop
1744 (get-char-property (1- (point)) 'invisible)))
1745 (if (eq buffer-invisibility-spec t)
1746 prop
1747 (or (memq prop buffer-invisibility-spec)
1748 (assq prop buffer-invisibility-spec)))))
1749 (if (get-text-property (1- (point)) 'invisible)
1750 (goto-char (previous-single-property-change (point) 'invisible))
1751 (goto-char (previous-overlay-change (point)))))
1752 (setq arg (1+ arg))))
1753 (move-to-column (or goal-column temporary-goal-column)))
1754 ;; Remember where we moved to, go back home,
1755 ;; then do the motion over again
1756 ;; in just one step, with intangibility and point-motion hooks
1757 ;; enabled this time.
1758 (setq new (point))
1759 (goto-char opoint)
1760 (setq inhibit-point-motion-hooks nil)
1761 (goto-char new)))
1762 nil)
1764 ;;; Many people have said they rarely use this feature, and often type
1765 ;;; it by accident. Maybe it shouldn't even be on a key.
1766 (put 'set-goal-column 'disabled t)
1768 (defun set-goal-column (arg)
1769 "Set the current horizontal position as a goal for \\[next-line] and \\[previous-line].
1770 Those commands will move to this position in the line moved to
1771 rather than trying to keep the same horizontal position.
1772 With a non-nil argument, clears out the goal column
1773 so that \\[next-line] and \\[previous-line] resume vertical motion.
1774 The goal column is stored in the variable `goal-column'."
1775 (interactive "P")
1776 (if arg
1777 (progn
1778 (setq goal-column nil)
1779 (message "No goal column"))
1780 (setq goal-column (current-column))
1781 (message (substitute-command-keys
1782 "Goal column %d (use \\[set-goal-column] with an arg to unset it)")
1783 goal-column))
1784 nil)
1786 ;;; Partial support for horizontal autoscrolling. Someday, this feature
1787 ;;; will be built into the C level and all the (hscroll-point-visible) calls
1788 ;;; will go away.
1790 (defvar hscroll-step 0
1791 "*The number of columns to try scrolling a window by when point moves out.
1792 If that fails to bring point back on frame, point is centered instead.
1793 If this is zero, point is always centered after it moves off frame.")
1795 (defun hscroll-point-visible ()
1796 "Scrolls the selected window horizontally to make point visible."
1797 (save-excursion
1798 (set-buffer (window-buffer))
1799 (if (not (or truncate-lines
1800 (> (window-hscroll) 0)
1801 (and truncate-partial-width-windows
1802 (< (window-width) (frame-width)))))
1803 ;; Point is always visible when lines are wrapped.
1805 ;; If point is on the invisible part of the line before window-start,
1806 ;; then hscrolling can't bring it back, so reset window-start first.
1807 (and (< (point) (window-start))
1808 (let ((ws-bol (save-excursion
1809 (goto-char (window-start))
1810 (beginning-of-line)
1811 (point))))
1812 (and (>= (point) ws-bol)
1813 (set-window-start nil ws-bol))))
1814 (let* ((here (hscroll-window-column))
1815 (left (min (window-hscroll) 1))
1816 (right (1- (window-width))))
1817 ;; Allow for the truncation glyph, if we're not exactly at eol.
1818 (if (not (and (= here right)
1819 (= (following-char) ?\n)))
1820 (setq right (1- right)))
1821 (cond
1822 ;; If too far away, just recenter. But don't show too much
1823 ;; white space off the end of the line.
1824 ((or (< here (- left hscroll-step))
1825 (> here (+ right hscroll-step)))
1826 (let ((eol (save-excursion (end-of-line) (hscroll-window-column))))
1827 (scroll-left (min (- here (/ (window-width) 2))
1828 (- eol (window-width) -5)))))
1829 ;; Within range. Scroll by one step (or maybe not at all).
1830 ((< here left)
1831 (scroll-right hscroll-step))
1832 ((> here right)
1833 (scroll-left hscroll-step)))))))
1835 ;; This function returns the window's idea of the display column of point,
1836 ;; assuming that the window is already known to be truncated rather than
1837 ;; wrapped, and that we've already handled the case where point is on the
1838 ;; part of the line before window-start. We ignore window-width; if point
1839 ;; is beyond the right margin, we want to know how far. The return value
1840 ;; includes the effects of window-hscroll, window-start, and the prompt
1841 ;; string in the minibuffer. It may be negative due to hscroll.
1842 (defun hscroll-window-column ()
1843 (let* ((hscroll (window-hscroll))
1844 (startpos (save-excursion
1845 (beginning-of-line)
1846 (if (= (point) (save-excursion
1847 (goto-char (window-start))
1848 (beginning-of-line)
1849 (point)))
1850 (goto-char (window-start)))
1851 (point)))
1852 (hpos (+ (if (and (eq (selected-window) (minibuffer-window))
1853 (= 1 (window-start))
1854 (= startpos (point-min)))
1855 (minibuffer-prompt-width)
1857 (min 0 (- 1 hscroll))))
1858 val)
1859 (car (cdr (compute-motion startpos (cons hpos 0)
1860 (point) (cons 0 1)
1861 1000000 (cons hscroll 0) nil)))))
1864 ;; rms: (1) The definitions of arrow keys should not simply restate
1865 ;; what keys they are. The arrow keys should run the ordinary commands.
1866 ;; (2) The arrow keys are just one of many common ways of moving point
1867 ;; within a line. Real horizontal autoscrolling would be a good feature,
1868 ;; but supporting it only for arrow keys is too incomplete to be desirable.
1870 ;;;;; Make arrow keys do the right thing for improved terminal support
1871 ;;;;; When we implement true horizontal autoscrolling, right-arrow and
1872 ;;;;; left-arrow can lose the (if truncate-lines ...) clause and become
1873 ;;;;; aliases. These functions are bound to the corresponding keyboard
1874 ;;;;; events in loaddefs.el.
1876 ;;(defun right-arrow (arg)
1877 ;; "Move right one character on the screen (with prefix ARG, that many chars).
1878 ;;Scroll right if needed to keep point horizontally onscreen."
1879 ;; (interactive "P")
1880 ;; (forward-char arg)
1881 ;; (hscroll-point-visible))
1883 ;;(defun left-arrow (arg)
1884 ;; "Move left one character on the screen (with prefix ARG, that many chars).
1885 ;;Scroll left if needed to keep point horizontally onscreen."
1886 ;; (interactive "P")
1887 ;; (backward-char arg)
1888 ;; (hscroll-point-visible))
1890 (defun scroll-other-window-down (lines)
1891 "Scroll the \"other window\" down.
1892 For more details, see the documentation for `scroll-other-window'."
1893 (interactive "P")
1894 (scroll-other-window
1895 ;; Just invert the argument's meaning.
1896 ;; We can do that without knowing which window it will be.
1897 (if (eq lines '-) nil
1898 (if (null lines) '-
1899 (- (prefix-numeric-value lines))))))
1900 (define-key esc-map [?\C-\S-v] 'scroll-other-window-down)
1902 (defun beginning-of-buffer-other-window (arg)
1903 "Move point to the beginning of the buffer in the other window.
1904 Leave mark at previous position.
1905 With arg N, put point N/10 of the way from the true beginning."
1906 (interactive "P")
1907 (let ((orig-window (selected-window))
1908 (window (other-window-for-scrolling)))
1909 ;; We use unwind-protect rather than save-window-excursion
1910 ;; because the latter would preserve the things we want to change.
1911 (unwind-protect
1912 (progn
1913 (select-window window)
1914 ;; Set point and mark in that window's buffer.
1915 (beginning-of-buffer arg)
1916 ;; Set point accordingly.
1917 (recenter '(t)))
1918 (select-window orig-window))))
1920 (defun end-of-buffer-other-window (arg)
1921 "Move point to the end of the buffer in the other window.
1922 Leave mark at previous position.
1923 With arg N, put point N/10 of the way from the true end."
1924 (interactive "P")
1925 ;; See beginning-of-buffer-other-window for comments.
1926 (let ((orig-window (selected-window))
1927 (window (other-window-for-scrolling)))
1928 (unwind-protect
1929 (progn
1930 (select-window window)
1931 (end-of-buffer arg)
1932 (recenter '(t)))
1933 (select-window orig-window))))
1935 (defun transpose-chars (arg)
1936 "Interchange characters around point, moving forward one character.
1937 With prefix arg ARG, effect is to take character before point
1938 and drag it forward past ARG other characters (backward if ARG negative).
1939 If no argument and at end of line, the previous two chars are exchanged."
1940 (interactive "*P")
1941 (and (null arg) (eolp) (forward-char -1))
1942 (transpose-subr 'forward-char (prefix-numeric-value arg)))
1944 (defun transpose-words (arg)
1945 "Interchange words around point, leaving point at end of them.
1946 With prefix arg ARG, effect is to take word before or around point
1947 and drag it forward past ARG other words (backward if ARG negative).
1948 If ARG is zero, the words around or after point and around or after mark
1949 are interchanged."
1950 (interactive "*p")
1951 (transpose-subr 'forward-word arg))
1953 (defun transpose-sexps (arg)
1954 "Like \\[transpose-words] but applies to sexps.
1955 Does not work on a sexp that point is in the middle of
1956 if it is a list or string."
1957 (interactive "*p")
1958 (transpose-subr 'forward-sexp arg))
1960 (defun transpose-lines (arg)
1961 "Exchange current line and previous line, leaving point after both.
1962 With argument ARG, takes previous line and moves it past ARG lines.
1963 With argument 0, interchanges line point is in with line mark is in."
1964 (interactive "*p")
1965 (transpose-subr (function
1966 (lambda (arg)
1967 (if (= arg 1)
1968 (progn
1969 ;; Move forward over a line,
1970 ;; but create a newline if none exists yet.
1971 (end-of-line)
1972 (if (eobp)
1973 (newline)
1974 (forward-char 1)))
1975 (forward-line arg))))
1976 arg))
1978 (defun transpose-subr (mover arg)
1979 (let (start1 end1 start2 end2)
1980 (if (= arg 0)
1981 (progn
1982 (save-excursion
1983 (funcall mover 1)
1984 (setq end2 (point))
1985 (funcall mover -1)
1986 (setq start2 (point))
1987 (goto-char (mark))
1988 (funcall mover 1)
1989 (setq end1 (point))
1990 (funcall mover -1)
1991 (setq start1 (point))
1992 (transpose-subr-1))
1993 (exchange-point-and-mark)))
1994 (while (> arg 0)
1995 (funcall mover -1)
1996 (setq start1 (point))
1997 (funcall mover 1)
1998 (setq end1 (point))
1999 (funcall mover 1)
2000 (setq end2 (point))
2001 (funcall mover -1)
2002 (setq start2 (point))
2003 (transpose-subr-1)
2004 (goto-char end2)
2005 (setq arg (1- arg)))
2006 (while (< arg 0)
2007 (funcall mover -1)
2008 (setq start2 (point))
2009 (funcall mover -1)
2010 (setq start1 (point))
2011 (funcall mover 1)
2012 (setq end1 (point))
2013 (funcall mover 1)
2014 (setq end2 (point))
2015 (transpose-subr-1)
2016 (setq arg (1+ arg)))))
2018 (defun transpose-subr-1 ()
2019 (if (> (min end1 end2) (max start1 start2))
2020 (error "Don't have two things to transpose"))
2021 (let ((word1 (buffer-substring start1 end1))
2022 (word2 (buffer-substring start2 end2)))
2023 (delete-region start2 end2)
2024 (goto-char start2)
2025 (insert word1)
2026 (goto-char (if (< start1 start2) start1
2027 (+ start1 (- (length word1) (length word2)))))
2028 (delete-char (length word1))
2029 (insert word2)))
2031 (defconst comment-column 32
2032 "*Column to indent right-margin comments to.
2033 Setting this variable automatically makes it local to the current buffer.
2034 Each mode establishes a different default value for this variable; you
2035 can set the value for a particular mode using that mode's hook.")
2036 (make-variable-buffer-local 'comment-column)
2038 (defconst comment-start nil
2039 "*String to insert to start a new comment, or nil if no comment syntax.")
2041 (defconst comment-start-skip nil
2042 "*Regexp to match the start of a comment plus everything up to its body.
2043 If there are any \\(...\\) pairs, the comment delimiter text is held to begin
2044 at the place matched by the close of the first pair.")
2046 (defconst comment-end ""
2047 "*String to insert to end a new comment.
2048 Should be an empty string if comments are terminated by end-of-line.")
2050 (defconst comment-indent-hook nil
2051 "Obsolete variable for function to compute desired indentation for a comment.
2052 This function is called with no args with point at the beginning of
2053 the comment's starting delimiter.")
2055 (defconst comment-indent-function
2056 '(lambda () comment-column)
2057 "Function to compute desired indentation for a comment.
2058 This function is called with no args with point at the beginning of
2059 the comment's starting delimiter.")
2061 (defconst block-comment-start nil
2062 "*String to insert to start a new comment on a line by itself.
2063 If nil, use `comment-start' instead.
2064 Note that the regular expression `comment-start-skip' should skip this string
2065 as well as the `comment-start' string.")
2067 (defconst block-comment-end nil
2068 "*String to insert to end a new comment on a line by itself.
2069 Should be an empty string if comments are terminated by end-of-line.
2070 If nil, use `comment-end' instead.")
2072 (defun indent-for-comment ()
2073 "Indent this line's comment to comment column, or insert an empty comment."
2074 (interactive "*")
2075 (let* ((empty (save-excursion (beginning-of-line)
2076 (looking-at "[ \t]*$")))
2077 (starter (or (and empty block-comment-start) comment-start))
2078 (ender (or (and empty block-comment-end) comment-end)))
2079 (if (null starter)
2080 (error "No comment syntax defined")
2081 (let* ((eolpos (save-excursion (end-of-line) (point)))
2082 cpos indent begpos)
2083 (beginning-of-line)
2084 (if (re-search-forward comment-start-skip eolpos 'move)
2085 (progn (setq cpos (point-marker))
2086 ;; Find the start of the comment delimiter.
2087 ;; If there were paren-pairs in comment-start-skip,
2088 ;; position at the end of the first pair.
2089 (if (match-end 1)
2090 (goto-char (match-end 1))
2091 ;; If comment-start-skip matched a string with
2092 ;; internal whitespace (not final whitespace) then
2093 ;; the delimiter start at the end of that
2094 ;; whitespace. Otherwise, it starts at the
2095 ;; beginning of what was matched.
2096 (skip-syntax-backward " " (match-beginning 0))
2097 (skip-syntax-backward "^ " (match-beginning 0)))))
2098 (setq begpos (point))
2099 ;; Compute desired indent.
2100 (if (= (current-column)
2101 (setq indent (if comment-indent-hook
2102 (funcall comment-indent-hook)
2103 (funcall comment-indent-function))))
2104 (goto-char begpos)
2105 ;; If that's different from current, change it.
2106 (skip-chars-backward " \t")
2107 (delete-region (point) begpos)
2108 (indent-to indent))
2109 ;; An existing comment?
2110 (if cpos
2111 (progn (goto-char cpos)
2112 (set-marker cpos nil))
2113 ;; No, insert one.
2114 (insert starter)
2115 (save-excursion
2116 (insert ender)))))))
2118 (defun set-comment-column (arg)
2119 "Set the comment column based on point.
2120 With no arg, set the comment column to the current column.
2121 With just minus as arg, kill any comment on this line.
2122 With any other arg, set comment column to indentation of the previous comment
2123 and then align or create a comment on this line at that column."
2124 (interactive "P")
2125 (if (eq arg '-)
2126 (kill-comment nil)
2127 (if arg
2128 (progn
2129 (save-excursion
2130 (beginning-of-line)
2131 (re-search-backward comment-start-skip)
2132 (beginning-of-line)
2133 (re-search-forward comment-start-skip)
2134 (goto-char (match-beginning 0))
2135 (setq comment-column (current-column))
2136 (message "Comment column set to %d" comment-column))
2137 (indent-for-comment))
2138 (setq comment-column (current-column))
2139 (message "Comment column set to %d" comment-column))))
2141 (defun kill-comment (arg)
2142 "Kill the comment on this line, if any.
2143 With argument, kill comments on that many lines starting with this one."
2144 ;; this function loses in a lot of situations. it incorrectly recognises
2145 ;; comment delimiters sometimes (ergo, inside a string), doesn't work
2146 ;; with multi-line comments, can kill extra whitespace if comment wasn't
2147 ;; through end-of-line, et cetera.
2148 (interactive "P")
2149 (or comment-start-skip (error "No comment syntax defined"))
2150 (let ((count (prefix-numeric-value arg)) endc)
2151 (while (> count 0)
2152 (save-excursion
2153 (end-of-line)
2154 (setq endc (point))
2155 (beginning-of-line)
2156 (and (string< "" comment-end)
2157 (setq endc
2158 (progn
2159 (re-search-forward (regexp-quote comment-end) endc 'move)
2160 (skip-chars-forward " \t")
2161 (point))))
2162 (beginning-of-line)
2163 (if (re-search-forward comment-start-skip endc t)
2164 (progn
2165 (goto-char (match-beginning 0))
2166 (skip-chars-backward " \t")
2167 (kill-region (point) endc)
2168 ;; to catch comments a line beginnings
2169 (indent-according-to-mode))))
2170 (if arg (forward-line 1))
2171 (setq count (1- count)))))
2173 (defun comment-region (beg end &optional arg)
2174 "Comment or uncomment each line in the region.
2175 With just C-u prefix arg, uncomment each line in region.
2176 Numeric prefix arg ARG means use ARG comment characters.
2177 If ARG is negative, delete that many comment characters instead.
2178 Comments are terminated on each line, even for syntax in which newline does
2179 not end the comment. Blank lines do not get comments."
2180 ;; if someone wants it to only put a comment-start at the beginning and
2181 ;; comment-end at the end then typing it, C-x C-x, closing it, C-x C-x
2182 ;; is easy enough. No option is made here for other than commenting
2183 ;; every line.
2184 (interactive "r\nP")
2185 (or comment-start (error "No comment syntax is defined"))
2186 (if (> beg end) (let (mid) (setq mid beg beg end end mid)))
2187 (save-excursion
2188 (save-restriction
2189 (let ((cs comment-start) (ce comment-end)
2190 numarg)
2191 (if (consp arg) (setq numarg t)
2192 (setq numarg (prefix-numeric-value arg))
2193 ;; For positive arg > 1, replicate the comment delims now,
2194 ;; then insert the replicated strings just once.
2195 (while (> numarg 1)
2196 (setq cs (concat cs comment-start)
2197 ce (concat ce comment-end))
2198 (setq numarg (1- numarg))))
2199 ;; Loop over all lines from BEG to END.
2200 (narrow-to-region beg end)
2201 (goto-char beg)
2202 (while (not (eobp))
2203 (if (or (eq numarg t) (< numarg 0))
2204 (progn
2205 ;; Delete comment start from beginning of line.
2206 (if (eq numarg t)
2207 (while (looking-at (regexp-quote cs))
2208 (delete-char (length cs)))
2209 (let ((count numarg))
2210 (while (and (> 1 (setq count (1+ count)))
2211 (looking-at (regexp-quote cs)))
2212 (delete-char (length cs)))))
2213 ;; Delete comment end from end of line.
2214 (if (string= "" ce)
2216 (if (eq numarg t)
2217 (progn
2218 (end-of-line)
2219 ;; This is questionable if comment-end ends in
2220 ;; whitespace. That is pretty brain-damaged,
2221 ;; though.
2222 (skip-chars-backward " \t")
2223 (if (and (>= (- (point) (point-min)) (length ce))
2224 (save-excursion
2225 (backward-char (length ce))
2226 (looking-at (regexp-quote ce))))
2227 (delete-char (- (length ce)))))
2228 (let ((count numarg))
2229 (while (> 1 (setq count (1+ count)))
2230 (end-of-line)
2231 ;; this is questionable if comment-end ends in whitespace
2232 ;; that is pretty brain-damaged though
2233 (skip-chars-backward " \t")
2234 (save-excursion
2235 (backward-char (length ce))
2236 (if (looking-at (regexp-quote ce))
2237 (delete-char (length ce))))))))
2238 (forward-line 1))
2239 ;; Insert at beginning and at end.
2240 (if (looking-at "[ \t]*$") ()
2241 (insert cs)
2242 (if (string= "" ce) ()
2243 (end-of-line)
2244 (insert ce)))
2245 (search-forward "\n" nil 'move)))))))
2247 (defun backward-word (arg)
2248 "Move backward until encountering the end of a word.
2249 With argument, do this that many times.
2250 In programs, it is faster to call `forward-word' with negative arg."
2251 (interactive "p")
2252 (forward-word (- arg)))
2254 (defun mark-word (arg)
2255 "Set mark arg words away from point."
2256 (interactive "p")
2257 (push-mark
2258 (save-excursion
2259 (forward-word arg)
2260 (point))
2261 nil t))
2263 (defun kill-word (arg)
2264 "Kill characters forward until encountering the end of a word.
2265 With argument, do this that many times."
2266 (interactive "p")
2267 (kill-region (point) (progn (forward-word arg) (point))))
2269 (defun backward-kill-word (arg)
2270 "Kill characters backward until encountering the end of a word.
2271 With argument, do this that many times."
2272 (interactive "p")
2273 (kill-word (- arg)))
2275 (defun current-word (&optional strict)
2276 "Return the word point is on (or a nearby word) as a string.
2277 If optional arg STRICT is non-nil, return nil unless point is within
2278 or adjacent to a word."
2279 (save-excursion
2280 (let ((oldpoint (point)) (start (point)) (end (point)))
2281 (skip-syntax-backward "w_") (setq start (point))
2282 (goto-char oldpoint)
2283 (skip-syntax-forward "w_") (setq end (point))
2284 (if (and (eq start oldpoint) (eq end oldpoint))
2285 ;; Point is neither within nor adjacent to a word.
2286 (and (not strict)
2287 (progn
2288 ;; Look for preceding word in same line.
2289 (skip-syntax-backward "^w_"
2290 (save-excursion (beginning-of-line)
2291 (point)))
2292 (if (bolp)
2293 ;; No preceding word in same line.
2294 ;; Look for following word in same line.
2295 (progn
2296 (skip-syntax-forward "^w_"
2297 (save-excursion (end-of-line)
2298 (point)))
2299 (setq start (point))
2300 (skip-syntax-forward "w_")
2301 (setq end (point)))
2302 (setq end (point))
2303 (skip-syntax-backward "w_")
2304 (setq start (point)))
2305 (buffer-substring start end)))
2306 (buffer-substring start end)))))
2308 (defconst fill-prefix nil
2309 "*String for filling to insert at front of new line, or nil for none.
2310 Setting this variable automatically makes it local to the current buffer.")
2311 (make-variable-buffer-local 'fill-prefix)
2313 (defconst auto-fill-inhibit-regexp nil
2314 "*Regexp to match lines which should not be auto-filled.")
2316 (defun do-auto-fill ()
2317 (let (fc justify bol give-up
2318 (fill-prefix fill-prefix))
2319 (if (or (not (setq justify (current-justification)))
2320 (null (setq fc (current-fill-column)))
2321 (and (eq justify 'left)
2322 (<= (current-column) fc))
2323 (save-excursion (beginning-of-line)
2324 (setq bol (point))
2325 (and auto-fill-inhibit-regexp
2326 (looking-at auto-fill-inhibit-regexp))))
2327 nil ;; Auto-filling not required
2328 (if (memq justify '(full center right))
2329 (save-excursion (unjustify-current-line)))
2331 ;; Choose a fill-prefix automatically.
2332 (if (and adaptive-fill-mode
2333 (or (null fill-prefix) (string= fill-prefix "")))
2334 (setq fill-prefix
2335 (fill-context-prefix
2336 (save-excursion (backward-paragraph 1) (point))
2337 (point))))
2339 (while (and (not give-up) (> (current-column) fc))
2340 ;; Determine where to split the line.
2341 (let ((fill-point
2342 (let ((opoint (point))
2343 bounce
2344 (first t))
2345 (save-excursion
2346 (move-to-column (1+ fc))
2347 ;; Move back to a word boundary.
2348 (while (or first
2349 ;; If this is after period and a single space,
2350 ;; move back once more--we don't want to break
2351 ;; the line there and make it look like a
2352 ;; sentence end.
2353 (and (not (bobp))
2354 (not bounce)
2355 sentence-end-double-space
2356 (save-excursion (forward-char -1)
2357 (and (looking-at "\\. ")
2358 (not (looking-at "\\. "))))))
2359 (setq first nil)
2360 (skip-chars-backward "^ \t\n")
2361 ;; If we find nowhere on the line to break it,
2362 ;; break after one word. Set bounce to t
2363 ;; so we will not keep going in this while loop.
2364 (if (bolp)
2365 (progn
2366 (re-search-forward "[ \t]" opoint t)
2367 (setq bounce t)))
2368 (skip-chars-backward " \t"))
2369 ;; Let fill-point be set to the place where we end up.
2370 (point)))))
2371 ;; If that place is not the beginning of the line,
2372 ;; break the line there.
2373 (if (save-excursion
2374 (goto-char fill-point)
2375 (not (bolp)))
2376 (let ((prev-column (current-column)))
2377 ;; If point is at the fill-point, do not `save-excursion'.
2378 ;; Otherwise, if a comment prefix or fill-prefix is inserted,
2379 ;; point will end up before it rather than after it.
2380 (if (save-excursion
2381 (skip-chars-backward " \t")
2382 (= (point) fill-point))
2383 (indent-new-comment-line t)
2384 (save-excursion
2385 (goto-char fill-point)
2386 (indent-new-comment-line t)))
2387 ;; Now do justification, if required
2388 (if (not (eq justify 'left))
2389 (save-excursion
2390 (end-of-line 0)
2391 (justify-current-line justify nil t)))
2392 ;; If making the new line didn't reduce the hpos of
2393 ;; the end of the line, then give up now;
2394 ;; trying again will not help.
2395 (if (>= (current-column) prev-column)
2396 (setq give-up t)))
2397 ;; No place to break => stop trying.
2398 (setq give-up t))))
2399 ;; justify last line
2400 (justify-current-line justify t t))))
2402 (defun auto-fill-mode (&optional arg)
2403 "Toggle auto-fill mode.
2404 With arg, turn Auto-Fill mode on if and only if arg is positive.
2405 In Auto-Fill mode, inserting a space at a column beyond `current-fill-column'
2406 automatically breaks the line at a previous space."
2407 (interactive "P")
2408 (prog1 (setq auto-fill-function
2409 (if (if (null arg)
2410 (not auto-fill-function)
2411 (> (prefix-numeric-value arg) 0))
2412 'do-auto-fill
2413 nil))
2414 (force-mode-line-update)))
2416 ;; This holds a document string used to document auto-fill-mode.
2417 (defun auto-fill-function ()
2418 "Automatically break line at a previous space, in insertion of text."
2419 nil)
2421 (defun turn-on-auto-fill ()
2422 "Unconditionally turn on Auto Fill mode."
2423 (auto-fill-mode 1))
2425 (defun set-fill-column (arg)
2426 "Set `fill-column' to current column, or to argument if given.
2427 The variable `fill-column' has a separate value for each buffer."
2428 (interactive "P")
2429 (setq fill-column (if (integerp arg) arg (current-column)))
2430 (message "fill-column set to %d" fill-column))
2432 (defconst comment-multi-line nil
2433 "*Non-nil means \\[indent-new-comment-line] should continue same comment
2434 on new line, with no new terminator or starter.
2435 This is obsolete because you might as well use \\[newline-and-indent].")
2437 (defun indent-new-comment-line (&optional soft)
2438 "Break line at point and indent, continuing comment if within one.
2439 This indents the body of the continued comment
2440 under the previous comment line.
2442 This command is intended for styles where you write a comment per line,
2443 starting a new comment (and terminating it if necessary) on each line.
2444 If you want to continue one comment across several lines, use \\[newline-and-indent].
2446 If a fill column is specified, it overrides the use of the comment column
2447 or comment indentation.
2449 The inserted newline is marked hard if `use-hard-newlines' is true,
2450 unless optional argument SOFT is non-nil."
2451 (interactive)
2452 (let (comcol comstart)
2453 (skip-chars-backward " \t")
2454 (delete-region (point)
2455 (progn (skip-chars-forward " \t")
2456 (point)))
2457 (if soft (insert-and-inherit ?\n) (newline 1))
2458 (if fill-prefix
2459 (progn
2460 (indent-to-left-margin)
2461 (insert-and-inherit fill-prefix))
2462 (if (not comment-multi-line)
2463 (save-excursion
2464 (if (and comment-start-skip
2465 (let ((opoint (point)))
2466 (forward-line -1)
2467 (re-search-forward comment-start-skip opoint t)))
2468 ;; The old line is a comment.
2469 ;; Set WIN to the pos of the comment-start.
2470 ;; But if the comment is empty, look at preceding lines
2471 ;; to find one that has a nonempty comment.
2473 ;; If comment-start-skip contains a \(...\) pair,
2474 ;; the real comment delimiter starts at the end of that pair.
2475 (let ((win (or (match-end 1) (match-beginning 0))))
2476 (while (and (eolp) (not (bobp))
2477 (let (opoint)
2478 (beginning-of-line)
2479 (setq opoint (point))
2480 (forward-line -1)
2481 (re-search-forward comment-start-skip opoint t)))
2482 (setq win (or (match-end 1) (match-beginning 0))))
2483 ;; Indent this line like what we found.
2484 (goto-char win)
2485 (setq comcol (current-column))
2486 (setq comstart
2487 (buffer-substring (point) (match-end 0)))))))
2488 (if comcol
2489 (let ((comment-column comcol)
2490 (comment-start comstart)
2491 (comment-end comment-end))
2492 (and comment-end (not (equal comment-end ""))
2493 ; (if (not comment-multi-line)
2494 (progn
2495 (forward-char -1)
2496 (insert comment-end)
2497 (forward-char 1))
2498 ; (setq comment-column (+ comment-column (length comment-start))
2499 ; comment-start "")
2502 (if (not (eolp))
2503 (setq comment-end ""))
2504 (insert-and-inherit ?\n)
2505 (forward-char -1)
2506 (indent-for-comment)
2507 (save-excursion
2508 ;; Make sure we delete the newline inserted above.
2509 (end-of-line)
2510 (delete-char 1)))
2511 (indent-according-to-mode)))))
2513 (defun set-selective-display (arg)
2514 "Set `selective-display' to ARG; clear it if no arg.
2515 When the value of `selective-display' is a number > 0,
2516 lines whose indentation is >= that value are not displayed.
2517 The variable `selective-display' has a separate value for each buffer."
2518 (interactive "P")
2519 (if (eq selective-display t)
2520 (error "selective-display already in use for marked lines"))
2521 (let ((current-vpos
2522 (save-restriction
2523 (narrow-to-region (point-min) (point))
2524 (goto-char (window-start))
2525 (vertical-motion (window-height)))))
2526 (setq selective-display
2527 (and arg (prefix-numeric-value arg)))
2528 (recenter current-vpos))
2529 (set-window-start (selected-window) (window-start (selected-window)))
2530 (princ "selective-display set to " t)
2531 (prin1 selective-display t)
2532 (princ "." t))
2534 (defconst overwrite-mode-textual " Ovwrt"
2535 "The string displayed in the mode line when in overwrite mode.")
2536 (defconst overwrite-mode-binary " Bin Ovwrt"
2537 "The string displayed in the mode line when in binary overwrite mode.")
2539 (defun overwrite-mode (arg)
2540 "Toggle overwrite mode.
2541 With arg, turn overwrite mode on iff arg is positive.
2542 In overwrite mode, printing characters typed in replace existing text
2543 on a one-for-one basis, rather than pushing it to the right. At the
2544 end of a line, such characters extend the line. Before a tab,
2545 such characters insert until the tab is filled in.
2546 \\[quoted-insert] still inserts characters in overwrite mode; this
2547 is supposed to make it easier to insert characters when necessary."
2548 (interactive "P")
2549 (setq overwrite-mode
2550 (if (if (null arg) (not overwrite-mode)
2551 (> (prefix-numeric-value arg) 0))
2552 'overwrite-mode-textual))
2553 (force-mode-line-update))
2555 (defun binary-overwrite-mode (arg)
2556 "Toggle binary overwrite mode.
2557 With arg, turn binary overwrite mode on iff arg is positive.
2558 In binary overwrite mode, printing characters typed in replace
2559 existing text. Newlines are not treated specially, so typing at the
2560 end of a line joins the line to the next, with the typed character
2561 between them. Typing before a tab character simply replaces the tab
2562 with the character typed.
2563 \\[quoted-insert] replaces the text at the cursor, just as ordinary
2564 typing characters do.
2566 Note that binary overwrite mode is not its own minor mode; it is a
2567 specialization of overwrite-mode, entered by setting the
2568 `overwrite-mode' variable to `overwrite-mode-binary'."
2569 (interactive "P")
2570 (setq overwrite-mode
2571 (if (if (null arg)
2572 (not (eq overwrite-mode 'overwrite-mode-binary))
2573 (> (prefix-numeric-value arg) 0))
2574 'overwrite-mode-binary))
2575 (force-mode-line-update))
2577 (defvar line-number-mode t
2578 "*Non-nil means display line number in mode line.")
2580 (defun line-number-mode (arg)
2581 "Toggle Line Number mode.
2582 With arg, turn Line Number mode on iff arg is positive.
2583 When Line Number mode is enabled, the line number appears
2584 in the mode line."
2585 (interactive "P")
2586 (setq line-number-mode
2587 (if (null arg) (not line-number-mode)
2588 (> (prefix-numeric-value arg) 0)))
2589 (force-mode-line-update))
2591 (defvar column-number-mode nil
2592 "*Non-nil means display column number in mode line.")
2594 (defun column-number-mode (arg)
2595 "Toggle Column Number mode.
2596 With arg, turn Column Number mode on iff arg is positive.
2597 When Column Number mode is enabled, the column number appears
2598 in the mode line."
2599 (interactive "P")
2600 (setq column-number-mode
2601 (if (null arg) (not column-number-mode)
2602 (> (prefix-numeric-value arg) 0)))
2603 (force-mode-line-update))
2605 (defvar blink-matching-paren t
2606 "*Non-nil means show matching open-paren when close-paren is inserted.")
2608 (defconst blink-matching-paren-distance 12000
2609 "*If non-nil, is maximum distance to search for matching open-paren.")
2611 (defconst blink-matching-delay 1
2612 "*The number of seconds that `blink-matching-open' will delay at a match.")
2614 (defconst blink-matching-paren-dont-ignore-comments nil
2615 "*Non-nil means `blink-matching-paren' should not ignore comments.")
2617 (defun blink-matching-open ()
2618 "Move cursor momentarily to the beginning of the sexp before point."
2619 (interactive)
2620 (and (> (point) (1+ (point-min)))
2621 blink-matching-paren
2622 ;; Verify an even number of quoting characters precede the close.
2623 (= 1 (logand 1 (- (point)
2624 (save-excursion
2625 (forward-char -1)
2626 (skip-syntax-backward "/\\")
2627 (point)))))
2628 (let* ((oldpos (point))
2629 (blinkpos)
2630 (mismatch))
2631 (save-excursion
2632 (save-restriction
2633 (if blink-matching-paren-distance
2634 (narrow-to-region (max (point-min)
2635 (- (point) blink-matching-paren-distance))
2636 oldpos))
2637 (condition-case ()
2638 (let ((parse-sexp-ignore-comments
2639 (and parse-sexp-ignore-comments
2640 (not blink-matching-paren-dont-ignore-comments))))
2641 (setq blinkpos (scan-sexps oldpos -1)))
2642 (error nil)))
2643 (and blinkpos
2644 (/= (char-syntax (char-after blinkpos))
2645 ?\$)
2646 (setq mismatch
2647 (or (null (matching-paren (char-after blinkpos)))
2648 (/= (char-after (1- oldpos))
2649 (matching-paren (char-after blinkpos))))))
2650 (if mismatch (setq blinkpos nil))
2651 (if blinkpos
2652 (progn
2653 (goto-char blinkpos)
2654 (if (pos-visible-in-window-p)
2655 (sit-for blink-matching-delay)
2656 (goto-char blinkpos)
2657 (message
2658 "Matches %s"
2659 ;; Show what precedes the open in its line, if anything.
2660 (if (save-excursion
2661 (skip-chars-backward " \t")
2662 (not (bolp)))
2663 (buffer-substring (progn (beginning-of-line) (point))
2664 (1+ blinkpos))
2665 ;; Show what follows the open in its line, if anything.
2666 (if (save-excursion
2667 (forward-char 1)
2668 (skip-chars-forward " \t")
2669 (not (eolp)))
2670 (buffer-substring blinkpos
2671 (progn (end-of-line) (point)))
2672 ;; Otherwise show the previous nonblank line,
2673 ;; if there is one.
2674 (if (save-excursion
2675 (skip-chars-backward "\n \t")
2676 (not (bobp)))
2677 (concat
2678 (buffer-substring (progn
2679 (skip-chars-backward "\n \t")
2680 (beginning-of-line)
2681 (point))
2682 (progn (end-of-line)
2683 (skip-chars-backward " \t")
2684 (point)))
2685 ;; Replace the newline and other whitespace with `...'.
2686 "..."
2687 (buffer-substring blinkpos (1+ blinkpos)))
2688 ;; There is nothing to show except the char itself.
2689 (buffer-substring blinkpos (1+ blinkpos))))))))
2690 (cond (mismatch
2691 (message "Mismatched parentheses"))
2692 ((not blink-matching-paren-distance)
2693 (message "Unmatched parenthesis"))))))))
2695 ;Turned off because it makes dbx bomb out.
2696 (setq blink-paren-function 'blink-matching-open)
2698 ;; This executes C-g typed while Emacs is waiting for a command.
2699 ;; Quitting out of a program does not go through here;
2700 ;; that happens in the QUIT macro at the C code level.
2701 (defun keyboard-quit ()
2702 "Signal a quit condition.
2703 During execution of Lisp code, this character causes a quit directly.
2704 At top-level, as an editor command, this simply beeps."
2705 (interactive)
2706 (deactivate-mark)
2707 (signal 'quit nil))
2709 (define-key global-map "\C-g" 'keyboard-quit)
2711 (defvar buffer-quit-function nil
2712 "Function to call to \"quit\" the current buffer, or nil if none.
2713 \\[keyboard-escape-quit] calls this function when its more local actions
2714 \(such as cancelling a prefix argument, minibuffer or region) do not apply.")
2716 (defun keyboard-escape-quit ()
2717 "Exit the current \"mode\" (in a generalized sense of the word).
2718 This command can exit an interactive command such as `query-replace',
2719 can clear out a prefix argument or a region,
2720 can get out of the minibuffer or other recursive edit,
2721 cancel the use of the current buffer (for special-purpose buffers),
2722 or go back to just one window (by deleting all but the selected window)."
2723 (interactive)
2724 (cond ((eq last-command 'mode-exited) nil)
2725 ((> (minibuffer-depth) 0)
2726 (abort-recursive-edit))
2727 (current-prefix-arg
2728 nil)
2729 ((and transient-mark-mode
2730 mark-active)
2731 (deactivate-mark))
2732 (buffer-quit-function
2733 (funcall buffer-quit-function))
2734 ((not (one-window-p t))
2735 (delete-other-windows))))
2737 (define-key global-map "\e\e\e" 'keyboard-escape-quit)
2739 (defun set-variable (var val)
2740 "Set VARIABLE to VALUE. VALUE is a Lisp object.
2741 When using this interactively, supply a Lisp expression for VALUE.
2742 If you want VALUE to be a string, you must surround it with doublequotes.
2744 If VARIABLE has a `variable-interactive' property, that is used as if
2745 it were the arg to `interactive' (which see) to interactively read the value."
2746 (interactive
2747 (let* ((var (read-variable "Set variable: "))
2748 (minibuffer-help-form
2749 '(funcall myhelp))
2750 (myhelp
2751 (function
2752 (lambda ()
2753 (with-output-to-temp-buffer "*Help*"
2754 (prin1 var)
2755 (princ "\nDocumentation:\n")
2756 (princ (substring (documentation-property var 'variable-documentation)
2758 (if (boundp var)
2759 (let ((print-length 20))
2760 (princ "\n\nCurrent value: ")
2761 (prin1 (symbol-value var))))
2762 (save-excursion
2763 (set-buffer standard-output)
2764 (help-mode))
2765 nil)))))
2766 (list var
2767 (let ((prop (get var 'variable-interactive)))
2768 (if prop
2769 ;; Use VAR's `variable-interactive' property
2770 ;; as an interactive spec for prompting.
2771 (call-interactively (list 'lambda '(arg)
2772 (list 'interactive prop)
2773 'arg))
2774 (eval-minibuffer (format "Set %s to value: " var)))))))
2775 (set var val))
2777 ;; Define the major mode for lists of completions.
2779 (defvar completion-list-mode-map nil
2780 "Local map for completion list buffers.")
2781 (or completion-list-mode-map
2782 (let ((map (make-sparse-keymap)))
2783 (define-key map [mouse-2] 'mouse-choose-completion)
2784 (define-key map [down-mouse-2] nil)
2785 (define-key map "\C-m" 'choose-completion)
2786 (define-key map "\e\e\e" 'delete-completion-window)
2787 (define-key map [left] 'previous-completion)
2788 (define-key map [right] 'next-completion)
2789 (setq completion-list-mode-map map)))
2791 ;; Completion mode is suitable only for specially formatted data.
2792 (put 'completion-list-mode 'mode-class 'special)
2794 (defvar completion-reference-buffer nil
2795 "Record the buffer that was current when the completion list was requested.
2796 This is a local variable in the completion list buffer.
2797 Initial value is nil to avoid some compiler warnings.")
2799 (defvar completion-base-size nil
2800 "Number of chars at beginning of minibuffer not involved in completion.
2801 This is a local variable in the completion list buffer
2802 but it talks about the buffer in `completion-reference-buffer'.
2803 If this is nil, it means to compare text to determine which part
2804 of the tail end of the buffer's text is involved in completion.")
2806 (defun delete-completion-window ()
2807 "Delete the completion list window.
2808 Go to the window from which completion was requested."
2809 (interactive)
2810 (let ((buf completion-reference-buffer))
2811 (delete-window (selected-window))
2812 (if (get-buffer-window buf)
2813 (select-window (get-buffer-window buf)))))
2815 (defun previous-completion (n)
2816 "Move to the previous item in the completion list."
2817 (interactive "p")
2818 (next-completion (- n)))
2820 (defun next-completion (n)
2821 "Move to the next item in the completion list.
2822 WIth prefix argument N, move N items (negative N means move backward)."
2823 (interactive "p")
2824 (while (and (> n 0) (not (eobp)))
2825 (let ((prop (get-text-property (point) 'mouse-face))
2826 (end (point-max)))
2827 ;; If in a completion, move to the end of it.
2828 (if prop
2829 (goto-char (next-single-property-change (point) 'mouse-face nil end)))
2830 ;; Move to start of next one.
2831 (goto-char (next-single-property-change (point) 'mouse-face nil end)))
2832 (setq n (1- n)))
2833 (while (and (< n 0) (not (bobp)))
2834 (let ((prop (get-text-property (1- (point)) 'mouse-face))
2835 (end (point-min)))
2836 ;; If in a completion, move to the start of it.
2837 (if prop
2838 (goto-char (previous-single-property-change
2839 (point) 'mouse-face nil end)))
2840 ;; Move to end of the previous completion.
2841 (goto-char (previous-single-property-change (point) 'mouse-face nil end))
2842 ;; Move to the start of that one.
2843 (goto-char (previous-single-property-change (point) 'mouse-face nil end)))
2844 (setq n (1+ n))))
2846 (defun choose-completion ()
2847 "Choose the completion that point is in or next to."
2848 (interactive)
2849 (let (beg end completion (buffer completion-reference-buffer)
2850 (base-size completion-base-size))
2851 (if (and (not (eobp)) (get-text-property (point) 'mouse-face))
2852 (setq end (point) beg (1+ (point))))
2853 (if (and (not (bobp)) (get-text-property (1- (point)) 'mouse-face))
2854 (setq end (1- (point)) beg (point)))
2855 (if (null beg)
2856 (error "No completion here"))
2857 (setq beg (previous-single-property-change beg 'mouse-face))
2858 (setq end (or (next-single-property-change end 'mouse-face) (point-max)))
2859 (setq completion (buffer-substring beg end))
2860 (let ((owindow (selected-window)))
2861 (if (and (one-window-p t 'selected-frame)
2862 (window-dedicated-p (selected-window)))
2863 ;; This is a special buffer's frame
2864 (iconify-frame (selected-frame))
2865 (or (window-dedicated-p (selected-window))
2866 (bury-buffer)))
2867 (select-window owindow))
2868 (choose-completion-string completion buffer base-size)))
2870 ;; Delete the longest partial match for STRING
2871 ;; that can be found before POINT.
2872 (defun choose-completion-delete-max-match (string)
2873 (let ((opoint (point))
2874 (len (min (length string)
2875 (- (point) (point-min)))))
2876 (goto-char (- (point) (length string)))
2877 (if completion-ignore-case
2878 (setq string (downcase string)))
2879 (while (and (> len 0)
2880 (let ((tail (buffer-substring (point)
2881 (+ (point) len))))
2882 (if completion-ignore-case
2883 (setq tail (downcase tail)))
2884 (not (string= tail (substring string 0 len)))))
2885 (setq len (1- len))
2886 (forward-char 1))
2887 (delete-char len)))
2889 ;; Switch to BUFFER and insert the completion choice CHOICE.
2890 ;; BASE-SIZE, if non-nil, says how many characters of BUFFER's text
2891 ;; to keep. If it is nil, use choose-completion-delete-max-match instead.
2892 (defun choose-completion-string (choice &optional buffer base-size)
2893 (let ((buffer (or buffer completion-reference-buffer)))
2894 ;; If BUFFER is a minibuffer, barf unless it's the currently
2895 ;; active minibuffer.
2896 (if (and (string-match "\\` \\*Minibuf-[0-9]+\\*\\'" (buffer-name buffer))
2897 (or (not (active-minibuffer-window))
2898 (not (equal buffer
2899 (window-buffer (active-minibuffer-window))))))
2900 (error "Minibuffer is not active for completion")
2901 ;; Insert the completion into the buffer where completion was requested.
2902 (set-buffer buffer)
2903 (if base-size
2904 (delete-region (+ base-size (point-min)) (point))
2905 (choose-completion-delete-max-match choice))
2906 (insert choice)
2907 (remove-text-properties (- (point) (length choice)) (point)
2908 '(mouse-face nil))
2909 ;; Update point in the window that BUFFER is showing in.
2910 (let ((window (get-buffer-window buffer t)))
2911 (set-window-point window (point)))
2912 ;; If completing for the minibuffer, exit it with this choice.
2913 (and (equal buffer (window-buffer (minibuffer-window)))
2914 minibuffer-completion-table
2915 (exit-minibuffer)))))
2917 (defun completion-list-mode ()
2918 "Major mode for buffers showing lists of possible completions.
2919 Type \\<completion-list-mode-map>\\[choose-completion] in the completion list\
2920 to select the completion near point.
2921 Use \\<completion-list-mode-map>\\[mouse-choose-completion] to select one\
2922 with the mouse."
2923 (interactive)
2924 (kill-all-local-variables)
2925 (use-local-map completion-list-mode-map)
2926 (setq mode-name "Completion List")
2927 (setq major-mode 'completion-list-mode)
2928 (make-local-variable 'completion-base-size)
2929 (setq completion-base-size nil)
2930 (run-hooks 'completion-list-mode-hook))
2932 (defvar completion-fixup-function nil
2933 "A function to customize how completions are identified in completion lists.
2934 `completion-setup-function' calls this function with no arguments
2935 each time it has found what it thinks is one completion.
2936 Point is at the end of the completion in the completion list buffer.
2937 If this function moves point, it can alter the end of that completion.")
2939 ;; This function goes in completion-setup-hook, so that it is called
2940 ;; after the text of the completion list buffer is written.
2942 (defun completion-setup-function ()
2943 (save-excursion
2944 (let ((mainbuf (current-buffer)))
2945 (set-buffer standard-output)
2946 (completion-list-mode)
2947 (make-local-variable 'completion-reference-buffer)
2948 (setq completion-reference-buffer mainbuf)
2949 ;;; The value 0 is right in most cases, but not for file name completion.
2950 ;;; so this has to be turned off.
2951 ;;; (setq completion-base-size 0)
2952 (goto-char (point-min))
2953 (if window-system
2954 (insert (substitute-command-keys
2955 "Click \\[mouse-choose-completion] on a completion to select it.\n")))
2956 (insert (substitute-command-keys
2957 "In this buffer, type \\[choose-completion] to \
2958 select the completion near point.\n\n"))
2959 (forward-line 1)
2960 (while (re-search-forward "[^ \t\n]+\\( [^ \t\n]+\\)*" nil t)
2961 (let ((beg (match-beginning 0))
2962 (end (point)))
2963 (if completion-fixup-function
2964 (funcall completion-fixup-function))
2965 (put-text-property beg (point) 'mouse-face 'highlight)
2966 (goto-char end))))))
2968 (add-hook 'completion-setup-hook 'completion-setup-function)
2970 (define-key minibuffer-local-completion-map [prior]
2971 'switch-to-completions)
2972 (define-key minibuffer-local-must-match-map [prior]
2973 'switch-to-completions)
2974 (define-key minibuffer-local-completion-map "\M-v"
2975 'switch-to-completions)
2976 (define-key minibuffer-local-must-match-map "\M-v"
2977 'switch-to-completions)
2979 (defun switch-to-completions ()
2980 "Select the completion list window."
2981 (interactive)
2982 ;; Make sure we have a completions window.
2983 (or (get-buffer-window "*Completions*")
2984 (minibuffer-completion-help))
2985 (select-window (get-buffer-window "*Completions*"))
2986 (goto-char (point-min))
2987 (search-forward "\n\n")
2988 (forward-line 1))
2990 ;; Support keyboard commands to turn on various modifiers.
2992 ;; These functions -- which are not commands -- each add one modifier
2993 ;; to the following event.
2995 (defun event-apply-alt-modifier (ignore-prompt)
2996 (vector (event-apply-modifier (read-event) 'alt 22 "A-")))
2997 (defun event-apply-super-modifier (ignore-prompt)
2998 (vector (event-apply-modifier (read-event) 'super 23 "s-")))
2999 (defun event-apply-hyper-modifier (ignore-prompt)
3000 (vector (event-apply-modifier (read-event) 'hyper 24 "H-")))
3001 (defun event-apply-shift-modifier (ignore-prompt)
3002 (vector (event-apply-modifier (read-event) 'shift 25 "S-")))
3003 (defun event-apply-control-modifier (ignore-prompt)
3004 (vector (event-apply-modifier (read-event) 'control 26 "C-")))
3005 (defun event-apply-meta-modifier (ignore-prompt)
3006 (vector (event-apply-modifier (read-event) 'meta 27 "M-")))
3008 (defun event-apply-modifier (event symbol lshiftby prefix)
3009 "Apply a modifier flag to event EVENT.
3010 SYMBOL is the name of this modifier, as a symbol.
3011 LSHIFTBY is the numeric value of this modifier, in keyboard events.
3012 PREFIX is the string that represents this modifier in an event type symbol."
3013 (if (numberp event)
3014 (cond ((eq symbol 'control)
3015 (if (and (<= (downcase event) ?z)
3016 (>= (downcase event) ?a))
3017 (- (downcase event) ?a -1)
3018 (if (and (<= (downcase event) ?Z)
3019 (>= (downcase event) ?A))
3020 (- (downcase event) ?A -1)
3021 (logior (lsh 1 lshiftby) event))))
3022 ((eq symbol 'shift)
3023 (if (and (<= (downcase event) ?z)
3024 (>= (downcase event) ?a))
3025 (upcase event)
3026 (logior (lsh 1 lshiftby) event)))
3028 (logior (lsh 1 lshiftby) event)))
3029 (if (memq symbol (event-modifiers event))
3030 event
3031 (let ((event-type (if (symbolp event) event (car event))))
3032 (setq event-type (intern (concat prefix (symbol-name event-type))))
3033 (if (symbolp event)
3034 event-type
3035 (cons event-type (cdr event)))))))
3037 (define-key function-key-map [?\C-x ?@ ?h] 'event-apply-hyper-modifier)
3038 (define-key function-key-map [?\C-x ?@ ?s] 'event-apply-super-modifier)
3039 (define-key function-key-map [?\C-x ?@ ?m] 'event-apply-meta-modifier)
3040 (define-key function-key-map [?\C-x ?@ ?a] 'event-apply-alt-modifier)
3041 (define-key function-key-map [?\C-x ?@ ?S] 'event-apply-shift-modifier)
3042 (define-key function-key-map [?\C-x ?@ ?c] 'event-apply-control-modifier)
3044 ;;;; Keypad support.
3046 ;;; Make the keypad keys act like ordinary typing keys. If people add
3047 ;;; bindings for the function key symbols, then those bindings will
3048 ;;; override these, so this shouldn't interfere with any existing
3049 ;;; bindings.
3051 ;; Also tell read-char how to handle these keys.
3052 (mapcar
3053 (lambda (keypad-normal)
3054 (let ((keypad (nth 0 keypad-normal))
3055 (normal (nth 1 keypad-normal)))
3056 (put keypad 'ascii-character normal)
3057 (define-key function-key-map (vector keypad) (vector normal))))
3058 '((kp-0 ?0) (kp-1 ?1) (kp-2 ?2) (kp-3 ?3) (kp-4 ?4)
3059 (kp-5 ?5) (kp-6 ?6) (kp-7 ?7) (kp-8 ?8) (kp-9 ?9)
3060 (kp-space ?\ )
3061 (kp-tab ?\t)
3062 (kp-enter ?\r)
3063 (kp-multiply ?*)
3064 (kp-add ?+)
3065 (kp-separator ?,)
3066 (kp-subtract ?-)
3067 (kp-decimal ?.)
3068 (kp-divide ?/)
3069 (kp-equal ?=)))
3071 ;;; simple.el ends here