* Not enough number of arguments for format string in call to (message ...) in in align.el.
@ 2007-10-16 18:09 Robert Swan
2007-10-17 7:33 ` martin rudalics
0 siblings, 1 reply; 2+ messages in thread
From: Robert Swan @ 2007-10-16 18:09 UTC (permalink / raw)
To: bug-gnu-emacs
In GNU Emacs 21.4.1 (i686-pc-linux-gnu, X toolkit, Xaw3d scroll bars)
of 2005-09-21 on .enqsemi.com
configured using `configure --prefix=/home/rswan/tools/emacs/v21.4'
Important settings:
value of $LC_ALL: nil
value of $LC_COLLATE: nil
value of $LC_CTYPE: nil
value of $LC_MESSAGES: nil
value of $LC_MONETARY: nil
value of $LC_NUMERIC: nil
value of $LC_TIME: nil
value of $LANG: en_US
locale-coding-system: iso-latin-1
default-enable-multibyte-characters: t
Please describe exactly what actions triggered the bug
and the precise symptoms of the bug:
A call to align-regexp with a region large enough to trigger reporting
(> align-large-region, defaults to 10000) results in a call to
(message "Aligning `%s' ..." ) but the argument to %s is missing.
See align.el lines 1418 - 14123.
Robert
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: Not enough number of arguments for format string in call to (message ...) in in align.el.
2007-10-16 18:09 Not enough number of arguments for format string in call to (message ...) in in align.el Robert Swan
@ 2007-10-17 7:33 ` martin rudalics
0 siblings, 0 replies; 2+ messages in thread
From: martin rudalics @ 2007-10-17 7:33 UTC (permalink / raw)
To: Robert Swan; +Cc: bug-gnu-emacs
> A call to align-regexp with a region large enough to trigger reporting
> (> align-large-region, defaults to 10000) results in a call to
> (message "Aligning `%s' ..." ) but the argument to %s is missing.
Thanks for the report. This should have been fixed in Emacs 22.
Emacs 21.4 had
(message
"Aligning `%s' (rule %d of %d) %d%%..."
rule-index rule-count
(/ (* (- (point) real-beg) 100)
(- end-mark real-beg)))
Emacs 22.1 has
(message
"Aligning `%s' (rule %d of %d) %d%%..."
(symbol-name symbol) rule-index rule-count
(/ (* (- (point) real-beg) 100)
(- end-mark real-beg)))
here. Could you try to upgrade?
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2007-10-17 7:33 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-10-16 18:09 Not enough number of arguments for format string in call to (message ...) in in align.el Robert Swan
2007-10-17 7:33 ` martin rudalics
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.