diff options
| author | Kenichi Handa | 2010-05-25 10:03:44 +0900 |
|---|---|---|
| committer | Kenichi Handa | 2010-05-25 10:03:44 +0900 |
| commit | cdf522217cd425ca6dabb1fc6c0fb7fb9c95883b (patch) | |
| tree | 993ab2a02b7737549c408adb148aed12c86bafd2 /lisp | |
| parent | 8a2b8c4f7c2a18254fc0b34f236d7487fc7917d4 (diff) | |
| parent | 171eda5358a6c63b4854688a300b0fe22d3fcb38 (diff) | |
| download | emacs-cdf522217cd425ca6dabb1fc6c0fb7fb9c95883b.tar.gz emacs-cdf522217cd425ca6dabb1fc6c0fb7fb9c95883b.zip | |
merge trunk
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/ChangeLog | 19 | ||||
| -rw-r--r-- | lisp/emacs-lisp/bytecomp.el | 2 | ||||
| -rw-r--r-- | lisp/textmodes/fill.el | 2 | ||||
| -rw-r--r-- | lisp/url/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/url/url-util.el | 4 |
5 files changed, 22 insertions, 9 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 72f00e60edf..061db502dc5 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,12 @@ | |||
| 1 | 2010-05-24 Uday S Reddy <u.s.reddy@cs.bham.ac.uk> (tiny change) | ||
| 2 | |||
| 3 | * textmodes/fill.el (fill-region): Don't fill past the end (bug#6201). | ||
| 4 | |||
| 5 | 2010-05-24 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 6 | |||
| 7 | * subr.el (read-quoted-char): Resolve modifiers after key | ||
| 8 | remapping (bug#6212). | ||
| 9 | |||
| 1 | 2010-05-22 Chong Yidong <cyd@stupidchicken.com> | 10 | 2010-05-22 Chong Yidong <cyd@stupidchicken.com> |
| 2 | 11 | ||
| 3 | * image.el (image-refresh): Define as an alias for image-flush. | 12 | * image.el (image-refresh): Define as an alias for image-flush. |
| @@ -13,9 +22,9 @@ | |||
| 13 | 22 | ||
| 14 | 2010-05-21 Alan Mackenzie <acm@muc.de> | 23 | 2010-05-21 Alan Mackenzie <acm@muc.de> |
| 15 | 24 | ||
| 16 | * progmodes/cc-engine.el (c-parse-state-get-strategy): Replace | 25 | * progmodes/cc-engine.el (c-parse-state-get-strategy): |
| 17 | parameter `here' with `here-' and `here-plus', which sandwich any | 26 | Replace parameter `here' with `here-' and `here-plus', which sandwich |
| 18 | pertinent CPP construct. | 27 | any pertinent CPP construct. |
| 19 | (c-remove-stale-state-cache-backwards): Fix a bug which happens | 28 | (c-remove-stale-state-cache-backwards): Fix a bug which happens |
| 20 | when doing (c-parse-state) in a CPP construct: Exclude any "new" | 29 | when doing (c-parse-state) in a CPP construct: Exclude any "new" |
| 21 | CPP construct from taking part in the scanning. | 30 | CPP construct from taking part in the scanning. |
| @@ -23,8 +32,8 @@ | |||
| 23 | 2010-05-21 Michael Albinus <michael.albinus@gmx.de> | 32 | 2010-05-21 Michael Albinus <michael.albinus@gmx.de> |
| 24 | 33 | ||
| 25 | * net/tramp.el (tramp-do-copy-or-rename-file) | 34 | * net/tramp.el (tramp-do-copy-or-rename-file) |
| 26 | (tramp-handle-file-local-copy, tramp-maybe-open-connection): Tune | 35 | (tramp-handle-file-local-copy, tramp-maybe-open-connection): |
| 27 | `with-progress-reporter' messages. | 36 | Tune `with-progress-reporter' messages. |
| 28 | (tramp-handle-vc-registered): | 37 | (tramp-handle-vc-registered): |
| 29 | * net/tramp-fish.el (tramp-fish-handle-file-local-copy) | 38 | * net/tramp-fish.el (tramp-fish-handle-file-local-copy) |
| 30 | (tramp-fish-handle-insert-file-contents) | 39 | (tramp-fish-handle-insert-file-contents) |
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el index 0c3a7b69798..217afea9f8a 100644 --- a/lisp/emacs-lisp/bytecomp.el +++ b/lisp/emacs-lisp/bytecomp.el | |||
| @@ -353,7 +353,7 @@ else the global value will be modified." | |||
| 353 | (defvar byte-compile-interactive-only-functions | 353 | (defvar byte-compile-interactive-only-functions |
| 354 | '(beginning-of-buffer end-of-buffer replace-string replace-regexp | 354 | '(beginning-of-buffer end-of-buffer replace-string replace-regexp |
| 355 | insert-file insert-buffer insert-file-literally previous-line next-line | 355 | insert-file insert-buffer insert-file-literally previous-line next-line |
| 356 | goto-line comint-run) | 356 | goto-line comint-run delete-backward-char) |
| 357 | "List of commands that are not meant to be called from Lisp.") | 357 | "List of commands that are not meant to be called from Lisp.") |
| 358 | 358 | ||
| 359 | (defvar byte-compile-not-obsolete-vars nil | 359 | (defvar byte-compile-not-obsolete-vars nil |
diff --git a/lisp/textmodes/fill.el b/lisp/textmodes/fill.el index 1b3cc8dc4d8..da6e02bfa2f 100644 --- a/lisp/textmodes/fill.el +++ b/lisp/textmodes/fill.el | |||
| @@ -1036,7 +1036,7 @@ space does not end a sentence, so don't break a line there." | |||
| 1036 | (fill-forward-paragraph -1)) | 1036 | (fill-forward-paragraph -1)) |
| 1037 | (if (< (point) beg) | 1037 | (if (< (point) beg) |
| 1038 | (goto-char beg)) | 1038 | (goto-char beg)) |
| 1039 | (if (>= (point) initial) | 1039 | (if (and (>= (point) initial) (< (point) end)) |
| 1040 | (setq fill-pfx | 1040 | (setq fill-pfx |
| 1041 | (fill-region-as-paragraph (point) end justify nosqueeze)) | 1041 | (fill-region-as-paragraph (point) end justify nosqueeze)) |
| 1042 | (goto-char end)))) | 1042 | (goto-char end)))) |
diff --git a/lisp/url/ChangeLog b/lisp/url/ChangeLog index 552f0703940..f61c8d2566d 100644 --- a/lisp/url/ChangeLog +++ b/lisp/url/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2010-05-19 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 2 | |||
| 3 | * url-util.el (url-unhex-string): Don't accidentally decode as latin-1. | ||
| 4 | |||
| 1 | 2010-05-07 Chong Yidong <cyd@stupidchicken.com> | 5 | 2010-05-07 Chong Yidong <cyd@stupidchicken.com> |
| 2 | 6 | ||
| 3 | * Version 23.2 released. | 7 | * Version 23.2 released. |
diff --git a/lisp/url/url-util.el b/lisp/url/url-util.el index c0b2595a6e0..e92ccc76285 100644 --- a/lisp/url/url-util.el +++ b/lisp/url/url-util.el | |||
| @@ -322,10 +322,10 @@ forbidden in URL encoding." | |||
| 322 | tmp (substring str 0 start) | 322 | tmp (substring str 0 start) |
| 323 | (cond | 323 | (cond |
| 324 | (allow-newlines | 324 | (allow-newlines |
| 325 | (char-to-string code)) | 325 | (byte-to-string code)) |
| 326 | ((or (= code ?\n) (= code ?\r)) | 326 | ((or (= code ?\n) (= code ?\r)) |
| 327 | " ") | 327 | " ") |
| 328 | (t (char-to-string code)))) | 328 | (t (byte-to-string code)))) |
| 329 | str (substring str (match-end 0))))) | 329 | str (substring str (match-end 0))))) |
| 330 | (setq tmp (concat tmp str)) | 330 | (setq tmp (concat tmp str)) |
| 331 | tmp)) | 331 | tmp)) |