diff options
| author | Eli Zaretskii | 2023-06-17 05:02:55 -0400 |
|---|---|---|
| committer | Eli Zaretskii | 2023-06-17 05:02:55 -0400 |
| commit | d1ddd1d5d9c0b14dff35e7589368dbe8c30549e3 (patch) | |
| tree | 2bc96568771f3aa75538ff03da0efbf70826ce9a /src | |
| parent | 8657afac774f36777d0fdd368e0bec64beca22ae (diff) | |
| parent | 84d2da003e1c2acc2dddd7b6bc271cb6e1af9755 (diff) | |
| download | emacs-d1ddd1d5d9c0b14dff35e7589368dbe8c30549e3.tar.gz emacs-d1ddd1d5d9c0b14dff35e7589368dbe8c30549e3.zip | |
Merge from origin/emacs-29
84d2da003e1 ; Fix example in the Flymake manual
0a1459f1d9b * doc/misc/calc.texi (Advanced Math Functions): Correct c...
92faf1f5645 Consider 'dired-kill-when-opening-new-dired-buffer' in mo...
bafe71a69fc ; Fix use-package.texi markup
018e4ca6c5d ; * doc/misc/calc.texi (Advanced Math Functions): Fix las...
1952dbd4c5f Fix Gamma function definition in calc.texi
f73f82d7e89 Fix subscripts in the Calc manual
70fc7c41ef3 Improve documentation of 'declare' forms
c8357582389 ; * src/lread.c (bytecode_from_rev_list): Avoid C++ comment.
28478574961 Improve tree-sitter docs
0e9307eb2b8 Fix some Texinfo markup in manuals
8dc08333eea Fix bol/bos anchors in tree-sitter :match regexps
8225ade6151 ; * src/xdisp.c (syms_of_xdisp) <display-line-numbers>: F...
1f0527a312a ; Fix last change in tex-mode.el
4da479920e6 * lisp/subr.el (with-restriction): Tweak indent rule
36aa9bd8183 ; Fix previous change
aaeaf608d89 Fix setting region in the minibuffer
1383efe01d0 Fix setting $DBUS_SESSION_BUS_ADDRESS after Emacs has sta...
bdb0bc2b4e4 Fix tex-mode display-buffer issues
90047c38ce9 Add test for when 'completion-auto-help' is 'visible'
2c623e4feb9 Avoid errors in 'apropos-documentation' after 'eval-buffer'
dd3b98121cc ; * doc/emacs/indent.texi (Indentation Commands): Fix las...
904edf1f076 Mention indent-rigidly in the Emacs manual
Diffstat (limited to 'src')
| -rw-r--r-- | src/dbusbind.c | 2 | ||||
| -rw-r--r-- | src/lread.c | 2 | ||||
| -rw-r--r-- | src/xdisp.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/dbusbind.c b/src/dbusbind.c index d96b735c79a..97094e407d7 100644 --- a/src/dbusbind.c +++ b/src/dbusbind.c | |||
| @@ -276,7 +276,7 @@ XD_OBJECT_TO_STRING (Lisp_Object object) | |||
| 276 | 276 | ||
| 277 | #define XD_DBUS_VALIDATE_BUS_ADDRESS(bus) \ | 277 | #define XD_DBUS_VALIDATE_BUS_ADDRESS(bus) \ |
| 278 | do { \ | 278 | do { \ |
| 279 | char const *session_bus_address = getenv ("DBUS_SESSION_BUS_ADDRESS"); \ | 279 | char const *session_bus_address = egetenv ("DBUS_SESSION_BUS_ADDRESS"); \ |
| 280 | if (STRINGP (bus)) \ | 280 | if (STRINGP (bus)) \ |
| 281 | { \ | 281 | { \ |
| 282 | DBusAddressEntry **entries; \ | 282 | DBusAddressEntry **entries; \ |
diff --git a/src/lread.c b/src/lread.c index 0ee208b7cba..51d0d2a3c24 100644 --- a/src/lread.c +++ b/src/lread.c | |||
| @@ -3288,7 +3288,7 @@ bytecode_from_rev_list (Lisp_Object elems, Lisp_Object readcharfun) | |||
| 3288 | Convert them back to the original unibyte form. */ | 3288 | Convert them back to the original unibyte form. */ |
| 3289 | vec[COMPILED_BYTECODE] = Fstring_as_unibyte (vec[COMPILED_BYTECODE]); | 3289 | vec[COMPILED_BYTECODE] = Fstring_as_unibyte (vec[COMPILED_BYTECODE]); |
| 3290 | } | 3290 | } |
| 3291 | // Bytecode must be immovable. | 3291 | /* Bytecode must be immovable. */ |
| 3292 | pin_string (vec[COMPILED_BYTECODE]); | 3292 | pin_string (vec[COMPILED_BYTECODE]); |
| 3293 | } | 3293 | } |
| 3294 | 3294 | ||
diff --git a/src/xdisp.c b/src/xdisp.c index 1830d1965a6..8bcf2acfe04 100644 --- a/src/xdisp.c +++ b/src/xdisp.c | |||
| @@ -37139,7 +37139,7 @@ shown in a window. Absolute line numbers count from the beginning of | |||
| 37139 | the current narrowing, or from buffer beginning. The variable | 37139 | the current narrowing, or from buffer beginning. The variable |
| 37140 | `display-line-numbers-offset', if non-zero, is a signed offset added | 37140 | `display-line-numbers-offset', if non-zero, is a signed offset added |
| 37141 | to each absolute line number; it also forces line numbers to be counted | 37141 | to each absolute line number; it also forces line numbers to be counted |
| 37142 | from the beginning of the buffer, as if `display-line-numbers-wide' | 37142 | from the beginning of the buffer, as if `display-line-numbers-widen' |
| 37143 | were non-nil. It has no effect when line numbers are not absolute. | 37143 | were non-nil. It has no effect when line numbers are not absolute. |
| 37144 | 37144 | ||
| 37145 | If the value is `relative', display for each line not containing the | 37145 | If the value is `relative', display for each line not containing the |