<feed xmlns='http://www.w3.org/2005/Atom'>
<title>emacs/admin/update_autogen, branch scratch/sqlite</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>update_autogen: Improve error handling slightly</title>
<updated>2021-12-02T17:32:54+00:00</updated>
<author>
<name>Stefan Kangas</name>
</author>
<published>2021-12-02T17:30:16+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=a8bfdf2efc41479efecee4dff71fe8a341cb5729'/>
<id>a8bfdf2efc41479efecee4dff71fe8a341cb5729</id>
<content type='text'>
* admin/update_autogen: Check exit status of cd.  Use single
quoting for trap condition.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* admin/update_autogen: Check exit status of cd.  Use single
quoting for trap condition.
</pre>
</div>
</content>
</entry>
<entry>
<title>update_autogen: Remove unused -H flag</title>
<updated>2021-12-02T17:21:21+00:00</updated>
<author>
<name>Stefan Kangas</name>
</author>
<published>2021-12-02T17:17:14+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=db56f2c264fe7cd7ec2bd3ed7bc96a7473b4983b'/>
<id>db56f2c264fe7cd7ec2bd3ed7bc96a7473b4983b</id>
<content type='text'>
We now update ChangeLog files only when preparing a new release, so
this flag is never used.  Keeping it risks confusing more than it
helps.
* admin/update_autogen: Remove the -H flag as it is no longer used.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
We now update ChangeLog files only when preparing a new release, so
this flag is never used.  Keeping it risks confusing more than it
helps.
* admin/update_autogen: Remove the -H flag as it is no longer used.
</pre>
</div>
</content>
</entry>
<entry>
<title>; update_autogen: Remove -I flag handling completely</title>
<updated>2021-12-02T17:18:25+00:00</updated>
<author>
<name>Stefan Kangas</name>
</author>
<published>2021-12-02T17:15:41+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=cf49f6ef656dcb681b904149b2dd95de71ff2668'/>
<id>cf49f6ef656dcb681b904149b2dd95de71ff2668</id>
<content type='text'>
* admin/update_autogen: Fix my previous commit to now completely
remove any trace of the -I flag.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* admin/update_autogen: Fix my previous commit to now completely
remove any trace of the -I flag.
</pre>
</div>
</content>
</entry>
<entry>
<title>update_autogen: Remove deprecated -I flag</title>
<updated>2021-12-01T10:29:40+00:00</updated>
<author>
<name>Stefan Kangas</name>
</author>
<published>2021-12-01T10:23:29+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=c13b49a110ffd23975e98c053746054492a3908a'/>
<id>c13b49a110ffd23975e98c053746054492a3908a</id>
<content type='text'>
* admin/update_autogen (info_dir): Remove deprecated -I flag; it is no
longer used since info/dir is now generated at install time if needed,
and is not in the repository any more.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* admin/update_autogen (info_dir): Remove deprecated -I flag; it is no
longer used since info/dir is now generated at install time if needed,
and is not in the repository any more.
</pre>
</div>
</content>
</entry>
<entry>
<title>* admin/update_autogen: Remove unused variables.</title>
<updated>2021-11-10T15:37:52+00:00</updated>
<author>
<name>Stefan Kangas</name>
</author>
<published>2021-11-10T15:37:47+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=4424970b2b624888468cbea80f8aa4c121f60152'/>
<id>4424970b2b624888468cbea80f8aa4c121f60152</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Don't version-control generated file `grammat-wy.el`</title>
<updated>2021-04-13T02:10:38+00:00</updated>
<author>
<name>Stefan Monnier</name>
</author>
<published>2021-04-13T01:55:50+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=214dfbfea0cc7d64704aa4a258da542435c44cbb'/>
<id>214dfbfea0cc7d64704aa4a258da542435c44cbb</id>
<content type='text'>
This file is needed for CEDET's bootstrap, tho, so we now keep a copy of it
under version control in `gram-wy-boot.el`, very much like we do with
the `ldefs-boot.el` copy of `loaddefs.el`.

* lisp/cedet/semantic/grm-wy-boot.el: Rename from
`lisp/cedet/semantic/grammar-wy.el`.

* lisp/cedet/semantic/grammar.el: Load `grm-wy-boot.el` if
`grammar-wy.el` hasn't been generated yet.

* admin/update_autogen: Also refresh `grm-wy-boot.el`.

* admin/grammars/Makefile.in (WISENT): Add `grammar-wy.el` to the
generated files.

* .gitignore: Add `grammar-wy.el`.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This file is needed for CEDET's bootstrap, tho, so we now keep a copy of it
under version control in `gram-wy-boot.el`, very much like we do with
the `ldefs-boot.el` copy of `loaddefs.el`.

* lisp/cedet/semantic/grm-wy-boot.el: Rename from
`lisp/cedet/semantic/grammar-wy.el`.

* lisp/cedet/semantic/grammar.el: Load `grm-wy-boot.el` if
`grammar-wy.el` hasn't been generated yet.

* admin/update_autogen: Also refresh `grm-wy-boot.el`.

* admin/grammars/Makefile.in (WISENT): Add `grammar-wy.el` to the
generated files.

* .gitignore: Add `grammar-wy.el`.
</pre>
</div>
</content>
</entry>
<entry>
<title>Update copyright year to 2021</title>
<updated>2021-01-01T09:13:56+00:00</updated>
<author>
<name>Paul Eggert</name>
</author>
<published>2021-01-01T09:13:56+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=ba05d005e5a81bc123ad8da928b1bccb6b160e7a'/>
<id>ba05d005e5a81bc123ad8da928b1bccb6b160e7a</id>
<content type='text'>
Run "TZ=UTC0 admin/update-copyright".
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Run "TZ=UTC0 admin/update-copyright".
</pre>
</div>
</content>
</entry>
<entry>
<title>; Maintainer header updates</title>
<updated>2020-07-31T16:09:39+00:00</updated>
<author>
<name>Glenn Morris</name>
</author>
<published>2020-07-31T16:09:39+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=fbe363f5e18fb4975de168191f1ee9b686e48d9f'/>
<id>fbe363f5e18fb4975de168191f1ee9b686e48d9f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Update copyright year to 2020</title>
<updated>2020-01-01T00:59:52+00:00</updated>
<author>
<name>Paul Eggert</name>
</author>
<published>2020-01-01T00:19:43+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=365e01cc9f64ce6ca947ccfd8612d60763280a37'/>
<id>365e01cc9f64ce6ca947ccfd8612d60763280a37</id>
<content type='text'>
Run "TZ=UTC0 admin/update-copyright $(git ls-files)".
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Run "TZ=UTC0 admin/update-copyright $(git ls-files)".
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge from origin/emacs-26</title>
<updated>2019-01-01T01:57:29+00:00</updated>
<author>
<name>Paul Eggert</name>
</author>
<published>2019-01-01T01:57:29+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=ba809612c06bcabd05dcbaae79da39dcb0925992'/>
<id>ba809612c06bcabd05dcbaae79da39dcb0925992</id>
<content type='text'>
2fcf2df Fix copyright years by hand
26bed8b Update copyright year to 2019
2814292 Fix value of default frame height.  (Bug#33921)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
2fcf2df Fix copyright years by hand
26bed8b Update copyright year to 2019
2814292 Fix value of default frame height.  (Bug#33921)
</pre>
</div>
</content>
</entry>
</feed>
