diff options
| author | Juri Linkov | 2004-04-18 22:12:23 +0000 |
|---|---|---|
| committer | Juri Linkov | 2004-04-18 22:12:23 +0000 |
| commit | 7226605688fe5c5da765c0fed6bf58c103ae58bc (patch) | |
| tree | 3a7e4b4f26b614ebdf9719a2f1ec3369bc844a39 | |
| parent | 013415170769bfdd87ee314cea40fa8cc09b4b99 (diff) | |
| download | emacs-7226605688fe5c5da765c0fed6bf58c103ae58bc.tar.gz emacs-7226605688fe5c5da765c0fed6bf58c103ae58bc.zip | |
(help-with-tutorial): Call `hack-local-variables'
to put into effect local variables from TUTORIAL files.
| -rw-r--r-- | lisp/ChangeLog | 16 | ||||
| -rw-r--r-- | lisp/help-fns.el | 1 |
2 files changed, 17 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 513c24e28d9..c11e703ff7b 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -18,6 +18,22 @@ | |||
| 18 | * international/mule-diag.el (list-input-methods): | 18 | * international/mule-diag.el (list-input-methods): |
| 19 | Fix args to help-xref-button. | 19 | Fix args to help-xref-button. |
| 20 | 20 | ||
| 21 | * help-fns.el (help-with-tutorial): Call `hack-local-variables' | ||
| 22 | to put into effect local variables from TUTORIAL files. | ||
| 23 | |||
| 24 | * textmodes/paragraphs.el (sentence-end) <function>: New fun | ||
| 25 | with default value taken from the variable `sentence-end'. | ||
| 26 | (sentence-end) <defcustom>: Set default to nil. Doc fix. | ||
| 27 | Add nil const to :type. | ||
| 28 | (sentence-end-without-period, sentence-end-double-space) | ||
| 29 | (sentence-end-without-space): Doc fix. | ||
| 30 | |||
| 31 | * textmodes/paragraphs.el (forward-sentence): | ||
| 32 | * textmodes/fill.el (canonically-space-region, fill-nobreak-p) | ||
| 33 | (fill-delete-newlines): | ||
| 34 | * progmodes/cc-cmds.el (c-beginning-of-statement): Use | ||
| 35 | function `sentence-end' instead of variable `sentence-end'. | ||
| 36 | |||
| 21 | 2004-04-18 Andreas Schwab <schwab@suse.de> | 37 | 2004-04-18 Andreas Schwab <schwab@suse.de> |
| 22 | 38 | ||
| 23 | * progmodes/compile.el (compilation-start): Set window start to | 39 | * 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." | |||
| 63 | (setq default-directory (expand-file-name "~/")) | 63 | (setq default-directory (expand-file-name "~/")) |
| 64 | (setq buffer-auto-save-file-name nil) | 64 | (setq buffer-auto-save-file-name nil) |
| 65 | (insert-file-contents (expand-file-name filename data-directory)) | 65 | (insert-file-contents (expand-file-name filename data-directory)) |
| 66 | (hack-local-variables) | ||
| 66 | (goto-char (point-min)) | 67 | (goto-char (point-min)) |
| 67 | (search-forward "\n<<") | 68 | (search-forward "\n<<") |
| 68 | (beginning-of-line) | 69 | (beginning-of-line) |