[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: @* in @defmac?
From: |
Karl Berry |
Subject: |
Re: @* in @defmac? |
Date: |
Fri, 20 Jun 2003 13:33:01 -0400 |
But the output (for info) is:
- Macro: do ({var | (var [init [step]])}*)
<p>(end-test {result}*)
Thanks for the report. Here's a patch, embarrassing as it is :). Let
me know if you find other problems with that huge manual ...
*** defun.c 9 May 2003 23:51:10 -0000 1.6
--- defun.c 20 Jun 2003 17:29:08 -0000 1.7
***************
*** 245,253 ****
{
/* Within @deffn and friends, texinfo.tex makes parentheses
sans serif and brackets bold. We use roman instead. */
! insert_html_tag (START, "");
add_char (defun_arg[0]);
! insert_html_tag (END, "");
}
else if (defun_arg[0] == '&')
if (html)
--- 245,257 ----
{
/* Within @deffn and friends, texinfo.tex makes parentheses
sans serif and brackets bold. We use roman instead. */
! if (html)
! insert_html_tag (START, "");
!
add_char (defun_arg[0]);
!
! if (html)
! insert_html_tag (END, "");
}
else if (defun_arg[0] == '&')
if (html)