Changeset 4079 for trunk/lisp/help-fns.el
- Timestamp:
- 05/13/06 11:31:18 (3 years ago)
- Files:
-
- trunk/lisp/help-fns.el (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/lisp/help-fns.el
r4073 r4079 643 643 (format "use `%s' instead." (car obsolete)))) 644 644 (terpri)) 645 (when safe-var 646 (princ "This variable is safe to use as a file local variable") 647 (princ (format " only if its value\nsatisfies the predicate `%s'.\n" 648 safe-var)) 645 (when safe-var 646 (princ "This variable is safe as a file local variable ") 647 (princ "if its value\nsatisfies the predicate ") 648 (princ (if (byte-code-function-p safe-var) 649 "which is byte-compiled expression.\n" 650 (format "`%s'.\n" safe-var))) 649 651 (terpri)) 650 652 (princ "Documentation:\n")
