diff options
| author | Tom Willemse | 2014-09-21 18:07:26 -0400 |
|---|---|---|
| committer | Stefan Monnier | 2014-09-21 18:07:26 -0400 |
| commit | f5fafeef5daa3d5e30c613b45860d81f69783f0e (patch) | |
| tree | 6eded6f3b4c43d69e0dcc65f2df26c556d3d81af | |
| parent | 40aef3780404fa6ecfd97f9d0c9abc4bcf99c5f8 (diff) | |
| download | emacs-f5fafeef5daa3d5e30c613b45860d81f69783f0e.tar.gz emacs-f5fafeef5daa3d5e30c613b45860d81f69783f0e.zip | |
* lisp/progmodes/prog-mode.el (prog-mode-hook): Replace reference to
Text mode in docstring.
Fixes: debbugs:18464
| -rw-r--r-- | lisp/ChangeLog | 8 | ||||
| -rw-r--r-- | lisp/progmodes/prog-mode.el | 2 |
2 files changed, 7 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index e726990cacf..6fdc2d08718 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2014-09-17 Tom Willemse <tom@ryuslash.org> (tiny change) | ||
| 2 | |||
| 3 | * progmodes/prog-mode.el (prog-mode-hook): Replace reference to | ||
| 4 | Text mode in docstring (bug#18464). | ||
| 5 | |||
| 1 | 2014-09-21 Stefan Monnier <monnier@iro.umontreal.ca> | 6 | 2014-09-21 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 7 | ||
| 3 | * progmodes/perl-mode.el (perl-syntax-propertize-function): | 8 | * progmodes/perl-mode.el (perl-syntax-propertize-function): |
| @@ -41,8 +46,7 @@ | |||
| 41 | 46 | ||
| 42 | * image-mode.el (image-toggle-display-image): If we have a | 47 | * image-mode.el (image-toggle-display-image): If we have a |
| 43 | `fit-width' or a `fit-height', don't limit the size of the image | 48 | `fit-width' or a `fit-height', don't limit the size of the image |
| 44 | to the window size, because that doesn't preserve the aspect | 49 | to the window size, because that doesn't preserve the aspect ratio. |
| 45 | ratio. | ||
| 46 | * image-mode.el: Move defvars earlier to avoid a byte-compilation | 50 | * image-mode.el: Move defvars earlier to avoid a byte-compilation |
| 47 | warning. | 51 | warning. |
| 48 | 52 | ||
diff --git a/lisp/progmodes/prog-mode.el b/lisp/progmodes/prog-mode.el index 747e63f9237..5037020f94e 100644 --- a/lisp/progmodes/prog-mode.el +++ b/lisp/progmodes/prog-mode.el | |||
| @@ -36,7 +36,7 @@ | |||
| 36 | :group 'languages) | 36 | :group 'languages) |
| 37 | 37 | ||
| 38 | (defcustom prog-mode-hook nil | 38 | (defcustom prog-mode-hook nil |
| 39 | "Normal hook run when entering Text mode and many related modes." | 39 | "Normal hook run when entering programming modes." |
| 40 | :type 'hook | 40 | :type 'hook |
| 41 | :options '(flyspell-prog-mode abbrev-mode flymake-mode linum-mode | 41 | :options '(flyspell-prog-mode abbrev-mode flymake-mode linum-mode |
| 42 | prettify-symbols-mode) | 42 | prettify-symbols-mode) |