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