aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorStefan Kangas2022-12-16 08:45:06 +0100
committerStefan Kangas2022-12-16 08:45:06 +0100
commit03892d4f7c1253bc1affeedd227eb0a1520de90e (patch)
treee4b8c00a4ed4e16da3b06c18a34605cf9d19fd68 /src
parentb52d0147e9ef7900f4fc07e8c2bf816b1a4ae145 (diff)
parent033071692c7cd1cd550d25170d4b3168668567ac (diff)
downloademacs-03892d4f7c1253bc1affeedd227eb0a1520de90e.tar.gz
emacs-03892d4f7c1253bc1affeedd227eb0a1520de90e.zip
Merge from origin/emacs-29
033071692c7 ; Fix typos f4a513344d9 Add lambda_expression-rule to java-ts-mode (bug#60091) 546aed35434 eglot: Add support for new language server csharp-ls cb761eb7ac4 Use the new tree-sitter commands 037407ad95a Add "function" feature to python-ts-mode (bug#59977) fee2efe1b03 Add go-ts-mode and go-mod-ts-mode (Bug#60025) e8f7ab67ad1 Add basic support for hideshow in python-ts-mode (bug#60044) cac070b23e4 Add "this" keyword to java-ts-mode (bug#60086) c8d75046a2f When completing relative project file names, use relative... 3b618d0e3ed Avoid segfaults due to invalid selected-window's buffer # Conflicts: # lisp/progmodes/sh-script.el
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog.122
-rw-r--r--src/ChangeLog.132
-rw-r--r--src/fns.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/ChangeLog.12 b/src/ChangeLog.12
index 7f77c0ca077..f455c4de382 100644
--- a/src/ChangeLog.12
+++ b/src/ChangeLog.12
@@ -10836,7 +10836,7 @@
10836 * gtkutil.c (xg_maybe_add_timer): Port to higher-res time stamps. 10836 * gtkutil.c (xg_maybe_add_timer): Port to higher-res time stamps.
10837 10837
10838 * image.c (prepare_image_for_display, clear_image_cache) 10838 * image.c (prepare_image_for_display, clear_image_cache)
10839 (lookup_image): Port to higer-resolution time stamps. 10839 (lookup_image): Port to higher-resolution time stamps.
10840 10840
10841 * keyboard.c (start_polling, bind_polling_period): 10841 * keyboard.c (start_polling, bind_polling_period):
10842 Check for time stamp overflow. 10842 Check for time stamp overflow.
diff --git a/src/ChangeLog.13 b/src/ChangeLog.13
index 91f8005ac51..0c4e2909ced 100644
--- a/src/ChangeLog.13
+++ b/src/ChangeLog.13
@@ -10579,7 +10579,7 @@
10579 (../src/$(OLDXMENU), $(OLDXMENU)): Remove. 10579 (../src/$(OLDXMENU), $(OLDXMENU)): Remove.
10580 (temacs$(EXEEXT)): Depend on $(LIBXMENU), not stamp-oldxmenu. 10580 (temacs$(EXEEXT)): Depend on $(LIBXMENU), not stamp-oldxmenu.
10581 ($(lwlibdir)/liblw.a, $(oldXMenudir)/libXMenu11.a, FORCE): New targets. 10581 ($(lwlibdir)/liblw.a, $(oldXMenudir)/libXMenu11.a, FORCE): New targets.
10582 (boostrap-clean): No need to remove stamp-oldxmenu. 10582 (bootstrap-clean): No need to remove stamp-oldxmenu.
10583 10583
10584 Fix recently introduced bool vector overrun. 10584 Fix recently introduced bool vector overrun.
10585 This was due to an optimization that went awry. 10585 This was due to an optimization that went awry.
diff --git a/src/fns.c b/src/fns.c
index d8744c1a4de..b6e871ad49c 100644
--- a/src/fns.c
+++ b/src/fns.c
@@ -3938,7 +3938,7 @@ system.
3938If the region can't be decoded, signal an error and don't modify the buffer. 3938If the region can't be decoded, signal an error and don't modify the buffer.
3939Optional third argument BASE64URL determines whether to use the URL variant 3939Optional third argument BASE64URL determines whether to use the URL variant
3940of the base 64 encoding, as defined in RFC 4648. 3940of the base 64 encoding, as defined in RFC 4648.
3941If optional fourth argument INGORE-INVALID is non-nil invalid characters 3941If optional fourth argument IGNORE-INVALID is non-nil invalid characters
3942are ignored instead of signaling an error. */) 3942are ignored instead of signaling an error. */)
3943 (Lisp_Object beg, Lisp_Object end, Lisp_Object base64url, 3943 (Lisp_Object beg, Lisp_Object end, Lisp_Object base64url,
3944 Lisp_Object ignore_invalid) 3944 Lisp_Object ignore_invalid)