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