diff options
| -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))) |