From 7226605688fe5c5da765c0fed6bf58c103ae58bc Mon Sep 17 00:00:00 2001 From: Juri Linkov Date: Sun, 18 Apr 2004 22:12:23 +0000 Subject: [PATCH] (help-with-tutorial): Call `hack-local-variables' to put into effect local variables from TUTORIAL files. --- lisp/ChangeLog | 16 ++++++++++++++++ lisp/help-fns.el | 1 + 2 files changed, 17 insertions(+) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 513c24e28d9..c11e703ff7b 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -18,6 +18,22 @@ * international/mule-diag.el (list-input-methods): Fix args to help-xref-button. + * help-fns.el (help-with-tutorial): Call `hack-local-variables' + to put into effect local variables from TUTORIAL files. + + * textmodes/paragraphs.el (sentence-end) : New fun + with default value taken from the variable `sentence-end'. + (sentence-end) : Set default to nil. Doc fix. + Add nil const to :type. + (sentence-end-without-period, sentence-end-double-space) + (sentence-end-without-space): Doc fix. + + * textmodes/paragraphs.el (forward-sentence): + * textmodes/fill.el (canonically-space-region, fill-nobreak-p) + (fill-delete-newlines): + * progmodes/cc-cmds.el (c-beginning-of-statement): Use + function `sentence-end' instead of variable `sentence-end'. + 2004-04-18 Andreas Schwab * progmodes/compile.el (compilation-start): Set window start to diff --git a/lisp/help-fns.el b/lisp/help-fns.el index ab76b5eb232..000b8cb5e16 100644 --- a/lisp/help-fns.el +++ b/lisp/help-fns.el @@ -63,6 +63,7 @@ With ARG, you are asked to choose which language." (setq default-directory (expand-file-name "~/")) (setq buffer-auto-save-file-name nil) (insert-file-contents (expand-file-name filename data-directory)) + (hack-local-variables) (goto-char (point-min)) (search-forward "\n<<") (beginning-of-line) -- 2.39.2