emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] trunk r116075: * etc/NEWS: Small edits


From: Glenn Morris
Subject: [Emacs-diffs] trunk r116075: * etc/NEWS: Small edits
Date: Mon, 20 Jan 2014 00:54:24 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 116075
revision-id: address@hidden
parent: address@hidden
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Sun 2014-01-19 16:54:19 -0800
message:
  * etc/NEWS: Small edits
modified:
  etc/NEWS                       news-20100311060928-aoit31wvzf25yr1z-1
=== modified file 'etc/NEWS'
--- a/etc/NEWS  2014-01-12 16:50:54 +0000
+++ b/etc/NEWS  2014-01-20 00:54:19 +0000
@@ -62,10 +62,6 @@
 To use the old backend by default, do on the command line:
 % defaults write org.gnu.Emacs FontBackend ns
 
-** If your Emacs was built from a repository checkout, the new variable
-`emacs-repository-version' contains information about the bzr revision used.
-In 24.3 this variable was `emacs-bzr-version`.
-
 
 * Startup Changes in Emacs 24.4
 
@@ -256,6 +252,10 @@
 which one to load, then the newer file is loaded.  The default, nil,
 means to always load the .elc file.
 
+---
+** `emacs-bzr-version' has been renamed to `emacs-repository-version',
+and works for git too.
+
 
 * Editing Changes in Emacs 24.4
 
@@ -522,7 +522,7 @@
 ** ERC
 
 *** New option `erc-accidental-paste-threshold-seconds'.
-If set to a number, this can be used to avoid accidentally paste large
+If set to a number, this can be used to avoid accidentally pasting large
 amounts of data into the ERC input.
 
 +++
@@ -770,14 +770,13 @@
 
 ** Shell Script mode
 
-*** `sh-mode' now has the mode own `add-log-current-defun-function'.
-You can pick the name of the function and the variables with `C-x 4 a'.
+*** `sh-mode' now has its own setting for `add-log-current-defun-function'.
 
 *** The SMIE indentation engine is now used by default.
 
 ** SMIE indentation can be customized via `smie-config'.
-The customization can be guessed by Emacs by providing a sample indented
-file and letting SMIE learn from it.
+Emacs can learn the appropriate indentation settings if you provide it
+with an indented sample file.
 
 ** Term mode
 
@@ -814,7 +813,7 @@
 
 ** Tramp
 
-*** The experimental url syntax for remote file names is withdrawn.
+*** The experimental url syntax for remote file names has been removed.
 
 +++
 *** New connection method "adb", which allows to access Android
@@ -862,8 +861,10 @@
 
 ** VHDL mode
 
+---
 *** New options: `vhdl-actual-generic-name', `vhdl-beautify-options'.
 
+---
 *** New commands: `vhdl-fix-statement-region', `vhdl-fix-statement-buffer'.
 
 ** Woman
@@ -900,10 +901,9 @@
 ** New package `eww' is a built-in web browser.
 It is only available if Emacs is compiled with libxml2 support.
 
-** New minor mode `superword-mode', defined in subword.el
-`superword-mode' overrides the default word motion commands to treat
-symbol_words as a single word, similar to what `subword-mode' does and
-using the same internal functions.
+** New minor mode `superword-mode'.
+This overrides the default word motion commands to treat "symbol_words"
+as a single word, similar to what `subword-mode' does.
 
 +++
 ** New package nadvice.el offers lighter-weight advice facilities.
@@ -928,18 +928,19 @@
 * Incompatible Lisp Changes in Emacs 24.4
 
 ---
-** `kill-region' lost its `yank-handler' optional argument.
+** `kill-region' has lost its `yank-handler' optional argument.
 
 +++
-** `(input-pending-p)' no longer runs other timers which are ready to
-run.  The new optional CHECK-TIMERS param allows for the prior behavior.
+** `(input-pending-p)' no longer runs other timers that are ready to run.
+The new optional CHECK-TIMERS parameter allows for the prior behavior.
 
 +++
 ** `defvar' and `defcustom' in a let-binding affect the "external" default.
 
 ---
-** The syntax of ?» and ?« is now punctuation instead of matched parens.
-Some languages match those as »...« and others as «...» so better stay neutral.
+** The syntax of ?» and ?« is now punctuation instead of matched parens.
+Some languages match those as »...«, and others as «...», so it is
+better for Emacs to stay neutral by default.
 
 ---
 ** In compiled Lisp files, the header no longer includes a timestamp.
@@ -958,7 +959,7 @@
 whereas now it simply has higher precedence.
 
 ** Default process filters and sentinels are not nil any more.
-Instead they default to a function which does what the nil value used to do.
+Instead they default to a function that does what the nil value used to do.
 
 +++
 ** `read-event' does not return decoded chars in ttys any more.
@@ -968,11 +969,11 @@
 done before input-decode-map, function-key-map, etc.
 
 ---
-** Removed `inhibit-local-menu-bar-menus'.
+** The option `inhibit-local-menu-bar-menus' has been removed.
 
 ---
 ** Frame-local variables that affect redisplay do not work any more.
-More specifically, the redisplay does not bother to check for a frame-local
+More specifically, redisplay does not bother to check for a frame-local
 value when looking up variables.
 
 +++
@@ -1088,7 +1089,7 @@
 *** `bool-vector-count-population'
 
 +++
-** Comparison functions =, <, >, <=, >= now take many arguments.
+** Comparison functions =, <, >, <=, >= can now take many arguments.
 
 ** Error-handling changes
 
@@ -1098,7 +1099,8 @@
 *** `with-demoted-errors' takes an additional argument `format'.
 
 +++
-** New macro with-eval-after-load.  Like eval-after-load, but better behaved.
+** New macro `with-eval-after-load'.
+This is like the old `eval-after-load', but better behaved.
 
 ** New library subr-x.el for misc helper functions
 +++
@@ -1178,7 +1180,7 @@
 argument, with the same interpretation as the returned value of
 `visited-file-modtime'.
 
-** Changes in autorevert.el
+** Autorevert changes
 
 ---
 *** If Emacs is compiled with file notification support, notifications


reply via email to

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