aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/ChangeLog
diff options
context:
space:
mode:
authorChong Yidong2010-07-10 15:01:01 -0400
committerChong Yidong2010-07-10 15:01:01 -0400
commit7ac1c664547ca88fd6c0ff65ef5e780b1c5efcb0 (patch)
tree301c219611060db34a983f5b7dba58cf1fa93b69 /lisp/ChangeLog
parent481044622937b001ee07a6f8c3f81c1e73ef9eaf (diff)
parent2ec1b5ee3464999a18b8197101e8bf08a3c564a8 (diff)
downloademacs-7ac1c664547ca88fd6c0ff65ef5e780b1c5efcb0.tar.gz
emacs-7ac1c664547ca88fd6c0ff65ef5e780b1c5efcb0.zip
Merge changes from emacs-23 branch.
Diffstat (limited to 'lisp/ChangeLog')
-rw-r--r--lisp/ChangeLog137
1 files changed, 137 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index f793f91a932..01ecaab86b6 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -17,6 +17,12 @@
17 (ispell-complete-word): Use ispell-complete-word-dict or 17 (ispell-complete-word): Use ispell-complete-word-dict or
18 ispell-alternate-dictionary. 18 ispell-alternate-dictionary.
19 19
202010-07-07 Christoph Scholtes <cschol2112@gmail.com>
21
22 * progmodes/python.el (python-font-lock-keywords): Add Python 2.7
23 builtins (BufferError, BytesWarning, WindowsError; callables
24 bin, bytearray, bytes, format, memoryview, next, print; __package__).
25
202010-07-07 Glenn Morris <rgm@gnu.org> 262010-07-07 Glenn Morris <rgm@gnu.org>
21 27
22 * play/zone.el (top-level): Do not require timer, tabify, or cl. 28 * play/zone.el (top-level): Do not require timer, tabify, or cl.
@@ -207,6 +213,75 @@
207 213
2082010-06-21 Karl Fogel <kfogel@red-bean.com> 2142010-06-21 Karl Fogel <kfogel@red-bean.com>
209 215
216 * play/zone.el (zone-fall-through-ws): Fix next-line ->
217 forward-line fallout.
218
2192010-07-06 Chong Yidong <cyd@stupidchicken.com>
220
221 * mouse.el (mouse-appearance-menu): Add docstring.
222
223 * help.el (describe-key): Print up-event using key-description.
224
2252010-07-03 Michael Albinus <michael.albinus@gmx.de>
226
227 * net/zeroconf.el (zeroconf-resolve-service)
228 (zeroconf-service-resolver-handler): Use
229 `dbus-byte-array-to-string'.
230 (zeroconf-publish-service): Use `dbus-string-to-byte-array'.
231
2322010-07-03 Jan Moringen <jan.moringen@uni-bielefeld.de>
233
234 * net/zeroconf.el (zeroconf-service-remove-hook): New defun.
235
2362010-06-30 Dan Nicolaescu <dann@ics.uci.edu>
237
238 Avoid displaying files with a nil state in vc-dir.
239 * vc-dir.el (vc-dir-update): Obey the noinsert argument in all
240 cases that cause insertion.
241 (vc-dir-resynch-file): Tell vc-dir-update to avoid inserting files
242 with a nil state.
243
2442010-06-30 Chong Yidong <cyd@stupidchicken.com>
245
246 * xml.el (xml-parse-region): Avoid infloop (Bug#5281).
247
2482010-06-29 Leo <sdl.web@gmail.com>
249
250 * emacs-lisp/rx.el (rx): Doc fix. (Bug#6537)
251
2522010-06-27 Oleksandr Gavenko <gavenkoa@gmail.com> (tiny change)
253
254 * generic-x.el (bat-generic-mode): Fix regexp for command line
255 switches (Bug#5719).
256
2572010-06-27 Masatake YAMATO <yamato@redhat.com>
258
259 * htmlfontify.el (hfy-face-attr-for-class): Use append instead
260 of nconc to avoid pure storage error (Bug#6239).
261
2622010-06-27 Christoph <cschol2112@googlemail.com> (tiny change)
263
264 * bookmark.el (bookmark-bmenu-2-window, bookmark-bmenu-other-window)
265 (bookmark-bmenu-other-window-with-mouse): Remove unnecessary
266 bindings of bookmark-automatically-show-annotations (Bug#6515).
267
2682010-06-25 Eli Zaretskii <eliz@gnu.org>
269
270 * arc-mode.el (archive-zip-extract): Don't quote the file name on
271 MS-Windows and MS-DOS. (Bug#6467, Bug#6144)
272
2732010-06-24 Štěpán Němec <stepnem@gmail.com> (tiny change)
274
275 * comint.el (make-comint, make-comint-in-buffer): Mention return
276 value in the docstrings. (Bug#6498)
277
2782010-06-24 Yoni Rabkin <yoni@rabkins.net>
279
280 * bs.el (bs-mode-font-lock-keywords): Remove "by" from Dired pattern,
281 since it is not present when using some non-default switches.
282
2832010-06-23 Karl Fogel <kfogel@red-bean.com>
284
210 * simple.el (compose-mail): Fix doc string to refer to 285 * simple.el (compose-mail): Fix doc string to refer to
211 `compose-mail-user-agent-warnings', instead of to the 286 `compose-mail-user-agent-warnings', instead of to the
212 nonexistent `compose-mail-check-user-agent'. 287 nonexistent `compose-mail-check-user-agent'.
@@ -320,6 +395,66 @@
320 395
321 * emacs-lisp/package.el: New file. 396 * emacs-lisp/package.el: New file.
322 397
3982010-06-22 Dan Nicolaescu <dann@ics.uci.edu>
399
400 Fix vc-annotate for renamed files when using Git.
401 * vc-git.el (vc-git-find-revision): Deal with empty results from
402 ls-files. Doe not pass the object as a file name to cat-file, it
403 is not a file name.
404 (vc-git-annotate-command): Pass the file name using -- to avoid
405 ambiguity with the revision.
406 (vc-git-previous-revision): Pass a relative file name.
407
4082010-06-22 Glenn Morris <rgm@gnu.org>
409
410 * progmodes/js.el (js-mode-map): Use standard capitalization and
411 ellipses for menu entries.
412
413 * wid-edit.el (widget-complete): Doc fix.
414
4152010-06-22 Jürgen Hötzel <juergen@hoetzel.info> (tiny change)
416
417 * wid-edit.el (widget-complete): Fix typo in 2009-12-02 change.
418
4192010-06-22 Dan Nicolaescu <dann@ics.uci.edu>
420
421 Fix annotating other revisions for renamed files in vc-annotate.
422 * vc-annotate.el (vc-annotate): Add an optional argument for the
423 VC backend. Use it when non-nil.
424 (vc-annotate-warp-revision): Pass the VC backend to vc-annotate. (Bug#6487)
425
426 Fix vc-annotate-show-changeset-diff-revision-at-line for git.
427 * vc-annotate.el (vc-annotate-show-diff-revision-at-line-internal):
428 Do not pass the file name to the 'previous-revision call when we
429 don't want a file diff. (Bug#6489)
430
4312010-06-21 Dan Nicolaescu <dann@ics.uci.edu>
432
433 Fix finding revisions for renamed files in vc-annotate.
434 * vc.el (vc-find-revision): Add an optional argument for
435 the VC backend. Use it when non-nil.
436 * vc-annotate.el (vc-annotate-find-revision-at-line): Pass the VC
437 backend to vc-find-revision. (Bug#6487)
438
4392010-06-21 Dan Nicolaescu <dann@ics.uci.edu>
440
441 Fix reading file names in Git annotate buffers.
442 * vc-git.el (vc-git-annotate-extract-revision-at-line): Remove
443 trailing whitespace. Suggested by Eric Hanchrow. (Bug#6481)
444
4452010-06-20 Alan Mackenzie <acm@muc.de>
446
447 * progmodes/cc-mode.el (c-before-hack-hook): When the mode is set
448 in file local variables, set it first.
449
4502010-06-19 Glenn Morris <rgm@gnu.org>
451
452 * descr-text.el (describe-char-unicode-data): Insert separating
453 space when needed. (Bug#6422)
454
455 * progmodes/idlwave.el (idlwave-action-and-binding):
456 Fix typo in 2009-12-03 change. (Bug#6450)
457
3232010-06-17 Stefan Monnier <monnier@iro.umontreal.ca> 4582010-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
324 459
325 * emacs-lisp/macroexp.el (macroexpand-all-1): Put back special 460 * emacs-lisp/macroexp.el (macroexpand-all-1): Put back special
@@ -335,6 +470,8 @@
335 * facemenu.el (list-colors-display): Call `pop-to-buffer' before 470 * facemenu.el (list-colors-display): Call `pop-to-buffer' before
336 `list-colors-print'. (Bug#6332) 471 `list-colors-print'. (Bug#6332)
337 472
473 * subr.el (read-quoted-char): Fix up last change (bug#6290).
474
3382010-06-16 Stefan Monnier <monnier@iro.umontreal.ca> 4752010-06-16 Stefan Monnier <monnier@iro.umontreal.ca>
339 476
340 * emacs-lisp/macroexp.el (macroexpand-all-1): Don't handle `lambda' 477 * emacs-lisp/macroexp.el (macroexpand-all-1): Don't handle `lambda'