<feed xmlns='http://www.w3.org/2005/Atom'>
<title>emacs/lisp/complete.el, branch scratch/static_assert</title>
<subtitle>Emacs is the extensible, customizable, self-documenting real-time display editor. 
</subtitle>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/'/>
<entry>
<title>Move complete.el to lisp/obsolete.</title>
<updated>2010-04-13T03:29:38+00:00</updated>
<author>
<name>Stefan Monnier</name>
</author>
<published>2010-04-13T03:29:38+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=c1e25821f922d8e6d941f9d7717c054bfd068a47'/>
<id>c1e25821f922d8e6d941f9d7717c054bfd068a47</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix keywords.</title>
<updated>2010-03-14T21:15:02+00:00</updated>
<author>
<name>Juri Linkov</name>
</author>
<published>2010-03-14T21:15:02+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=88f4758e1c0051fb9c82630f3f816e4efb28b0b0'/>
<id>88f4758e1c0051fb9c82630f3f816e4efb28b0b0</id>
<content type='text'>
* finder.el (finder-compile-keywords): Replace `princ' with
`prin1' on a list of symbols interned from keyword strings.

* emacs-lisp/lisp-mnt.el (lm-keywords-list): If `keywords' contains
a comma, then split keywords using a comma and optional whitespace.
Otherwise, split by whitespace.

* complete.el:
* face-remap.el:
* log-view.el:
* net/hmac-def.el:
* net/hmac-md5.el:
* net/netrc.el:
* progmodes/mixal-mode.el: Fix keywords.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* finder.el (finder-compile-keywords): Replace `princ' with
`prin1' on a list of symbols interned from keyword strings.

* emacs-lisp/lisp-mnt.el (lm-keywords-list): If `keywords' contains
a comma, then split keywords using a comma and optional whitespace.
Otherwise, split by whitespace.

* complete.el:
* face-remap.el:
* log-view.el:
* net/hmac-def.el:
* net/hmac-md5.el:
* net/netrc.el:
* progmodes/mixal-mode.el: Fix keywords.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add 2010 to copyright years.</title>
<updated>2010-01-13T08:35:10+00:00</updated>
<author>
<name>Glenn Morris</name>
</author>
<published>2010-01-13T08:35:10+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=114f9c96795aff3b51b9060d7c9c1b77debcc99a'/>
<id>114f9c96795aff3b51b9060d7c9c1b77debcc99a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Replace completion-base-size by completion-base-position to fix bugs</title>
<updated>2009-10-15T01:50:17+00:00</updated>
<author>
<name>Stefan Monnier</name>
</author>
<published>2009-10-15T01:50:17+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=d5e637154f5084076b1a348155fc68139747acca'/>
<id>d5e637154f5084076b1a348155fc68139747acca</id>
<content type='text'>
such as (bug#4699).
* simple.el (completion-base-position): New var.
(completion-base-size): Mark as obsolete.
(choose-completion): Make it work for mouse events as well.
Pass the new base-position to choose-completion-string.
(choose-completion-guess-base-position): New function, extracted from
choose-completion-delete-max-match.
(choose-completion-delete-max-match): Use it.  Make obsolete.
(choose-completion-string): Use the new base-position info.
(completion-root-regexp): Delete.
(completion-setup-function): Preserve completion-base-position.
Eliminate obsolete base-size manipulation.
* minibuffer.el (display-completion-list): Don't mess with base-size.
(minibuffer-completion-help): Set completion-base-position instead.
* mouse.el (mouse-choose-completion): Redefine as a mere alias to
choose-completion.
* textmodes/bibtex.el (bibtex-complete):
* emacs-lisp/crm.el (crm--choose-completion-string):
Adjust to new calling convention.
* complete.el (partial-completion-mode): Use minibufferp to avoid
bumping into incompatible change to choose-completion-string-functions.
* ido.el (ido-choose-completion-string): Make its calling convention
more permissive.
* comint.el (comint-dynamic-list-input-ring-select): Remove obsolete
base-size manipulation.
(comint-dynamic-list-input-ring): Use dotimes and push.
* iswitchb.el (iswitchb-completion-help): Remove dead-code call to
fundamental-mode.  Use `or'.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
such as (bug#4699).
* simple.el (completion-base-position): New var.
(completion-base-size): Mark as obsolete.
(choose-completion): Make it work for mouse events as well.
Pass the new base-position to choose-completion-string.
(choose-completion-guess-base-position): New function, extracted from
choose-completion-delete-max-match.
(choose-completion-delete-max-match): Use it.  Make obsolete.
(choose-completion-string): Use the new base-position info.
(completion-root-regexp): Delete.
(completion-setup-function): Preserve completion-base-position.
Eliminate obsolete base-size manipulation.
* minibuffer.el (display-completion-list): Don't mess with base-size.
(minibuffer-completion-help): Set completion-base-position instead.
* mouse.el (mouse-choose-completion): Redefine as a mere alias to
choose-completion.
* textmodes/bibtex.el (bibtex-complete):
* emacs-lisp/crm.el (crm--choose-completion-string):
Adjust to new calling convention.
* complete.el (partial-completion-mode): Use minibufferp to avoid
bumping into incompatible change to choose-completion-string-functions.
* ido.el (ido-choose-completion-string): Make its calling convention
more permissive.
* comint.el (comint-dynamic-list-input-ring-select): Remove obsolete
base-size manipulation.
(comint-dynamic-list-input-ring): Use dotimes and push.
* iswitchb.el (iswitchb-completion-help): Remove dead-code call to
fundamental-mode.  Use `or'.
</pre>
</div>
</content>
</entry>
<entry>
<title>(PC-do-completion): Correct case when completion is unambiguous.</title>
<updated>2009-01-28T15:34:32+00:00</updated>
<author>
<name>Chong Yidong</name>
</author>
<published>2009-01-28T15:34:32+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=1f4e4f86c99d448e8b7f57147ca067713bb17fed'/>
<id>1f4e4f86c99d448e8b7f57147ca067713bb17fed</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Replace last-command-char with last-command-event.</title>
<updated>2009-01-09T04:44:15+00:00</updated>
<author>
<name>Glenn Morris</name>
</author>
<published>2009-01-09T04:44:15+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=8989a9203f73473569ddf83e505a846609def407'/>
<id>8989a9203f73473569ddf83e505a846609def407</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add 2009 to copyright years.</title>
<updated>2009-01-05T03:18:22+00:00</updated>
<author>
<name>Glenn Morris</name>
</author>
<published>2009-01-05T03:18:22+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=ae940284fa77a6928f5162b7de859e67bdc7506c'/>
<id>ae940284fa77a6928f5162b7de859e67bdc7506c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>(PC-do-completion): Fix leftover bug from Emacs-21 when</title>
<updated>2008-12-02T07:08:35+00:00</updated>
<author>
<name>Stefan Monnier</name>
</author>
<published>2008-12-02T07:08:35+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=da0bed93994ac873055a26e73b1205819bddc84b'/>
<id>da0bed93994ac873055a26e73b1205819bddc84b</id>
<content type='text'>
the prompt was added to the minibuffer.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
the prompt was added to the minibuffer.
</pre>
</div>
</content>
</entry>
<entry>
<title>(PC-do-complete-and-exit): Use minibuffer-confirm-exit-commands.</title>
<updated>2008-11-29T21:41:11+00:00</updated>
<author>
<name>Chong Yidong</name>
</author>
<published>2008-11-29T21:41:11+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=a88510924f90cbbd26ab701409bb6f378c55cc94'/>
<id>a88510924f90cbbd26ab701409bb6f378c55cc94</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>(PC-do-complete-and-exit): Synch to 2008-11-24 change to</title>
<updated>2008-11-28T19:11:58+00:00</updated>
<author>
<name>Chong Yidong</name>
</author>
<published>2008-11-28T19:11:58+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=f8d106b0f806da2527a702ef80e16be1f6636fea'/>
<id>f8d106b0f806da2527a702ef80e16be1f6636fea</id>
<content type='text'>
minibuffer.el; recognize `confirm' and `confirm-after-completion'
values for minibuffer-completion-confirm.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
minibuffer.el; recognize `confirm' and `confirm-after-completion'
values for minibuffer-completion-confirm.
</pre>
</div>
</content>
</entry>
</feed>
