# HG changeset patch # User Juanma Barranquero # Date 1118748622 0 # Node ID 00398c07d65c5b2599d1a55ca2a12e6588fcb374 # Parent 9452fd6cf27f60e2bd9319841f5f00804406e92d (forms--intuit-from-file): Fix reference to `forms-number-of-fields' in error message. (forms-print): Fix quoting in error message. (forms-mode): Fix quoting in docstring. diff -r 9452fd6cf27f -r 00398c07d65c lisp/forms.el --- a/lisp/forms.el Tue Jun 14 11:24:08 2005 +0000 +++ b/lisp/forms.el Tue Jun 14 11:30:22 2005 +0000 @@ -550,7 +550,7 @@ (eq (length forms-multi-line) 1)) (if (string= forms-multi-line forms-field-sep) (error (concat "Forms control file error: " - "`forms-multi-line' is equal to 'forms-field-sep'"))) + "`forms-multi-line' is equal to `forms-field-sep'"))) (error (concat "Forms control file error: " "`forms-multi-line' must be nil or a one-character string")))) (or (fboundp 'set-text-properties) @@ -1207,7 +1207,7 @@ ;; Need a file to do this. (if (not (file-exists-p forms-file)) - (error "Need existing file or explicit 'forms-number-of-records'") + (error "Need existing file or explicit `forms-number-of-fields'") ;; Visit the file and extract the first record. (setq forms--file-buffer (find-file-noselect forms-file)) @@ -1983,7 +1983,7 @@ (goto-char (aref forms--markers (1- (length forms--markers))))))) (defun forms-print () - "Send the records to the printer with 'print-buffer', one record per page." + "Send the records to the printer with `print-buffer', one record per page." (interactive) (let ((inhibit-read-only t) (save-record forms--current-record)