<feed xmlns='http://www.w3.org/2005/Atom'>
<title>emacs, branch scratch/widen-limits</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>Implement buffer-widen-limits functionality</title>
<updated>2016-03-22T02:16:17+00:00</updated>
<author>
<name>Vitalie Spinu</name>
</author>
<published>2016-03-21T04:41:55+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=c331b6626a427fb89303fea75faebd8c39d343a8'/>
<id>c331b6626a427fb89303fea75faebd8c39d343a8</id>
<content type='text'>
 `widen` now respects restrictions imposed by new variable
 `hard-widen-limits`
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
 `widen` now respects restrictions imposed by new variable
 `hard-widen-limits`
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix an Isearch var to be a string (Bug#23038)</title>
<updated>2016-03-22T00:05:24+00:00</updated>
<author>
<name>Kaushal Modi</name>
</author>
<published>2016-03-21T23:28:27+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=91e667692ba1362ca1334b8d58fd16c305ad5e2a'/>
<id>91e667692ba1362ca1334b8d58fd16c305ad5e2a</id>
<content type='text'>
* isearch.el (isearch--describe-regexp-mode): The `description' var
  needs to always be a string.  Add the missing default case for the
  cond form that ensures that.

Before this bug fix, for the events when `regexp-function' and
`search-default-mode' both were nil, `description' also stayed nil.  So
when `space-before' was non-nil, the "non-string" `description'
(with a value of nil) got passed as an argument to
`replace-regexp-in-string' (where a string was expected).  That caused
the error described in Bug#23038.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* isearch.el (isearch--describe-regexp-mode): The `description' var
  needs to always be a string.  Add the missing default case for the
  cond form that ensures that.

Before this bug fix, for the events when `regexp-function' and
`search-default-mode' both were nil, `description' also stayed nil.  So
when `space-before' was non-nil, the "non-string" `description'
(with a value of nil) got passed as an argument to
`replace-regexp-in-string' (where a string was expected).  That caused
the error described in Bug#23038.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix (args-out-of-range 1) error in cursor-sensor--detect</title>
<updated>2016-03-21T10:26:40+00:00</updated>
<author>
<name>Leo Liu</name>
</author>
<published>2016-03-21T10:26:10+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=76ef52267cf887e3e1aa6d25b3b16dd0601dd459'/>
<id>76ef52267cf887e3e1aa6d25b3b16dd0601dd459</id>
<content type='text'>
* lisp/emacs-lisp/cursor-sensor.el (cursor-sensor--detect): Don't
  hard-code (point-min) as 1 which fails in narrowed buffers.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* lisp/emacs-lisp/cursor-sensor.el (cursor-sensor--detect): Don't
  hard-code (point-min) as 1 which fails in narrowed buffers.
</pre>
</div>
</content>
</entry>
<entry>
<title>Render empty &lt;ul&gt;&lt;li&gt;&lt;ul&gt; correctly</title>
<updated>2016-03-20T12:58:26+00:00</updated>
<author>
<name>Lars Magne Ingebrigtsen</name>
</author>
<published>2016-03-20T12:52:36+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=8a35f83c6c2ce602ee4d1e54c64067c851a2a43f'/>
<id>8a35f83c6c2ce602ee4d1e54c64067c851a2a43f</id>
<content type='text'>
* lisp/net/shr.el (shr-tag-ul): Render empty &lt;ul&gt;&lt;li&gt;&lt;ul&gt;
correctly (bug#22964).
(cherry picked from commit 4f6ea3988b66cf132c67fd0cc26d12eb9a300ba1)

Backport:
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* lisp/net/shr.el (shr-tag-ul): Render empty &lt;ul&gt;&lt;li&gt;&lt;ul&gt;
correctly (bug#22964).
(cherry picked from commit 4f6ea3988b66cf132c67fd0cc26d12eb9a300ba1)

Backport:
</pre>
</div>
</content>
</entry>
<entry>
<title>Ignore invalid base64 encoded embedded images</title>
<updated>2016-03-20T12:58:04+00:00</updated>
<author>
<name>Lars Magne Ingebrigtsen</name>
</author>
<published>2016-03-20T12:57:11+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=d8b2ce5f8a6a849e55b48699dfa0e769a4b9a3f6'/>
<id>d8b2ce5f8a6a849e55b48699dfa0e769a4b9a3f6</id>
<content type='text'>
* lisp/net/shr.el (shr-image-from-data): Ignore invalid base64
encoded embedded images (bug#22928).
(cherry picked from commit f2da80d0e1ccd121c4891e869a45aeb9c6b1795d)

Backport:
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* lisp/net/shr.el (shr-image-from-data): Ignore invalid base64
encoded embedded images (bug#22928).
(cherry picked from commit f2da80d0e1ccd121c4891e869a45aeb9c6b1795d)

Backport:
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix &lt;p&gt; and &lt;div&gt; newlines with or without &lt;li&gt; in shr</title>
<updated>2016-03-20T12:45:09+00:00</updated>
<author>
<name>Lars Magne Ingebrigtsen</name>
</author>
<published>2016-03-20T12:43:42+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=52ba24bdd913f6be8318c34b281c7ad727dee6ad'/>
<id>52ba24bdd913f6be8318c34b281c7ad727dee6ad</id>
<content type='text'>
* lisp/net/shr.el (shr-ensure-newline): Respect that we're in
a &lt;li&gt;, if we are, and don't insert newlines there.
(shr-ensure-paragraph): When mixing newlines and paragraph
ensurements, don't insert too many blank lines.
(shr-tag-div): A &lt;div&gt; shouldn't introduce a paragraph, but a
new line.
(cherry picked from commit 292921facaff2f02ac4e8602c1f7ecbdcfe7ef45)

Backport:
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* lisp/net/shr.el (shr-ensure-newline): Respect that we're in
a &lt;li&gt;, if we are, and don't insert newlines there.
(shr-ensure-paragraph): When mixing newlines and paragraph
ensurements, don't insert too many blank lines.
(shr-tag-div): A &lt;div&gt; shouldn't introduce a paragraph, but a
new line.
(cherry picked from commit 292921facaff2f02ac4e8602c1f7ecbdcfe7ef45)

Backport:
</pre>
</div>
</content>
</entry>
<entry>
<title>Avoid errors in 'newline'</title>
<updated>2016-03-19T19:32:27+00:00</updated>
<author>
<name>Eli Zaretskii</name>
</author>
<published>2016-03-19T19:32:27+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=b8ea08b037fb16395b90481162587706e71b487c'/>
<id>b8ea08b037fb16395b90481162587706e71b487c</id>
<content type='text'>
* lisp/simple.el (newline): Don't barf if invoked with
non-positive argument in the middle of a line.  (Bug#22490)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* lisp/simple.el (newline): Don't barf if invoked with
non-positive argument in the middle of a line.  (Bug#22490)
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix Bug#23032</title>
<updated>2016-03-19T15:51:46+00:00</updated>
<author>
<name>Michael Albinus</name>
</author>
<published>2016-03-19T15:51:46+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=fc3cd53900eb5e80b91b6d2615b3800fd2f59c16'/>
<id>fc3cd53900eb5e80b91b6d2615b3800fd2f59c16</id>
<content type='text'>
* doc/misc/eshell.texi (Arguments): Mention the pipe symbol in
remote file names.  (Bug#23032)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* doc/misc/eshell.texi (Arguments): Mention the pipe symbol in
remote file names.  (Bug#23032)
</pre>
</div>
</content>
</entry>
<entry>
<title>Adjudicate review comments in abbrevs.texi</title>
<updated>2016-03-19T11:05:55+00:00</updated>
<author>
<name>Eli Zaretskii</name>
</author>
<published>2016-03-19T11:05:55+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=dd2737b375d1eb3d7e0acbb9544fc8c85403d65e'/>
<id>dd2737b375d1eb3d7e0acbb9544fc8c85403d65e</id>
<content type='text'>
* doc/lispref/abbrevs.texi (Abbrev Files, Abbrev Expansion):
* doc/emacs/abbrevs.texi (Dabbrev Customization): State the
default values of variables.  Suggested by Steve Byrne
&lt;sbb@penguinis.org&gt;.  (Bug#23016)

* admin/release-process (Check manuals): Mark files reviewed by
Steve Byrne.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* doc/lispref/abbrevs.texi (Abbrev Files, Abbrev Expansion):
* doc/emacs/abbrevs.texi (Dabbrev Customization): State the
default values of variables.  Suggested by Steve Byrne
&lt;sbb@penguinis.org&gt;.  (Bug#23016)

* admin/release-process (Check manuals): Mark files reviewed by
Steve Byrne.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixup the "normal" matcher; highlight global var symbols, too</title>
<updated>2016-03-18T22:37:54+00:00</updated>
<author>
<name>Dmitry Gutov</name>
</author>
<published>2016-03-18T22:37:09+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=26f9c5075ff273013418a66b70fae477301d41d5'/>
<id>26f9c5075ff273013418a66b70fae477301d41d5</id>
<content type='text'>
* lisp/progmodes/ruby-mode.el (ruby-font-lock-keywords): Highlight
operator name symbols with the "normal" matcher (it actually
needed updating).  Highlight global variable symbols, too.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* lisp/progmodes/ruby-mode.el (ruby-font-lock-keywords): Highlight
operator name symbols with the "normal" matcher (it actually
needed updating).  Highlight global variable symbols, too.
</pre>
</div>
</content>
</entry>
</feed>
