aboutsummaryrefslogtreecommitdiffstats
path: root/etc
diff options
context:
space:
mode:
authorJoakim Verona2013-03-03 00:04:18 +0100
committerJoakim Verona2013-03-03 00:04:18 +0100
commit85c8b5aba5b1a2b3e2a54c58838f091094610279 (patch)
tree93876099fc0c583e9284b15b7bdb38e623327884 /etc
parentc98de16bf81f9a8b9e6296bf0063abda9e95fd68 (diff)
parent2db41375423b6a48a55df2c5922bb2813319f06f (diff)
downloademacs-85c8b5aba5b1a2b3e2a54c58838f091094610279.tar.gz
emacs-85c8b5aba5b1a2b3e2a54c58838f091094610279.zip
auto upstream
Diffstat (limited to 'etc')
-rw-r--r--etc/ChangeLog4
-rw-r--r--etc/NEWS35
2 files changed, 39 insertions, 0 deletions
diff --git a/etc/ChangeLog b/etc/ChangeLog
index a13ab60be36..7ebb2a751ab 100644
--- a/etc/ChangeLog
+++ b/etc/ChangeLog
@@ -1,3 +1,7 @@
12013-03-02 Paul Eggert <eggert@cs.ucla.edu>
2
3 * NEWS: The lock for FILE is now .#FILE or .#-FILE (Bug#13807).
4
12013-03-01 Michael Albinus <michael.albinus@gmx.de> 52013-03-01 Michael Albinus <michael.albinus@gmx.de>
2 6
3 * NEWS: Fix Tramp "adb" entry. Extend list of discontinued Tramp 7 * NEWS: Fix Tramp "adb" entry. Extend list of discontinued Tramp
diff --git a/etc/NEWS b/etc/NEWS
index d937ae70166..73f7991823f 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -320,6 +320,18 @@ text-property on the first char.
320** The `defalias-fset-function' property lets you catch calls to defalias 320** The `defalias-fset-function' property lets you catch calls to defalias
321and redirect them to your own function instead of `fset'. 321and redirect them to your own function instead of `fset'.
322 322
323** The lock for 'DIR/FILE' is now 'DIR/.#FILE' or 'DIR/.#-FILE'.
324When you edit DIR/FILE, Emacs normally creates a symbolic link
325DIR/.#FILE as a lock that warns other instances of Emacs that DIR/FILE
326is being edited. Formerly, if there was already a non-symlink file
327named DIR/.#FILE, Emacs fell back on the lock names DIR/.#FILE.0
328through DIR/.#FILE.9. These fallbacks have been removed, so that
329Emacs now no longer locks DIR/FILE in that case.
330
331On MS-Windows the lock is a regular file DIR/.#-FILE, not a symlink.
332MS-Windows and non-MS-Windows implementations of Emacs ignore each
333other's locks.
334
323** The 9th element returned by `file-attributes' is now unspecified. 335** The 9th element returned by `file-attributes' is now unspecified.
324Formerly, it was t if the file's gid would change if file were deleted 336Formerly, it was t if the file's gid would change if file were deleted
325and recreated. This value has been inaccurate for years on many 337and recreated. This value has been inaccurate for years on many
@@ -780,6 +792,29 @@ Sphinx support has been improved.
780 792
781*** The constant `rst-version' describes the rst.el package version. 793*** The constant `rst-version' describes the rst.el package version.
782 794
795** Ruby mode
796
797*** Support for percent literals and recognition of regular expressions
798in method calls without parentheses with more methods, including Cucumber
799steps definitions.
800
801*** Improved syntax highlighting and indentation.
802
803*** New command `ruby-toggle-block', bound to `C-c {'.
804
805*** Some non-standard keybindings/commands have been removed:
806
807**** `ruby-electric-brace'; use `electric-indent-mode' instead.
808
809**** `ruby-mark-defun'; use `mark-defun'.
810
811**** `ruby-beginning-of-defun' and `ruby-end-of-defun' are replaced by
812appropriate settings for the variables `beginning-of-defun-function'
813and `end-of-defun-function'.
814
815**** Non-standard keybindings for `backward-kill-word', `comment-region',
816`reindent-then-newline-and-indent' and `newline' have been removed.
817
783** Shell Script mode 818** Shell Script mode
784 819
785*** Pairing of parens/quotes uses `electric-pair-mode' instead of skeleton-pair. 820*** Pairing of parens/quotes uses `electric-pair-mode' instead of skeleton-pair.