diff options
| author | Karl Heuer | 1996-01-29 23:15:25 +0000 |
|---|---|---|
| committer | Karl Heuer | 1996-01-29 23:15:25 +0000 |
| commit | 5cc7f7d64f63a0a27998443b29bcf8f864802fbd (patch) | |
| tree | 37674aff0f36045b707f4a49580a10958f718942 | |
| parent | b0b3cce2dd18d3c94ec34a1fab6ee236d7cae1bf (diff) | |
| download | emacs-5cc7f7d64f63a0a27998443b29bcf8f864802fbd.tar.gz emacs-5cc7f7d64f63a0a27998443b29bcf8f864802fbd.zip | |
(forms--process-format-list): Fix error format string.
| -rw-r--r-- | lisp/forms.el | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lisp/forms.el b/lisp/forms.el index 32a0884a19c..aa20ecd561f 100644 --- a/lisp/forms.el +++ b/lisp/forms.el | |||
| @@ -289,10 +289,10 @@ | |||
| 289 | (provide 'forms) ;;; official | 289 | (provide 'forms) ;;; official |
| 290 | (provide 'forms-mode) ;;; for compatibility | 290 | (provide 'forms-mode) ;;; for compatibility |
| 291 | 291 | ||
| 292 | (defconst forms-version (substring "$Revision: 2.26 $" 11 -2) | 292 | (defconst forms-version (substring "$Revision: 2.27 $" 11 -2) |
| 293 | "The version number of forms-mode (as string). The complete RCS id is: | 293 | "The version number of forms-mode (as string). The complete RCS id is: |
| 294 | 294 | ||
| 295 | $Id: forms.el,v 2.26 1996/01/25 00:54:17 kwzh Exp kwzh $") | 295 | $Id: forms.el,v 2.27 1996/01/25 06:16:34 kwzh Exp kwzh $") |
| 296 | 296 | ||
| 297 | (defvar forms-mode-hooks nil | 297 | (defvar forms-mode-hooks nil |
| 298 | "Hook functions to be run upon entering Forms mode.") | 298 | "Hook functions to be run upon entering Forms mode.") |
| @@ -774,8 +774,8 @@ Commands: Equivalent keys in read-only mode: | |||
| 774 | ;; Validate. | 774 | ;; Validate. |
| 775 | (or (fboundp (car-safe el)) | 775 | (or (fboundp (car-safe el)) |
| 776 | (error (concat "Forms format error: " | 776 | (error (concat "Forms format error: " |
| 777 | "not a function " | 777 | "not a function %S") |
| 778 | (prin1-to-string (car-safe el))))) | 778 | (car-safe el))) |
| 779 | 779 | ||
| 780 | ;; Shift. | 780 | ;; Shift. |
| 781 | (if prev-item | 781 | (if prev-item |
| @@ -786,8 +786,8 @@ Commands: Equivalent keys in read-only mode: | |||
| 786 | ;; else | 786 | ;; else |
| 787 | (t | 787 | (t |
| 788 | (error (concat "Forms format error: " | 788 | (error (concat "Forms format error: " |
| 789 | "invalid element " | 789 | "invalid element %S") |
| 790 | (prin1-to-string el))))) | 790 | el))) |
| 791 | 791 | ||
| 792 | ;; Advance to next element of the list. | 792 | ;; Advance to next element of the list. |
| 793 | (setq the-list rem))) | 793 | (setq the-list rem))) |