diff options
| author | Juanma Barranquero | 2008-02-14 14:37:00 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2008-02-14 14:37:00 +0000 |
| commit | a8049a30d55310baa45f5fd0dfd0d3937dd31b00 (patch) | |
| tree | ad771b57f9aeabb9721a0501fe87e927dcdbb43f /lisp/ChangeLog | |
| parent | 20c4d633d37bfe4f7ad1295d9dc09e78b4936bb9 (diff) | |
| download | emacs-a8049a30d55310baa45f5fd0dfd0d3937dd31b00.tar.gz emacs-a8049a30d55310baa45f5fd0dfd0d3937dd31b00.zip | |
(uniquify-managed): Don't defvar.
(desktop-buffer-info): Use `uniquify-buffer-base-name', not `uniquify-managed'.
Return also the buffer's base name.
(desktop-save): When saving the buffer info, filter out the base name, and save
it as buffer name if the buffer is managed by uniquify.
(uniquify-item-base): Don't declare; not called anymore.
Diffstat (limited to 'lisp/ChangeLog')
| -rw-r--r-- | lisp/ChangeLog | 27 |
1 files changed, 19 insertions, 8 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index ad72539dede..339ebb67ceb 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,15 @@ | |||
| 1 | 2008-02-14 Juanma Barranquero <lekktu@gmail.com> | ||
| 2 | |||
| 3 | * uniquify.el (uniquify-buffer-base-name): New function. | ||
| 4 | Suggested by Stefan Monnier <monnier@iro.umontreal.ca>. | ||
| 5 | |||
| 6 | * desktop.el (uniquify-managed): Don't defvar. | ||
| 7 | (desktop-buffer-info): Use `uniquify-buffer-base-name', not | ||
| 8 | `uniquify-managed'. Return also the buffer's base name. | ||
| 9 | (desktop-save): When saving the buffer info, filter out the base name, | ||
| 10 | and save it as buffer name if the buffer is managed by uniquify. | ||
| 11 | (uniquify-item-base): Don't declare; not called anymore. | ||
| 12 | |||
| 1 | 2008-02-14 Dan Nicolaescu <dann@ics.uci.edu> | 13 | 2008-02-14 Dan Nicolaescu <dann@ics.uci.edu> |
| 2 | 14 | ||
| 3 | * vc.el (vc-annotate-find-revision-at-line): New function. | 15 | * vc.el (vc-annotate-find-revision-at-line): New function. |
| @@ -13,7 +25,7 @@ | |||
| 13 | * Makefile.in (custom-deps, finder-data, autoloads, recompile): | 25 | * Makefile.in (custom-deps, finder-data, autoloads, recompile): |
| 14 | Remove `LC_ALL=C', since it's included in $(emacs) now. | 26 | Remove `LC_ALL=C', since it's included in $(emacs) now. |
| 15 | 27 | ||
| 16 | 2008-02-14 Zhang Wei <id.brep@gmail.com> | 28 | 2008-02-14 Zhang Wei <id.brep@gmail.com> |
| 17 | 29 | ||
| 18 | * textmodes/org-publish.el (org-publish-timestamp-filename): | 30 | * textmodes/org-publish.el (org-publish-timestamp-filename): |
| 19 | Replace colon characters in filename too. | 31 | Replace colon characters in filename too. |
| @@ -31,19 +43,18 @@ | |||
| 31 | 43 | ||
| 32 | 2008-02-14 Mark A. Hershberger <mah@everybody.org> | 44 | 2008-02-14 Mark A. Hershberger <mah@everybody.org> |
| 33 | 45 | ||
| 34 | * progmodes/flymake.el (flymake-allowed-file-name-masks): Add | 46 | * progmodes/flymake.el (flymake-allowed-file-name-masks): |
| 35 | support for .pm files and .php files. | 47 | Add support for .pm files and .php files. |
| 36 | (flymake-err-line-patterns): Add pattern for PHP errors. | 48 | (flymake-err-line-patterns): Add pattern for PHP errors. |
| 37 | (flymake-php-init): New function. PHP support for flymake. | 49 | (flymake-php-init): New function. PHP support for flymake. |
| 38 | 50 | ||
| 39 | * progmodes/compile.el (compilation-error-regexp-alist-alist): Add | 51 | * progmodes/compile.el (compilation-error-regexp-alist-alist): |
| 40 | regular expression for PHP errors. | 52 | Add regular expression for PHP errors. |
| 41 | |||
| 42 | 53 | ||
| 43 | 2008-02-13 Michael Albinus <michael.albinus@gmx.de> | 54 | 2008-02-13 Michael Albinus <michael.albinus@gmx.de> |
| 44 | 55 | ||
| 45 | * net/ange-ftp.el (ange-ftp-quote-string): Use | 56 | * net/ange-ftp.el (ange-ftp-quote-string): Use `shell-quote-argument'. |
| 46 | `shell-quote-argument'. This DTRT even on w32 machines. | 57 | This DTRT even on w32 machines. |
| 47 | (ange-ftp-cf1): Quote FILENAME. | 58 | (ange-ftp-cf1): Quote FILENAME. |
| 48 | 59 | ||
| 49 | 2008-02-13 Stefan Monnier <monnier@iro.umontreal.ca> | 60 | 2008-02-13 Stefan Monnier <monnier@iro.umontreal.ca> |