* [rastandy@salug.it: minor bug for `info-lookup-symbol' in `maxima-mode' and `inferior-maxima-mode']
@ 2006-10-13 11:19 Richard Stallman
2006-10-13 14:53 ` Chong Yidong
2006-10-13 19:21 ` Eli Zaretskii
0 siblings, 2 replies; 5+ messages in thread
From: Richard Stallman @ 2006-10-13 11:19 UTC (permalink / raw)
Would someone please install this?
------- Start of forwarded message -------
To: emacs-pretest-bug@gnu.org
From: Andrea Russo <rastandy@salug.it>
Date: Fri, 13 Oct 2006 00:35:03 +0200
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Subject: minor bug for `info-lookup-symbol' in `maxima-mode' and
`inferior-maxima-mode'
X-Spam-Status: No, score=0.1 required=5.0 tests=FORGED_RCVD_HELO
autolearn=failed version=3.0.4
When using C-h S (`info-lookup-symbol') on a maxima function that has
a number in its name, the emacs function is unable to find the name
in the index of the maxima info manual.
AFAIK, this patch solved the problem for me:
- --- orig/lisp/info-look.el
+++ mod/lisp/info-look.el
@@ -843,12 +843,13 @@
(info-lookup-maybe-add-help
:mode 'maxima-mode
:ignore-case t
- - :regexp "[a-zA-Z_%]+"
+ :regexp "[a-zA-Z0-9_%]+"
:doc-spec '( ("(maxima)Function and Variable Index" nil
"^ -+ [^:]+:[ ]+\\(\\[[^=]*=[ ]+\\)?" nil)))
(info-lookup-maybe-add-help
:mode 'inferior-maxima-mode
+ :regexp "[a-zA-Z0-9_%]+"
:other-modes '(maxima-mode))
;; coreutils and bash builtins overlap in places, eg. printf, so there's a
Best Regards,
Andrea Russo.
In GNU Emacs 22.0.50.6 (i686-pc-linux-gnu, GTK+ Version 2.8.20)
of 2006-10-12 on onosendai.org
X server distributor `The X.Org Foundation', version 11.0.70000000
configured using `configure '--with-gtk' '--without-toolkit-scroll-bars''
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.UTF-8
locale-coding-system: utf-8
default-enable-multibyte-characters: t
Major mode: Inferior Maxima
Minor modes in effect:
erc-truncate-mode: t
erc-track-mode: t
erc-sound-mode: t
erc-ring-mode: t
erc-pcomplete-mode: t
erc-notify-mode: t
erc-netsplit-mode: t
erc-match-mode: t
erc-log-mode: t
erc-button-mode: t
erc-fill-mode: t
erc-stamp-mode: t
erc-autoaway-mode: t
erc-list-mode: t
erc-smiley-mode: t
erc-readonly-mode: t
erc-scrolltobottom-mode: t
recentf-mode: t
icomplete-mode: t
which-function-mode: t
iswitchb-mode: t
desktop-save-mode: t
jabber-activity-mode: t
display-battery-mode: t
display-time-mode: t
tooltip-mode: t
mouse-wheel-mode: t
menu-bar-mode: t
file-name-shadow-mode: t
global-font-lock-mode: t
font-lock-mode: t
unify-8859-on-encoding-mode: t
utf-translate-cjk-mode: t
auto-compression-mode: t
size-indication-mode: t
column-number-mode: t
line-number-mode: t
transient-mark-mode: t
Recent input:
C-n C-n C-n C-n C-n C-n C-n C-n C-n C-n C-n C-n C-n
C-n C-p C-SPC C-n M-> C-p C-p C-p C-p C-p C-p C-p C-p
C-n M-w h g g q s s s s s s s s s s C-x b m a x i C-g
M-x i m a x i m a RET l <backspace> p l o t 2 <M-tab>
<M-tab> <backspace> <backspace> 3 <M-tab> <M-tab> <M-tab>
<M-tab> C-h S RET C-x 1 <M-backspace> M-x r e p o r
t - b u <tab> <backspace> <backspace> e m a <tab> b
<tab> RET
Recent messages:
Checking new news...
nnml: Reading incoming mail from file...
nnml: Reading incoming mail (no new mail)...done
Checking new news...done
(No changes need to be saved) [9 times]
Retrieving newsgroup: list.emacs-devel.gnu.org...
Fetching headers for list.emacs-devel.gnu.org...done
Scoring...done
Generating summary...done
Loading hippie-exp...done
- --
Reclama i tuoi diritti digitali, elimina il DRM. Approfondisci su
http://www.no1984.org
Reclaim your digital rights, eliminate DRM. Learn more at
http://www.defectivebydesign.org/what_is_drm
_______________________________________________
emacs-pretest-bug mailing list
emacs-pretest-bug@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-pretest-bug
------- End of forwarded message -------
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [rastandy@salug.it: minor bug for `info-lookup-symbol' in `maxima-mode' and `inferior-maxima-mode']
2006-10-13 11:19 [rastandy@salug.it: minor bug for `info-lookup-symbol' in `maxima-mode' and `inferior-maxima-mode'] Richard Stallman
@ 2006-10-13 14:53 ` Chong Yidong
2006-10-13 19:21 ` Eli Zaretskii
1 sibling, 0 replies; 5+ messages in thread
From: Chong Yidong @ 2006-10-13 14:53 UTC (permalink / raw)
Cc: emacs-devel
Richard Stallman <rms@gnu.org> writes:
> Would someone please install this?
Done.
> From: Andrea Russo <rastandy@salug.it>
> Subject: minor bug for `info-lookup-symbol' in `maxima-mode' and
> `inferior-maxima-mode'
> To: emacs-pretest-bug@gnu.org
>
> When using C-h S (`info-lookup-symbol') on a maxima function that has
> a number in its name, the emacs function is unable to find the name
> in the index of the maxima info manual.
>
> AFAIK, this patch solved the problem for me:
>
> - --- orig/lisp/info-look.el
> +++ mod/lisp/info-look.el
> @@ -843,12 +843,13 @@
> (info-lookup-maybe-add-help
> :mode 'maxima-mode
> :ignore-case t
> - - :regexp "[a-zA-Z_%]+"
> + :regexp "[a-zA-Z0-9_%]+"
> :doc-spec '( ("(maxima)Function and Variable Index" nil
> "^ -+ [^:]+:[ ]+\\(\\[[^=]*=[ ]+\\)?" nil)))
>
> (info-lookup-maybe-add-help
> :mode 'inferior-maxima-mode
> + :regexp "[a-zA-Z0-9_%]+"
> :other-modes '(maxima-mode))
>
> ;; coreutils and bash builtins overlap in places, eg. printf, so there's a
>
> Best Regards,
> Andrea Russo.
>
> In GNU Emacs 22.0.50.6 (i686-pc-linux-gnu, GTK+ Version 2.8.20)
> of 2006-10-12 on onosendai.org
> X server distributor `The X.Org Foundation', version 11.0.70000000
> configured using `configure '--with-gtk' '--without-toolkit-scroll-bars''
>
> 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.UTF-8
> locale-coding-system: utf-8
> default-enable-multibyte-characters: t
>
> Major mode: Inferior Maxima
>
> Minor modes in effect:
> erc-truncate-mode: t
> erc-track-mode: t
> erc-sound-mode: t
> erc-ring-mode: t
> erc-pcomplete-mode: t
> erc-notify-mode: t
> erc-netsplit-mode: t
> erc-match-mode: t
> erc-log-mode: t
> erc-button-mode: t
> erc-fill-mode: t
> erc-stamp-mode: t
> erc-autoaway-mode: t
> erc-list-mode: t
> erc-smiley-mode: t
> erc-readonly-mode: t
> erc-scrolltobottom-mode: t
> recentf-mode: t
> icomplete-mode: t
> which-function-mode: t
> iswitchb-mode: t
> desktop-save-mode: t
> jabber-activity-mode: t
> display-battery-mode: t
> display-time-mode: t
> tooltip-mode: t
> mouse-wheel-mode: t
> menu-bar-mode: t
> file-name-shadow-mode: t
> global-font-lock-mode: t
> font-lock-mode: t
> unify-8859-on-encoding-mode: t
> utf-translate-cjk-mode: t
> auto-compression-mode: t
> size-indication-mode: t
> column-number-mode: t
> line-number-mode: t
> transient-mark-mode: t
>
> Recent input:
> C-n C-n C-n C-n C-n C-n C-n C-n C-n C-n C-n C-n C-n
> C-n C-p C-SPC C-n M-> C-p C-p C-p C-p C-p C-p C-p C-p
> C-n M-w h g g q s s s s s s s s s s C-x b m a x i C-g
> M-x i m a x i m a RET l <backspace> p l o t 2 <M-tab>
> <M-tab> <backspace> <backspace> 3 <M-tab> <M-tab> <M-tab>
> <M-tab> C-h S RET C-x 1 <M-backspace> M-x r e p o r
> t - b u <tab> <backspace> <backspace> e m a <tab> b
> <tab> RET
>
> Recent messages:
> Checking new news...
> nnml: Reading incoming mail from file...
> nnml: Reading incoming mail (no new mail)...done
> Checking new news...done
> (No changes need to be saved) [9 times]
> Retrieving newsgroup: list.emacs-devel.gnu.org...
> Fetching headers for list.emacs-devel.gnu.org...done
> Scoring...done
> Generating summary...done
> Loading hippie-exp...done
>
> - --
> Reclama i tuoi diritti digitali, elimina il DRM. Approfondisci su
> http://www.no1984.org
> Reclaim your digital rights, eliminate DRM. Learn more at
> http://www.defectivebydesign.org/what_is_drm
>
>
> _______________________________________________
> emacs-pretest-bug mailing list
> emacs-pretest-bug@gnu.org
> http://lists.gnu.org/mailman/listinfo/emacs-pretest-bug
> ----------
>
>
>
> _______________________________________________
> Emacs-devel mailing list
> Emacs-devel@gnu.org
> http://lists.gnu.org/mailman/listinfo/emacs-devel
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [rastandy@salug.it: minor bug for `info-lookup-symbol' in `maxima-mode' and `inferior-maxima-mode']
2006-10-13 11:19 [rastandy@salug.it: minor bug for `info-lookup-symbol' in `maxima-mode' and `inferior-maxima-mode'] Richard Stallman
2006-10-13 14:53 ` Chong Yidong
@ 2006-10-13 19:21 ` Eli Zaretskii
2006-10-14 10:07 ` Richard Stallman
1 sibling, 1 reply; 5+ messages in thread
From: Eli Zaretskii @ 2006-10-13 19:21 UTC (permalink / raw)
Cc: emacs-devel
> From: Richard Stallman <rms@gnu.org>
> Date: Fri, 13 Oct 2006 07:19:20 -0400
>
> Would someone please install this?
Someone already did, but they didn't commit the changes to ChangeLog.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [rastandy@salug.it: minor bug for `info-lookup-symbol' in `maxima-mode' and `inferior-maxima-mode']
2006-10-13 19:21 ` Eli Zaretskii
@ 2006-10-14 10:07 ` Richard Stallman
2006-10-14 13:03 ` Eli Zaretskii
0 siblings, 1 reply; 5+ messages in thread
From: Richard Stallman @ 2006-10-14 10:07 UTC (permalink / raw)
Cc: emacs-devel
Someone already did, but they didn't commit the changes to ChangeLog.
Could you put them in ChangeLog?
By the way, I made a small change in files.el whose entry in ChangeLog
is not yet checked in. This is because of some network problems.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [rastandy@salug.it: minor bug for `info-lookup-symbol' in `maxima-mode' and `inferior-maxima-mode']
2006-10-14 10:07 ` Richard Stallman
@ 2006-10-14 13:03 ` Eli Zaretskii
0 siblings, 0 replies; 5+ messages in thread
From: Eli Zaretskii @ 2006-10-14 13:03 UTC (permalink / raw)
Cc: emacs-devel
> From: Richard Stallman <rms@gnu.org>
> CC: emacs-devel@gnu.org
> Date: Sat, 14 Oct 2006 06:07:32 -0400
>
> Someone already did, but they didn't commit the changes to ChangeLog.
>
> Could you put them in ChangeLog?
Done.
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2006-10-14 13:03 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-10-13 11:19 [rastandy@salug.it: minor bug for `info-lookup-symbol' in `maxima-mode' and `inferior-maxima-mode'] Richard Stallman
2006-10-13 14:53 ` Chong Yidong
2006-10-13 19:21 ` Eli Zaretskii
2006-10-14 10:07 ` Richard Stallman
2006-10-14 13:03 ` Eli Zaretskii
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.