diff options
| author | Richard M. Stallman | 1991-03-06 18:30:37 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1991-03-06 18:30:37 +0000 |
| commit | 8a1281b563c9075c0f9dea99501c8149871eb09b (patch) | |
| tree | 66a2487d9b797cfc088d6bd2633d9023aa316e3b | |
| parent | 92423534d9bc9424a772845847f55e6472e22daa (diff) | |
| download | emacs-8a1281b563c9075c0f9dea99501c8149871eb09b.tar.gz emacs-8a1281b563c9075c0f9dea99501c8149871eb09b.zip | |
*** empty log message ***
| -rw-r--r-- | lisp/emacs-lisp/helper.el | 4 | ||||
| -rw-r--r-- | lisp/gosmacs.el | 4 | ||||
| -rw-r--r-- | lisp/hexl.el | 12 |
3 files changed, 10 insertions, 10 deletions
diff --git a/lisp/emacs-lisp/helper.el b/lisp/emacs-lisp/helper.el index aa7253eab6c..233196b5973 100644 --- a/lisp/emacs-lisp/helper.el +++ b/lisp/emacs-lisp/helper.el | |||
| @@ -87,13 +87,13 @@ | |||
| 87 | (sit-for 4)) | 87 | (sit-for 4)) |
| 88 | 88 | ||
| 89 | (defun Helper-describe-key-briefly (key) | 89 | (defun Helper-describe-key-briefly (key) |
| 90 | "Briefly describe binding of KEYS." | 90 | "Briefly describe binding of KEY." |
| 91 | (interactive "kDescribe key briefly: ") | 91 | (interactive "kDescribe key briefly: ") |
| 92 | (describe-key-briefly key) | 92 | (describe-key-briefly key) |
| 93 | (sit-for 4)) | 93 | (sit-for 4)) |
| 94 | 94 | ||
| 95 | (defun Helper-describe-key (key) | 95 | (defun Helper-describe-key (key) |
| 96 | "Describe binding of KEYS." | 96 | "Describe binding of KEY." |
| 97 | (interactive "kDescribe key: ") | 97 | (interactive "kDescribe key: ") |
| 98 | (save-window-excursion (describe-key key)) | 98 | (save-window-excursion (describe-key key)) |
| 99 | (Helper-help-scroller)) | 99 | (Helper-help-scroller)) |
diff --git a/lisp/gosmacs.el b/lisp/gosmacs.el index 5ea2697eeb1..98f6368f0a8 100644 --- a/lisp/gosmacs.el +++ b/lisp/gosmacs.el | |||
| @@ -56,8 +56,8 @@ Use \\[set-gnu-bindings] to restore previous global bindings." | |||
| 56 | 56 | ||
| 57 | (defun rebind-and-record (bindings) | 57 | (defun rebind-and-record (bindings) |
| 58 | "Establish many new global bindings and record the bindings replaced. | 58 | "Establish many new global bindings and record the bindings replaced. |
| 59 | Arg is an alist whose elements are (KEY DEFINITION). | 59 | Arg BINDINGS is an alist whose elements are (KEY DEFINITION). |
| 60 | Value is a similar alist whose elements describe the same KEYs | 60 | Returns a similar alist whose elements describe the same KEYs |
| 61 | but each with the old definition that was replaced," | 61 | but each with the old definition that was replaced," |
| 62 | (let (old) | 62 | (let (old) |
| 63 | (while bindings | 63 | (while bindings |
diff --git a/lisp/hexl.el b/lisp/hexl.el index 3a7498c8317..0941fe4032c 100644 --- a/lisp/hexl.el +++ b/lisp/hexl.el | |||
| @@ -42,9 +42,9 @@ | |||
| 42 | ;; | 42 | ;; |
| 43 | 43 | ||
| 44 | (defvar hexl-program "hexl" | 44 | (defvar hexl-program "hexl" |
| 45 | "The program that will hexlify and de-hexlify its stdin. hexl-program | 45 | "The program that will hexlify and de-hexlify its stdin. |
| 46 | will always be concated with hexl-options and "-de" when dehexlfying a | 46 | `hexl-program' will always be concated with `hexl-options' |
| 47 | buffer.") | 47 | and \"-de\" when dehexlfying a buffer.") |
| 48 | 48 | ||
| 49 | (defvar hexl-iso "" | 49 | (defvar hexl-iso "" |
| 50 | "If your emacs can handle ISO characters, this should be set to | 50 | "If your emacs can handle ISO characters, this should be set to |
| @@ -75,7 +75,7 @@ A major mode for editting binary files in hex dump format. | |||
| 75 | This function automatically converts a buffer into the hexl format | 75 | This function automatically converts a buffer into the hexl format |
| 76 | using the function `hexlify-buffer'. | 76 | using the function `hexlify-buffer'. |
| 77 | 77 | ||
| 78 | Each line in the buffer has an `address' (displayed in hexadecimal) | 78 | Each line in the buffer has an \"address\" (displayed in hexadecimal) |
| 79 | representing the offset into the file that the characters on this line | 79 | representing the offset into the file that the characters on this line |
| 80 | are at and 16 characters from the file (displayed as hexadecimal | 80 | are at and 16 characters from the file (displayed as hexadecimal |
| 81 | values grouped every 16 bits) and as their ASCII values. | 81 | values grouped every 16 bits) and as their ASCII values. |
| @@ -84,8 +84,8 @@ If any of the characters (displayed as ASCII characters) are | |||
| 84 | unprintable (control or meta characters) they will be replaced as | 84 | unprintable (control or meta characters) they will be replaced as |
| 85 | periods. | 85 | periods. |
| 86 | 86 | ||
| 87 | If hexl-mode is invoked with an argument the buffer is assumed to be | 87 | If `hexl-mode' is invoked with an argument the buffer is assumed to be |
| 88 | in hexl-format. | 88 | in hexl format. |
| 89 | 89 | ||
| 90 | A sample format: | 90 | A sample format: |
| 91 | 91 | ||