<feed xmlns='http://www.w3.org/2005/Atom'>
<title>emacs, branch scratch/customize-quotes</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>Remove inadvertent changes to syntax.texi in last commit.</title>
<updated>2017-10-01T10:01:33+00:00</updated>
<author>
<name>Alan Mackenzie</name>
</author>
<published>2017-10-01T10:01:33+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=6d596ff94b63c919c104cbfd406bd35c09f760c1'/>
<id>6d596ff94b63c919c104cbfd406bd35c09f760c1</id>
<content type='text'>
* doc/lispref/syntax.texi (Position Parse): revert changes.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* doc/lispref/syntax.texi (Position Parse): revert changes.
</pre>
</div>
</content>
</entry>
<entry>
<title>Amend documentation for text-quoting-style becoming a user option.</title>
<updated>2017-09-30T11:08:16+00:00</updated>
<author>
<name>Alan Mackenzie</name>
</author>
<published>2017-09-30T11:08:16+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=8b234b664e05bd38642831b1296943bde1ad18df'/>
<id>8b234b664e05bd38642831b1296943bde1ad18df</id>
<content type='text'>
* doc/lispref/control.texi (Signaling Errors):
* doc/lispref/display.texi (Displaying Messages):
* doc/lispref/strings.texi (Formatting Strings):
Edit for brevity, farming out the details to the new
Text Quoting Style node.
* doc/lispref/help.texi (Text Quoting Style): New section.
Move detailed discussion of text-quoting-style here.
Add discussion about how to output grave accent and apostrophe in
documentation and messages.  Adjust xrefs to point to this section
when appropriate.
* etc/NEWS: text-quoting-style semantics have not changed.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* doc/lispref/control.texi (Signaling Errors):
* doc/lispref/display.texi (Displaying Messages):
* doc/lispref/strings.texi (Formatting Strings):
Edit for brevity, farming out the details to the new
Text Quoting Style node.
* doc/lispref/help.texi (Text Quoting Style): New section.
Move detailed discussion of text-quoting-style here.
Add discussion about how to output grave accent and apostrophe in
documentation and messages.  Adjust xrefs to point to this section
when appropriate.
* etc/NEWS: text-quoting-style semantics have not changed.
</pre>
</div>
</content>
</entry>
<entry>
<title>Make the value nil in text-quoting-style mean what it does in Emacs 25.</title>
<updated>2017-09-22T21:52:03+00:00</updated>
<author>
<name>Alan Mackenzie</name>
</author>
<published>2017-09-22T21:52:03+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=90330691acf55d8a26dedd6070c1e88c26494eed'/>
<id>90330691acf55d8a26dedd6070c1e88c26494eed</id>
<content type='text'>
This is a partial reversion of yesterday's commit by the same author, which
changed the meaning of nil and introduced the new value t.

* src/doc.c (text_quoting_style, text-quoting-style)
(internal--text-quoting-flag): Revert yesterday's changes.

* lisp/cus-start.el: (top level): Amend the entry for text-quoting-style.

* etc/NEWS: Amend the entry for text-quoting-style.

* doc/lispref/control.texi (Signalling Errors)
* doc/lispref/display.texi (Displaying Messages)
* doc/lispref/strings.texi (Formatting Strings): Bind text-quoting-style to
grave rather than nil to inhibit translation of quotes.

* doc/lispref/help.texi (Keys in Documentation): Revert the description of the
proposed new default, t.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This is a partial reversion of yesterday's commit by the same author, which
changed the meaning of nil and introduced the new value t.

* src/doc.c (text_quoting_style, text-quoting-style)
(internal--text-quoting-flag): Revert yesterday's changes.

* lisp/cus-start.el: (top level): Amend the entry for text-quoting-style.

* etc/NEWS: Amend the entry for text-quoting-style.

* doc/lispref/control.texi (Signalling Errors)
* doc/lispref/display.texi (Displaying Messages)
* doc/lispref/strings.texi (Formatting Strings): Bind text-quoting-style to
grave rather than nil to inhibit translation of quotes.

* doc/lispref/help.texi (Keys in Documentation): Revert the description of the
proposed new default, t.
</pre>
</div>
</content>
</entry>
<entry>
<title>Make text-quoting-style customizable.  Introduce t and new meaning for nil.</title>
<updated>2017-09-21T20:31:06+00:00</updated>
<author>
<name>Alan Mackenzie</name>
</author>
<published>2017-09-21T20:31:06+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=c2d10b05827a11cf6738f5e7acf5ce7fced8c1c9'/>
<id>c2d10b05827a11cf6738f5e7acf5ce7fced8c1c9</id>
<content type='text'>
A value of nil for text-quoting-style now means "no translation".  t means
"Use curved quotes if displayable".

* src/doc.c (text-quoting-style (function)): modify for new semantics.
(text-quoting-style (variable)): Amend the doc string, set the default value
to t.

* lisp/cus-start.el: (top level): Create a customize entry for
text-quoting-style in group display.

* etc/NEWS: Amend the entry for text-quoting-style.

* doc/emacs/display.texi (Text Display): Describe the translation of ASCII
quotes to curved quotes, and how to influence or inhibit it.

* doc/lispref/control.texi (Signalling Errors)
* doc/lispref/display.texi (Displaying Messages)
* doc/lispref/strings.texi (Formatting Strings): Describe binding
text-quoting-style to nil to inhibit unwanted quote translation.

* doc/lispref/help.texi (Keys in Documentation): Change text-quoting-style
from a variable to a user option.  Describe its changed set of values.  State
that it can be customized freely.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
A value of nil for text-quoting-style now means "no translation".  t means
"Use curved quotes if displayable".

* src/doc.c (text-quoting-style (function)): modify for new semantics.
(text-quoting-style (variable)): Amend the doc string, set the default value
to t.

* lisp/cus-start.el: (top level): Create a customize entry for
text-quoting-style in group display.

* etc/NEWS: Amend the entry for text-quoting-style.

* doc/emacs/display.texi (Text Display): Describe the translation of ASCII
quotes to curved quotes, and how to influence or inhibit it.

* doc/lispref/control.texi (Signalling Errors)
* doc/lispref/display.texi (Displaying Messages)
* doc/lispref/strings.texi (Formatting Strings): Describe binding
text-quoting-style to nil to inhibit unwanted quote translation.

* doc/lispref/help.texi (Keys in Documentation): Change text-quoting-style
from a variable to a user option.  Describe its changed set of values.  State
that it can be customized freely.
</pre>
</div>
</content>
</entry>
<entry>
<title>; * lisp/mouse.el (secondary-selection-exist-p): Doc fix.</title>
<updated>2017-09-21T08:29:11+00:00</updated>
<author>
<name>Eli Zaretskii</name>
</author>
<published>2017-09-21T08:29:11+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=28e0c410c972ad8db9bf8a5d32f64921108104d7'/>
<id>28e0c410c972ad8db9bf8a5d32f64921108104d7</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Support setting region from secondary selection and vice versa</title>
<updated>2017-09-21T08:26:00+00:00</updated>
<author>
<name>Tak Kunihiro</name>
</author>
<published>2017-09-21T08:26:00+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=31e1d9ef2f70937cd0f93f67399620201ded300b'/>
<id>31e1d9ef2f70937cd0f93f67399620201ded300b</id>
<content type='text'>
* lisp/mouse.el (secondary-selection-exist-p): New function to
allow callers to tell existence of the secondary selection
in current buffer.
(secondary-selection-to-region): New function to set
beginning and end of the region from those of the secondary
selection.
(secondary-selection-from-region): New function to set
beginning and end of the secondary selection from those of
the region.  (Bug#27530)

* etc/NEWS: Mention the new functions.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* lisp/mouse.el (secondary-selection-exist-p): New function to
allow callers to tell existence of the secondary selection
in current buffer.
(secondary-selection-to-region): New function to set
beginning and end of the region from those of the secondary
selection.
(secondary-selection-from-region): New function to set
beginning and end of the secondary selection from those of
the region.  (Bug#27530)

* etc/NEWS: Mention the new functions.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix new copy-directory bug with empty dirs</title>
<updated>2017-09-20T18:50:35+00:00</updated>
<author>
<name>Paul Eggert</name>
</author>
<published>2017-09-20T18:49:12+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=047f02f00f602b9aef63ae8938e12f3f0ab481eb'/>
<id>047f02f00f602b9aef63ae8938e12f3f0ab481eb</id>
<content type='text'>
Problem reported by Afdam Plaice (Bug#28520) and by Eli Zaretskii
(Bug#28483#34).  This is another bug that I introduced in my
recent copy-directory changes.
* lisp/files.el (copy-directory): Work with empty subdirectories, too.
* test/lisp/files-tests.el (files-tests--copy-directory):
Test for this bug.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Problem reported by Afdam Plaice (Bug#28520) and by Eli Zaretskii
(Bug#28483#34).  This is another bug that I introduced in my
recent copy-directory changes.
* lisp/files.el (copy-directory): Work with empty subdirectories, too.
* test/lisp/files-tests.el (files-tests--copy-directory):
Test for this bug.
</pre>
</div>
</content>
</entry>
<entry>
<title>* doc/lispref/strings.texi (Formatting Strings): Improve indexing.</title>
<updated>2017-09-20T13:40:20+00:00</updated>
<author>
<name>Eli Zaretskii</name>
</author>
<published>2017-09-20T13:40:20+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=fbd15836af69b1d156f39664f2512f85278fdb08'/>
<id>fbd15836af69b1d156f39664f2512f85278fdb08</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix 2 testsuite tests for MS-Windows</title>
<updated>2017-09-20T07:16:11+00:00</updated>
<author>
<name>Eli Zaretskii</name>
</author>
<published>2017-09-20T07:16:11+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=f16a8d5dbd3bb8a319c951bdde9a6a75dbdb8c17'/>
<id>f16a8d5dbd3bb8a319c951bdde9a6a75dbdb8c17</id>
<content type='text'>
* test/lisp/ibuffer-tests.el (test-buffer-list): Don't try to
create files with "*" in their names.
* test/src/editfns-tests.el (format-time-string-with-zone): Adapt
results to MS-Windows build.  Reported by Fabrice Popineau
&lt;fabrice.popineau@gmail.com&gt;.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* test/lisp/ibuffer-tests.el (test-buffer-list): Don't try to
create files with "*" in their names.
* test/src/editfns-tests.el (format-time-string-with-zone): Adapt
results to MS-Windows build.  Reported by Fabrice Popineau
&lt;fabrice.popineau@gmail.com&gt;.
</pre>
</div>
</content>
</entry>
<entry>
<title>Rename timer-list to list-timers</title>
<updated>2017-09-20T02:24:23+00:00</updated>
<author>
<name>Mark Oteiza</name>
</author>
<published>2017-09-20T02:21:37+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=965cffd89cd5727c46a1b0999bef440f8e316742'/>
<id>965cffd89cd5727c46a1b0999bef440f8e316742</id>
<content type='text'>
* doc/emacs/anti.texi (Antinews):
* doc/lispref/os.texi (Timers):
* etc/NEWS:
* lisp/emacs-lisp/timer-list.el:
(timer-list-mode): Rename timer-list to list-timers.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* doc/emacs/anti.texi (Antinews):
* doc/lispref/os.texi (Timers):
* etc/NEWS:
* lisp/emacs-lisp/timer-list.el:
(timer-list-mode): Rename timer-list to list-timers.
</pre>
</div>
</content>
</entry>
</feed>
