aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--etc/NEWS2
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/electric.el2
-rw-r--r--lisp/loadup.el1
-rw-r--r--src/ChangeLog6
-rw-r--r--src/lisp.mk1
6 files changed, 17 insertions, 0 deletions
diff --git a/etc/NEWS b/etc/NEWS
index 2f9f84d8113..febc367c6d9 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -203,6 +203,8 @@ Czech typography rules. To globally enable this feature, evaluate:
203 203
204* Editing Changes in Emacs 24.4 204* Editing Changes in Emacs 24.4
205 205
206** `electric-indent-mode' is enabled by default.
207
206** Command `rectangle-mark-mode' bound to C-x SPC makes a rectangular region. 208** Command `rectangle-mark-mode' bound to C-x SPC makes a rectangular region.
207Most commands are still unaware of it, but kill/yank do work on the rectangle. 209Most commands are still unaware of it, but kill/yank do work on the rectangle.
208 210
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 4e838dd4181..8e4bd8f37e0 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12013-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * electric.el (electric-indent-mode): Enable by default.
4 * loadup.el: Preload "electric".
5
12013-11-29 Bozhidar Batsov <bozhidar@batsov.com> 62013-11-29 Bozhidar Batsov <bozhidar@batsov.com>
2 7
3 * emacs-lisp/helpers.el (string-empty-p): New function. 8 * emacs-lisp/helpers.el (string-empty-p): New function.
diff --git a/lisp/electric.el b/lisp/electric.el
index 04d0bd3e935..91b99b4bfe7 100644
--- a/lisp/electric.el
+++ b/lisp/electric.el
@@ -284,6 +284,8 @@ This is a global minor mode. When enabled, it reindents whenever
284the hook `electric-indent-functions' returns non-nil, or you 284the hook `electric-indent-functions' returns non-nil, or you
285insert a character from `electric-indent-chars'." 285insert a character from `electric-indent-chars'."
286 :global t :group 'electricity 286 :global t :group 'electricity
287 :initialize 'custom-initialize-delay
288 :init-value t
287 (if (not electric-indent-mode) 289 (if (not electric-indent-mode)
288 (progn 290 (progn
289 (when (eq (lookup-key global-map [?\C-j]) 291 (when (eq (lookup-key global-map [?\C-j])
diff --git a/lisp/loadup.el b/lisp/loadup.el
index d31f02a39ad..aececad804f 100644
--- a/lisp/loadup.el
+++ b/lisp/loadup.el
@@ -280,6 +280,7 @@
280 280
281(load "vc/vc-hooks") 281(load "vc/vc-hooks")
282(load "vc/ediff-hook") 282(load "vc/ediff-hook")
283(load "electric")
283(if (not (eq system-type 'ms-dos)) (load "tooltip")) 284(if (not (eq system-type 'ms-dos)) (load "tooltip"))
284 285
285;; This file doesn't exist when building a development version of Emacs 286;; This file doesn't exist when building a development version of Emacs
diff --git a/src/ChangeLog b/src/ChangeLog
index 668bba1e4ed..1fa027b1f5a 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12013-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * lisp.mk (lisp): Add electric.elc.
4
12013-11-29 Tom Seddon <emacs@tomseddon.plus.com> (tiny change) 52013-11-29 Tom Seddon <emacs@tomseddon.plus.com> (tiny change)
2 6
3 * w32font.c (g_b_init_get_char_width_32_w): New static var. 7 * w32font.c (g_b_init_get_char_width_32_w): New static var.
@@ -9,6 +13,8 @@
9 punishing raster (a.k.a. "bitmap") fonts by slowing down 13 punishing raster (a.k.a. "bitmap") fonts by slowing down
10 redisplay. (Bug#6364). 14 redisplay. (Bug#6364).
11 15
162013-11-29 Eli Zaretskii <eliz@gnu.org>
17
12 * xdisp.c (clear_mouse_face): Don't invalidate the entire 18 * xdisp.c (clear_mouse_face): Don't invalidate the entire
13 mouse-highlight info, just signal frame_up_to_date_hook that mouse 19 mouse-highlight info, just signal frame_up_to_date_hook that mouse
14 highlight needs to be redisplayed. (Bug#15913) 20 highlight needs to be redisplayed. (Bug#15913)
diff --git a/src/lisp.mk b/src/lisp.mk
index c12deebd893..72ada45c5e4 100644
--- a/src/lisp.mk
+++ b/src/lisp.mk
@@ -164,6 +164,7 @@ lisp = \
164 $(lispsource)/emacs-lisp/float-sup.elc \ 164 $(lispsource)/emacs-lisp/float-sup.elc \
165 $(lispsource)/vc/vc-hooks.elc \ 165 $(lispsource)/vc/vc-hooks.elc \
166 $(lispsource)/vc/ediff-hook.elc \ 166 $(lispsource)/vc/ediff-hook.elc \
167 $(lispsource)/electric.elc \
167 $(lispsource)/tooltip.elc 168 $(lispsource)/tooltip.elc
168 169
169 170