emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] trunk r115288: * lisp/electric.el (electric-indent-mode):


From: Stefan Monnier
Subject: [Emacs-diffs] trunk r115288: * lisp/electric.el (electric-indent-mode): Enable by default.
Date: Fri, 29 Nov 2013 17:59:45 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 115288
revision-id: address@hidden
parent: address@hidden
committer: Stefan Monnier <address@hidden>
branch nick: trunk
timestamp: Fri 2013-11-29 12:59:38 -0500
message:
  * lisp/electric.el (electric-indent-mode): Enable by default.
  * lisp/loadup.el: Preload "electric".
  * src/lisp.mk (lisp): Add electric.elc.
modified:
  etc/NEWS                       news-20100311060928-aoit31wvzf25yr1z-1
  lisp/ChangeLog                 changelog-20091113204419-o5vbwnq5f7feedwu-1432
  lisp/electric.el               electric.el-20091113204419-o5vbwnq5f7feedwu-47
  lisp/loadup.el                 loadup.el-20091113204419-o5vbwnq5f7feedwu-49
  src/ChangeLog                  changelog-20091113204419-o5vbwnq5f7feedwu-1438
  src/lisp.mk                    lisp.mk-20110520003707-7eka49p37u9mards-1
=== modified file 'etc/NEWS'
--- a/etc/NEWS  2013-11-29 16:51:44 +0000
+++ b/etc/NEWS  2013-11-29 17:59:38 +0000
@@ -203,6 +203,8 @@
 
 * Editing Changes in Emacs 24.4
 
+** `electric-indent-mode' is enabled by default.
+
 ** Command `rectangle-mark-mode' bound to C-x SPC makes a rectangular region.
 Most commands are still unaware of it, but kill/yank do work on the rectangle.
 

=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2013-11-29 16:51:44 +0000
+++ b/lisp/ChangeLog    2013-11-29 17:59:38 +0000
@@ -1,3 +1,8 @@
+2013-11-29  Stefan Monnier  <address@hidden>
+
+       * electric.el (electric-indent-mode): Enable by default.
+       * loadup.el: Preload "electric".
+
 2013-11-29  Bozhidar Batsov  <address@hidden>
 
        * emacs-lisp/helpers.el (string-empty-p): New function.

=== modified file 'lisp/electric.el'
--- a/lisp/electric.el  2013-11-18 02:01:34 +0000
+++ b/lisp/electric.el  2013-11-29 17:59:38 +0000
@@ -284,6 +284,8 @@
 the hook `electric-indent-functions' returns non-nil, or you
 insert a character from `electric-indent-chars'."
   :global t :group 'electricity
+  :initialize 'custom-initialize-delay
+  :init-value t
   (if (not electric-indent-mode)
       (progn
         (when (eq (lookup-key global-map [?\C-j])

=== modified file 'lisp/loadup.el'
--- a/lisp/loadup.el    2013-11-27 08:21:19 +0000
+++ b/lisp/loadup.el    2013-11-29 17:59:38 +0000
@@ -280,6 +280,7 @@
 
 (load "vc/vc-hooks")
 (load "vc/ediff-hook")
+(load "electric")
 (if (not (eq system-type 'ms-dos)) (load "tooltip"))
 
 ;; This file doesn't exist when building a development version of Emacs

=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2013-11-29 11:01:45 +0000
+++ b/src/ChangeLog     2013-11-29 17:59:38 +0000
@@ -1,3 +1,7 @@
+2013-11-29  Stefan Monnier  <address@hidden>
+
+       * lisp.mk (lisp): Add electric.elc.
+
 2013-11-29  Tom Seddon  <address@hidden>  (tiny change)
 
        * w32font.c (g_b_init_get_char_width_32_w): New static var.
@@ -9,6 +13,8 @@
        punishing raster (a.k.a. "bitmap") fonts by slowing down
        redisplay.  (Bug#6364).
 
+2013-11-29  Eli Zaretskii  <address@hidden>
+
        * xdisp.c (clear_mouse_face): Don't invalidate the entire
        mouse-highlight info, just signal frame_up_to_date_hook that mouse
        highlight needs to be redisplayed.  (Bug#15913)

=== modified file 'src/lisp.mk'
--- a/src/lisp.mk       2013-09-12 16:05:12 +0000
+++ b/src/lisp.mk       2013-11-29 17:59:38 +0000
@@ -164,6 +164,7 @@
        $(lispsource)/emacs-lisp/float-sup.elc \
        $(lispsource)/vc/vc-hooks.elc \
        $(lispsource)/vc/ediff-hook.elc \
+       $(lispsource)/electric.elc \
        $(lispsource)/tooltip.elc
 
 


reply via email to

[Prev in Thread] Current Thread [Next in Thread]