diff options
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/help-fns.el | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index a8bf45b6f90..2319aa87f29 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2012-09-11 Bastien Guerry <bzg@gnu.org> | ||
| 2 | |||
| 3 | * help-fns.el (describe-variable): Fix typo. | ||
| 4 | |||
| 1 | 2012-09-10 Michael R. Mauger <mmaug@yahoo.com> | 5 | 2012-09-10 Michael R. Mauger <mmaug@yahoo.com> |
| 2 | 6 | ||
| 3 | * progmodes/sql.el: Version 3.1 | 7 | * progmodes/sql.el: Version 3.1 |
diff --git a/lisp/help-fns.el b/lisp/help-fns.el index 5791f1225c1..fa0484ff4e5 100644 --- a/lisp/help-fns.el +++ b/lisp/help-fns.el | |||
| @@ -936,7 +936,7 @@ file-local variable.\n") | |||
| 936 | (princ " This variable is safe as a file local variable ") | 936 | (princ " This variable is safe as a file local variable ") |
| 937 | (princ "if its value\n satisfies the predicate ") | 937 | (princ "if its value\n satisfies the predicate ") |
| 938 | (princ (if (byte-code-function-p safe-var) | 938 | (princ (if (byte-code-function-p safe-var) |
| 939 | "which is byte-compiled expression.\n" | 939 | "which is a byte-compiled expression.\n" |
| 940 | (format "`%s'.\n" safe-var)))) | 940 | (format "`%s'.\n" safe-var)))) |
| 941 | 941 | ||
| 942 | (if extra-line (terpri)) | 942 | (if extra-line (terpri)) |