comparison etc/OTHER.EMACSES @ 49600:23a1cea22d13

Trailing whitespace deleted.
author Juanma Barranquero <lekktu@gmail.com>
date Tue, 04 Feb 2003 14:56:31 +0000
parents e96ffe544684
children 695cf19ef79e
comparison
equal deleted inserted replaced
49599:5ade352e8d1c 49600:23a1cea22d13
494 yank-rectangle 494 yank-rectangle
495 inserts the text of the last killed rectangle. 495 inserts the text of the last killed rectangle.
496 extract-rectangle and delete-extract-rectangle 496 extract-rectangle and delete-extract-rectangle
497 these functions return the text of a rectangle 497 these functions return the text of a rectangle
498 as a list of strings. They are for use in writing 498 as a list of strings. They are for use in writing
499 other functions that operate on rectangles. 499 other functions that operate on rectangles.
500 500
501 *** Keyboard Macros 501 *** Keyboard Macros
502 502
503 The C-x ( command for defining a keyboard macro can in GNU Emacs 503 The C-x ( command for defining a keyboard macro can in GNU Emacs
504 be given a numeric argument, which means that the new macro 504 be given a numeric argument, which means that the new macro
901 901
902 GNU Emacs Lisp does not have a distinction between Lisp functions 902 GNU Emacs Lisp does not have a distinction between Lisp functions
903 and Emacs functions, or between Lisp variables and Emacs variables. 903 and Emacs functions, or between Lisp variables and Emacs variables.
904 The Lisp and the editor are integrated. A Lisp function defined 904 The Lisp and the editor are integrated. A Lisp function defined
905 with defun is callable as an editor command if you put an 905 with defun is callable as an editor command if you put an
906 interactive calling spec in it; for example, 906 interactive calling spec in it; for example,
907 (defun forward-character (n) 907 (defun forward-character (n)
908 (interactive "p") 908 (interactive "p")
909 (goto-char (+ (point) n))) 909 (goto-char (+ (point) n)))
910 defines a function of one argument that moves point forward by 910 defines a function of one argument that moves point forward by
911 a specified number of characters. Programs could call this function, 911 a specified number of characters. Programs could call this function,