<feed xmlns='http://www.w3.org/2005/Atom'>
<title>emacs/src, branch scratch/comp-branch-optim</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>Use cheaper string constructors</title>
<updated>2024-07-09T16:31:46+00:00</updated>
<author>
<name>Mattias Engdegård</name>
</author>
<published>2024-07-09T08:01:03+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=7e358aa706f9dbfce24304e8a05904538615537f'/>
<id>7e358aa706f9dbfce24304e8a05904538615537f</id>
<content type='text'>
* src/coding.c (make_string_from_utf8):
* src/fileio.c (file_name_directory):
* src/lread.c (Fintern):
* src/gnutls.c (Fgnutls_format_certificate):
Use `make_multibyte_string` and `make_unibyte_string` instead of
more expensive `make_specified_string` and `make_string_from_bytes`.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* src/coding.c (make_string_from_utf8):
* src/fileio.c (file_name_directory):
* src/lread.c (Fintern):
* src/gnutls.c (Fgnutls_format_certificate):
Use `make_multibyte_string` and `make_unibyte_string` instead of
more expensive `make_specified_string` and `make_string_from_bytes`.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge from savannah/emacs-30</title>
<updated>2024-07-09T14:04:03+00:00</updated>
<author>
<name>Po Lu</name>
</author>
<published>2024-07-09T14:04:03+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=df265195004836621c1e6c7042534e17b99e26ec'/>
<id>df265195004836621c1e6c7042534e17b99e26ec</id>
<content type='text'>
8350ebd22e9 Fix bug#71929
8f96e0064fa ; Change `imap-shell-host` docstring to mention SSH
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
8350ebd22e9 Fix bug#71929
8f96e0064fa ; Change `imap-shell-host` docstring to mention SSH
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix bug#71929</title>
<updated>2024-07-09T14:02:22+00:00</updated>
<author>
<name>Po Lu</name>
</author>
<published>2024-07-09T14:00:39+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=8350ebd22e983df5eb9ad33d427bd3d6a09ffe7f'/>
<id>8350ebd22e983df5eb9ad33d427bd3d6a09ffe7f</id>
<content type='text'>
* src/image.c (free_image_cache): Unconditionally release image
cache, as this function is only called with its existence
already established.

* src/xfaces.c (free_frame_faces): Clear FRAME_IMAGE_CACHE (f).
(bug#71929)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* src/image.c (free_image_cache): Unconditionally release image
cache, as this function is only called with its existence
already established.

* src/xfaces.c (free_frame_faces): Clear FRAME_IMAGE_CACHE (f).
(bug#71929)
</pre>
</div>
</content>
</entry>
<entry>
<title>; * src/dbusbind.c (Fdbus_message_internal): Fix coding style.</title>
<updated>2024-07-09T13:16:54+00:00</updated>
<author>
<name>Po Lu</name>
</author>
<published>2024-07-09T13:16:47+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=4ca35cbb6ebe9b2bd0690d73b9ff722be7e07b2c'/>
<id>4ca35cbb6ebe9b2bd0690d73b9ff722be7e07b2c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Support interactive D-Bus authorization</title>
<updated>2024-07-09T11:16:43+00:00</updated>
<author>
<name>Steven Allen</name>
</author>
<published>2024-07-09T11:16:43+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=551a71c313be26d067e59fa11c79e4ef5c550e92'/>
<id>551a71c313be26d067e59fa11c79e4ef5c550e92</id>
<content type='text'>
When invoking D-Bus methods, let the user enable interactive
authorization by passing an :authorizable t parameter.  This makes
it possible to D-Bus methods that require polkit authorization.

* configure.ac (HAVE_DBUS_MESSAGE_SET_ALLOW_INTERACTIVE_AUTHORIZATION):
Set a new variable if `dbus_message_set_allow_interactive_authorization'
is available.

* src/dbusbind.c (dbus-message-internal): Allow interactive
authorization by passing :authorizable t.

* doc/misc/dbus.texi (Synchronous Methods, Asynchronous Methods):
* etc/NEWS:
* lisp/net/dbus.el (dbus-call-method-asynchronously): Document the
new parameter.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
When invoking D-Bus methods, let the user enable interactive
authorization by passing an :authorizable t parameter.  This makes
it possible to D-Bus methods that require polkit authorization.

* configure.ac (HAVE_DBUS_MESSAGE_SET_ALLOW_INTERACTIVE_AUTHORIZATION):
Set a new variable if `dbus_message_set_allow_interactive_authorization'
is available.

* src/dbusbind.c (dbus-message-internal): Allow interactive
authorization by passing :authorizable t.

* doc/misc/dbus.texi (Synchronous Methods, Asynchronous Methods):
* etc/NEWS:
* lisp/net/dbus.el (dbus-call-method-asynchronously): Document the
new parameter.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge from savannah/emacs-30</title>
<updated>2024-07-09T09:23:18+00:00</updated>
<author>
<name>Andrea Corallo</name>
</author>
<published>2024-07-09T09:23:18+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=3f0f0712da30f97a029e38b9506b66f177be562c'/>
<id>3f0f0712da30f97a029e38b9506b66f177be562c</id>
<content type='text'>
671ad83026e Fix bug#70697 with respect to fringe bitmaps
15c591bad62 Fix byte-compiler warning in calc.el

# Conflicts:
#	lisp/calc/calc.el
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
671ad83026e Fix bug#70697 with respect to fringe bitmaps
15c591bad62 Fix byte-compiler warning in calc.el

# Conflicts:
#	lisp/calc/calc.el
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix bug#70697 with respect to fringe bitmaps</title>
<updated>2024-07-09T06:10:07+00:00</updated>
<author>
<name>Po Lu</name>
</author>
<published>2024-07-09T06:10:07+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=671ad83026e0f9727a809311d43fd7a57403b33b'/>
<id>671ad83026e0f9727a809311d43fd7a57403b33b</id>
<content type='text'>
* src/pgtkterm.c (pgtk_draw_fringe_bitmap): Always call
`fill_background_by_face' for clearing backgrounds of fringe
bitmaps.  (bug#70697)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* src/pgtkterm.c (pgtk_draw_fringe_bitmap): Always call
`fill_background_by_face' for clearing backgrounds of fringe
bitmaps.  (bug#70697)
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge from savannah/emacs-30</title>
<updated>2024-07-07T02:24:47+00:00</updated>
<author>
<name>Po Lu</name>
</author>
<published>2024-07-07T02:24:47+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=13ab972bc89ca747d0ba2969c2ab84bf8a496bcc'/>
<id>13ab972bc89ca747d0ba2969c2ab84bf8a496bcc</id>
<content type='text'>
8589fd9cae2 * src/androidvfs.c (android_saf_check_nonnull): Fix typo.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
8589fd9cae2 * src/androidvfs.c (android_saf_check_nonnull): Fix typo.
</pre>
</div>
</content>
</entry>
<entry>
<title>* src/androidvfs.c (android_saf_check_nonnull): Fix typo.</title>
<updated>2024-07-07T02:24:24+00:00</updated>
<author>
<name>Po Lu</name>
</author>
<published>2024-07-07T02:24:24+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=8589fd9cae2fbff8bf8eddd055fc1e60fa0df6f2'/>
<id>8589fd9cae2fbff8bf8eddd055fc1e60fa0df6f2</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge from savannah/emacs-30</title>
<updated>2024-07-07T02:23:08+00:00</updated>
<author>
<name>Po Lu</name>
</author>
<published>2024-07-07T02:23:08+00:00</published>
<link rel='alternate' type='text/html' href='https://jason.zzq.org/git/emacs/commit/?id=14d2e89af1750135fb778e682d543f10d11f5f47'/>
<id>14d2e89af1750135fb778e682d543f10d11f5f47</id>
<content type='text'>
99e510977b2 Correct JNI string error checking and miscellaneous corre...
bbe95a8ceab Correctly highlight SYMTAB in `awk-mode`
9625e4af994 Fix formatting of tables with thead/tfoot but no tbody
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
99e510977b2 Correct JNI string error checking and miscellaneous corre...
bbe95a8ceab Correctly highlight SYMTAB in `awk-mode`
9625e4af994 Fix formatting of tables with thead/tfoot but no tbody
</pre>
</div>
</content>
</entry>
</feed>
