<feed xmlns='http://www.w3.org/2005/Atom'>
<title>emacs/lisp, branch test-concurrency</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>Fix typo in dired-omit-case-fold-p</title>
<updated>2016-12-10T00:48:43+00:00</updated>
<author>
<name>Tino Calancha</name>
</author>
<published>2016-12-10T00:48:43+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=afd162d0d782a4889e0c99dc3458a66e36da7cd4'/>
<id>afd162d0d782a4889e0c99dc3458a66e36da7cd4</id>
<content type='text'>
* lisp/dired-x.el (dired-omit-case-fold-p):
Write 'file-name-case-insensitive-p' instead of
'file-name-case-sensitive-p'.
Add declaration of 'file-name-case-insensitive-p'.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* lisp/dired-x.el (dired-omit-case-fold-p):
Write 'file-name-case-insensitive-p' instead of
'file-name-case-sensitive-p'.
Add declaration of 'file-name-case-insensitive-p'.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'concurrency'</title>
<updated>2016-12-04T17:59:17+00:00</updated>
<author>
<name>Eli Zaretskii</name>
</author>
<published>2016-12-04T17:59:17+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=de4624c99ea5bbe38ad5aff7b6461cc5c740d0be'/>
<id>de4624c99ea5bbe38ad5aff7b6461cc5c740d0be</id>
<content type='text'>
Conflicts (resolved):
	configure.ac
	src/Makefile.in
	src/alloc.c
	src/bytecode.c
	src/emacs.c
	src/eval.c
	src/lisp.h
	src/process.c
	src/regex.c
	src/regex.h
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Conflicts (resolved):
	configure.ac
	src/Makefile.in
	src/alloc.c
	src/bytecode.c
	src/emacs.c
	src/eval.c
	src/lisp.h
	src/process.c
	src/regex.c
	src/regex.h
</pre>
</div>
</content>
</entry>
<entry>
<title>Display window before calculating width</title>
<updated>2016-12-03T05:58:26+00:00</updated>
<author>
<name>Mark Oteiza</name>
</author>
<published>2016-12-02T21:53:02+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=143a4306759a91e84b486a9e4c52f83d96d8d23d'/>
<id>143a4306759a91e84b486a9e4c52f83d96d8d23d</id>
<content type='text'>
* lisp/image-dired.el (image-dired-display-thumbs): Display the buffer
before calling image-dired-line-up and friends, which in turn calculate
the window width. Otherwise, the thumbnail layout will be wrong in
a side-by-side split.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* lisp/image-dired.el (image-dired-display-thumbs): Display the buffer
before calling image-dired-line-up and friends, which in turn calculate
the window width. Otherwise, the thumbnail layout will be wrong in
a side-by-side split.
</pre>
</div>
</content>
</entry>
<entry>
<title>Use pop-to-buffer-same-window</title>
<updated>2016-12-03T05:58:18+00:00</updated>
<author>
<name>Mark Oteiza</name>
</author>
<published>2016-12-02T21:50:25+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=5e915691ff097668b60c715cd39ab87975fc3000'/>
<id>5e915691ff097668b60c715cd39ab87975fc3000</id>
<content type='text'>
* lisp/image-dired.el (image-dired-dired-with-window-configuration):
(image-dired-dired-edit-comment-and-tags): Instead of switch-to-buffer,
use pop-to-buffer-same-window cf. Bug#22244.
(image-dired-forward-image, image-dired-backward-image): Ignore unused.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* lisp/image-dired.el (image-dired-dired-with-window-configuration):
(image-dired-dired-edit-comment-and-tags): Instead of switch-to-buffer,
use pop-to-buffer-same-window cf. Bug#22244.
(image-dired-forward-image, image-dired-backward-image): Ignore unused.
</pre>
</div>
</content>
</entry>
<entry>
<title>Ensure redisplay using variable watcher</title>
<updated>2016-12-03T01:25:15+00:00</updated>
<author>
<name>Noam Postavsky</name>
</author>
<published>2015-11-21T22:02:42+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=d3faef9baedadc9eaec46814ba9bbe5168048328'/>
<id>d3faef9baedadc9eaec46814ba9bbe5168048328</id>
<content type='text'>
This replaces looking up the variable name in redisplay--variables when
setting it.

* lisp/frame.el: Replace redisplay--variables with add-variable-watcher
calls.
* src/xdisp.c (Fset_buffer_redisplay): Rename from maybe_set_redisplay,
set the redisplay flag unconditionally.
(Vredisplay__variables): Remove it.
* src/data.c (set_internal): Remove maybe_set_redisplay call.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This replaces looking up the variable name in redisplay--variables when
setting it.

* lisp/frame.el: Replace redisplay--variables with add-variable-watcher
calls.
* src/xdisp.c (Fset_buffer_redisplay): Rename from maybe_set_redisplay,
set the redisplay flag unconditionally.
(Vredisplay__variables): Remove it.
* src/data.c (set_internal): Remove maybe_set_redisplay call.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add function to trigger debugger on variable write</title>
<updated>2016-12-03T01:25:14+00:00</updated>
<author>
<name>Noam Postavsky</name>
</author>
<published>2015-11-21T21:03:06+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=cfd2b9eae17754c0e109961f2880f05012a4891d'/>
<id>cfd2b9eae17754c0e109961f2880f05012a4891d</id>
<content type='text'>
* lisp/emacs-lisp/debug.el (debug-on-variable-change):
(debug--variable-list):
(cancel-debug-on-variable-change): New functions.
(debugger-setup-buffer): Add watchpoint clause.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* lisp/emacs-lisp/debug.el (debug-on-variable-change):
(debug--variable-list):
(cancel-debug-on-variable-change): New functions.
(debugger-setup-buffer): Add watchpoint clause.
</pre>
</div>
</content>
</entry>
<entry>
<title>Show watchpoints when describing variables</title>
<updated>2016-12-03T01:25:14+00:00</updated>
<author>
<name>Noam Postavsky</name>
</author>
<published>2016-11-19T21:50:34+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=459a23444e321d25f0b82bede76947576f01ecc3'/>
<id>459a23444e321d25f0b82bede76947576f01ecc3</id>
<content type='text'>
* src/data.c (Fget_variable_watchers): New function.
* lisp/help-fns.el (describe-variable): Use it to detect watching
functions.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* src/data.c (Fget_variable_watchers): New function.
* lisp/help-fns.el (describe-variable): Use it to detect watching
functions.
</pre>
</div>
</content>
</entry>
<entry>
<title>; * lisp/dired-x.el (dired-omit-case-fold): Fix last change.</title>
<updated>2016-12-02T18:37:44+00:00</updated>
<author>
<name>Eli Zaretskii</name>
</author>
<published>2016-12-02T18:37:44+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=0fc4761ca88175c30da7209c9ab1cde788b66a76'/>
<id>0fc4761ca88175c30da7209c9ab1cde788b66a76</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Starting doc of user options with "*" is long obsolete</title>
<updated>2016-12-02T18:11:53+00:00</updated>
<author>
<name>Glenn Morris</name>
</author>
<published>2016-12-02T18:11:53+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=30dc85c63bd52acf7d8f4eef78e788b1816ab77b'/>
<id>30dc85c63bd52acf7d8f4eef78e788b1816ab77b</id>
<content type='text'>
* lisp/battery.el (battery-upower-device): Doc fix.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* lisp/battery.el (battery-upower-device): Doc fix.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix docstrings to have a complete sentence in first line</title>
<updated>2016-12-02T16:38:05+00:00</updated>
<author>
<name>Reuben Thomas</name>
</author>
<published>2016-12-02T16:36:43+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=5315275f849d664ff4b5124ef9411a2c16114fd9'/>
<id>5315275f849d664ff4b5124ef9411a2c16114fd9</id>
<content type='text'>
* lisp/dired-x.el (dired-omit-case-fold, dired-omit-case-fold-p): Fix
docstrings.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* lisp/dired-x.el (dired-omit-case-fold, dired-omit-case-fold-p): Fix
docstrings.
</pre>
</div>
</content>
</entry>
</feed>
