diff options
| author | Joakim Verona | 2013-03-03 00:04:18 +0100 |
|---|---|---|
| committer | Joakim Verona | 2013-03-03 00:04:18 +0100 |
| commit | 85c8b5aba5b1a2b3e2a54c58838f091094610279 (patch) | |
| tree | 93876099fc0c583e9284b15b7bdb38e623327884 /etc | |
| parent | c98de16bf81f9a8b9e6296bf0063abda9e95fd68 (diff) | |
| parent | 2db41375423b6a48a55df2c5922bb2813319f06f (diff) | |
| download | emacs-85c8b5aba5b1a2b3e2a54c58838f091094610279.tar.gz emacs-85c8b5aba5b1a2b3e2a54c58838f091094610279.zip | |
auto upstream
Diffstat (limited to 'etc')
| -rw-r--r-- | etc/ChangeLog | 4 | ||||
| -rw-r--r-- | etc/NEWS | 35 |
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 @@ | |||
| 1 | 2013-03-02 Paul Eggert <eggert@cs.ucla.edu> | ||
| 2 | |||
| 3 | * NEWS: The lock for FILE is now .#FILE or .#-FILE (Bug#13807). | ||
| 4 | |||
| 1 | 2013-03-01 Michael Albinus <michael.albinus@gmx.de> | 5 | 2013-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 |
| @@ -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 |
| 321 | and redirect them to your own function instead of `fset'. | 321 | and redirect them to your own function instead of `fset'. |
| 322 | 322 | ||
| 323 | ** The lock for 'DIR/FILE' is now 'DIR/.#FILE' or 'DIR/.#-FILE'. | ||
| 324 | When you edit DIR/FILE, Emacs normally creates a symbolic link | ||
| 325 | DIR/.#FILE as a lock that warns other instances of Emacs that DIR/FILE | ||
| 326 | is being edited. Formerly, if there was already a non-symlink file | ||
| 327 | named DIR/.#FILE, Emacs fell back on the lock names DIR/.#FILE.0 | ||
| 328 | through DIR/.#FILE.9. These fallbacks have been removed, so that | ||
| 329 | Emacs now no longer locks DIR/FILE in that case. | ||
| 330 | |||
| 331 | On MS-Windows the lock is a regular file DIR/.#-FILE, not a symlink. | ||
| 332 | MS-Windows and non-MS-Windows implementations of Emacs ignore each | ||
| 333 | other'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. |
| 324 | Formerly, it was t if the file's gid would change if file were deleted | 336 | Formerly, it was t if the file's gid would change if file were deleted |
| 325 | and recreated. This value has been inaccurate for years on many | 337 | and 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 | ||
| 798 | in method calls without parentheses with more methods, including Cucumber | ||
| 799 | steps 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 | ||
| 812 | appropriate settings for the variables `beginning-of-defun-function' | ||
| 813 | and `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. |