* bug#68593: 29.1; comment-dwim: Args out of range: "", 0, 1
@ 2024-01-19 21:16 Frank Ruben
2024-01-20 6:47 ` Eli Zaretskii
0 siblings, 1 reply; 2+ messages in thread
From: Frank Ruben @ 2024-01-19 21:16 UTC (permalink / raw)
To: 68593
[-- Attachment #1: Type: text/plain, Size: 3187 bytes --]
In GNU Emacs 29.1 (build 2, x86_64-w64-mingw32) of 2023-08-02 built on
AVALON
Windowing system distributor 'Microsoft Corp.', version 10.0.19045
System Description: Microsoft Windows 10 Pro (v10.0.2009.19045.3930)
Configured using:
'configure --with-modules --without-dbus --with-native-compilation=aot
--without-compress-install --with-tree-sitter CFLAGS=-O2'
Configured features:
ACL GIF GMP GNUTLS HARFBUZZ JPEG JSON LCMS2 LIBXML2 MODULES NATIVE_COMP
NOTIFY
W32NOTIFY PDUMPER PNG RSVG SOUND SQLITE3 THREADS TIFF TOOLKIT_SCROLL_BARS
TREE_SITTER WEBP XPM ZLIB
(NATIVE_COMP present but libgccjit not available)
Important settings:
value of $LANG: ENU
locale-coding-system: utf-8
Major mode: C
Minor modes in effect:
save-place-mode: t
recentf-mode: t
which-function-mode: t
desktop-save-mode: t
key-chord-mode: t
override-global-mode: t
global-auto-revert-mode: t
global-so-long-mode: t
flyspell-mode: t
icomplete-mode: t
fido-mode: t
whitespace-mode: t
electric-pair-mode: t
savehist-mode: t
display-time-mode: t
shell-dirtrack-mode: t
auto-insert-mode: t
delete-selection-mode: t
cua-mode: t
global-eldoc-mode: t
show-paren-mode: t
mouse-wheel-mode: t
prettify-symbols-mode: t
file-name-shadow-mode: t
global-font-lock-mode: t
font-lock-mode: t
size-indication-mode: t
column-number-mode: 1
line-number-mode: 1
transient-mark-mode: t
auto-composition-mode: t
auto-encryption-mode: t
auto-compression-mode: t
auto-save-visited-mode: t
abbrev-mode: t
Load-path shadows:
c:/usr/home/.emacs.d2/src/prolog hides
c:/usr/local/emacs/share/emacs/29.1/lisp/progmodes/prolog
Features:
(shadow sort mail-extr emacsbug message yank-media puny rfc822 mml mml-sec
...)
Memory information:
((conses 16 1328082 122098)
(symbols 48 35374 0)
(strings 32 187080 7259)
(string-bytes 1 5454999)
(vectors 16 81243)
(vector-slots 8 1843247 151854)
(floats 8 515 546)
(intervals 56 162466 825)
(buffers 984 88))
When in c-ts-mode.el and when having '(setq comment-end " ")' and when I
then
then run e.g. 'comment-dwim' or simpler '(comment-normalize-vars)', I'm
getting
'comment-dwim: Args out of range: "", 0, 1'.
The error comes from the two 'substring' calls in this s-sexp - where the
code
already contains my "fix" - both calls to 'substring' have been guarded by
'(if (string-equal ce "") "" ...)'.
There are surely smarter ways to fix that - if one knows what is supposed to
happen here :). But maybe that fix gives you a hint to the appropriate
solution.
(let ((ce (if (string= "" comment-end) "\n"
(comment-string-strip comment-end t t))))
(setq-local comment-end-skip
;; We use [ \t] rather than \s- because we don't want to
;; remove ^L in C mode when uncommenting.
(concat "[ \t]*\\(\\s>" (if comment-quote-nested "" "+")
"\\|" (regexp-quote (if (string-equal ce "") ""
(substring ce 0 1)))
(if (and comment-quote-nested (<= (length ce)
1)) "" "+")
(regexp-quote (if (string-equal ce "") ""
(substring ce 1)))
"\\)")))
[-- Attachment #2: Type: text/html, Size: 3924 bytes --]
^ permalink raw reply [flat|nested] 2+ messages in thread
* bug#68593: 29.1; comment-dwim: Args out of range: "", 0, 1
2024-01-19 21:16 bug#68593: 29.1; comment-dwim: Args out of range: "", 0, 1 Frank Ruben
@ 2024-01-20 6:47 ` Eli Zaretskii
0 siblings, 0 replies; 2+ messages in thread
From: Eli Zaretskii @ 2024-01-20 6:47 UTC (permalink / raw)
To: Frank Ruben; +Cc: 68593
> From: Frank Ruben <frankruben27@gmail.com>
> Date: Fri, 19 Jan 2024 22:16:04 +0100
>
> When in c-ts-mode.el and when having '(setq comment-end " ")' and when I then
> then run e.g. 'comment-dwim' or simpler '(comment-normalize-vars)', I'm getting
> 'comment-dwim: Args out of range: "", 0, 1'.
>
> The error comes from the two 'substring' calls in this s-sexp - where the code
> already contains my "fix" - both calls to 'substring' have been guarded by
> '(if (string-equal ce "") "" ...)'.
Can you tell why do you set comment-end to such a value in c-ts-mode?
What is the purpose of such a strange setting?
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2024-01-20 6:47 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-01-19 21:16 bug#68593: 29.1; comment-dwim: Args out of range: "", 0, 1 Frank Ruben
2024-01-20 6:47 ` Eli Zaretskii
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).