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