aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog8
-rw-r--r--lisp/progmodes/prog-mode.el2
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 @@
12014-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
12014-09-21 Stefan Monnier <monnier@iro.umontreal.ca> 62014-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)