diff options
| author | Stefan Monnier | 2011-02-02 11:20:26 -0500 |
|---|---|---|
| committer | Stefan Monnier | 2011-02-02 11:20:26 -0500 |
| commit | 9714fa67770e0619902d7be685fc45cec07c1e0a (patch) | |
| tree | 7ccf9385b28707d04d43e25bf5325bf787a64d61 | |
| parent | aca092acca790a33da095cacda454c788e8b554d (diff) | |
| download | emacs-9714fa67770e0619902d7be685fc45cec07c1e0a.tar.gz emacs-9714fa67770e0619902d7be685fc45cec07c1e0a.zip | |
* pcomplete.el (pcomplete-here*): Backport fix for mistaken change
(bug#7959).
Fixes: debbugs:5935
| -rw-r--r-- | lisp/ChangeLog | 17 | ||||
| -rw-r--r-- | lisp/pcomplete.el | 2 |
2 files changed, 12 insertions, 7 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 2159eda340a..3b8da6fa373 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2011-02-02 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 2 | |||
| 3 | * pcomplete.el (pcomplete-here*): Backport fix for mistaken change | ||
| 4 | (bug#7959) and (bug#5935). | ||
| 5 | |||
| 1 | 2011-01-31 Deniz Dogan <deniz.a.m.dogan@gmail.com> | 6 | 2011-01-31 Deniz Dogan <deniz.a.m.dogan@gmail.com> |
| 2 | 7 | ||
| 3 | * net/rcirc.el: Clean log filenames (Bug#7933). | 8 | * net/rcirc.el: Clean log filenames (Bug#7933). |
| @@ -6,8 +11,8 @@ | |||
| 6 | 11 | ||
| 7 | 2011-01-31 Alan Mackenzie <acm@muc.de> | 12 | 2011-01-31 Alan Mackenzie <acm@muc.de> |
| 8 | 13 | ||
| 9 | * progmodes/cc-cmds.el (c-forward-over-illiterals): Continue | 14 | * progmodes/cc-cmds.el (c-forward-over-illiterals): |
| 10 | parsing if we encounter a naked # (Bug#7595). | 15 | Continue parsing if we encounter a naked # (Bug#7595). |
| 11 | (c-beginning-of-statement): Avoid loop in locating the beginning | 16 | (c-beginning-of-statement): Avoid loop in locating the beginning |
| 12 | of a macro. | 17 | of a macro. |
| 13 | 18 | ||
| @@ -17,8 +22,8 @@ | |||
| 17 | 22 | ||
| 18 | 2011-01-29 Daiki Ueno <ueno@unixuser.org> | 23 | 2011-01-29 Daiki Ueno <ueno@unixuser.org> |
| 19 | 24 | ||
| 20 | * epg.el (epg--status-KEYEXPIRED, epg--status-KEYREVOKED): Don't | 25 | * epg.el (epg--status-KEYEXPIRED, epg--status-KEYREVOKED): |
| 21 | presume KEYEXPIRED and KEYREVOKED to be a fatal error status | 26 | Don't presume KEYEXPIRED and KEYREVOKED to be a fatal error status |
| 22 | (Bug#7931). | 27 | (Bug#7931). |
| 23 | 28 | ||
| 24 | 2011-01-29 Chong Yidong <cyd@stupidchicken.com> | 29 | 2011-01-29 Chong Yidong <cyd@stupidchicken.com> |
| @@ -40,8 +45,8 @@ | |||
| 40 | 45 | ||
| 41 | 2011-01-28 Kenichi Handa <handa@m17n.org> | 46 | 2011-01-28 Kenichi Handa <handa@m17n.org> |
| 42 | 47 | ||
| 43 | * international/quail.el (quail-keyboard-layout-alist): Remove | 48 | * international/quail.el (quail-keyboard-layout-alist): |
| 44 | superfluous SPC for "pc105-uk" (bug#7927). | 49 | Remove superfluous SPC for "pc105-uk" (bug#7927). |
| 45 | 50 | ||
| 46 | 2011-01-27 Glenn Morris <rgm@gnu.org> | 51 | 2011-01-27 Glenn Morris <rgm@gnu.org> |
| 47 | 52 | ||
diff --git a/lisp/pcomplete.el b/lisp/pcomplete.el index b3367dc4c74..309c266015f 100644 --- a/lisp/pcomplete.el +++ b/lisp/pcomplete.el | |||
| @@ -1113,7 +1113,7 @@ generate the completions list. This means that the hook | |||
| 1113 | (defmacro pcomplete-here* (&optional form stub form-only) | 1113 | (defmacro pcomplete-here* (&optional form stub form-only) |
| 1114 | "An alternate form which does not participate in argument paring." | 1114 | "An alternate form which does not participate in argument paring." |
| 1115 | (declare (debug t)) | 1115 | (declare (debug t)) |
| 1116 | `(pcomplete-here (lambda () ,form) ,stub t ,form-only)) | 1116 | `(pcomplete-here ,form ,stub t ,form-only)) |
| 1117 | 1117 | ||
| 1118 | ;; display support | 1118 | ;; display support |
| 1119 | 1119 | ||