unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
* [e.fennema@tiscali.nl: Man reading problem]
@ 2007-11-10  3:00 Richard Stallman
  2007-11-10 22:57 ` Juri Linkov
  0 siblings, 1 reply; 5+ messages in thread
From: Richard Stallman @ 2007-11-10  3:00 UTC (permalink / raw)
  To: emacs-devel

Would someone please DTRT then ack?

------- Start of forwarded message -------
X-Spam-Status: No, score=0.0 required=5.0 tests=UNPARSEABLE_RELAY 
	autolearn=failed version=3.1.0
Date: Fri, 09 Nov 2007 18:01:14 +0100
From: Enno Fennema <e.fennema@tiscali.nl>
MIME-Version: 1.0
To: bug-gnu-emacs@gnu.org
Content-Type: text/plain; charset=us-ascii; format=flowed
Subject: Man reading problem

I am using GNU Emacs 22.1.1 part of SuSE Linux 10.3 x86_64. I canot read 
the complete man page for udev as the buffer ends after the line "The 
following keys can get values assigned:

A fragment of the udev.7 file is
...
The following keys can get values assigned:
.PP
\fBNAME\fR
.RS 4
...

Replacing \fBNAME\fR by almost anything eg. \fBNAMF\fR cures the problem
but obviously prints NAMF rather than NAME.

The man page displays in full when invoked in a terminal with man.

Looks like a bug but appreciate your view.

Regards,
Enno Fennema
------- End of forwarded message -------

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [e.fennema@tiscali.nl: Man reading problem]
  2007-11-10  3:00 [e.fennema@tiscali.nl: Man reading problem] Richard Stallman
@ 2007-11-10 22:57 ` Juri Linkov
  2007-11-11 13:57   ` Stefan Monnier
  2007-11-11 19:33   ` Richard Stallman
  0 siblings, 2 replies; 5+ messages in thread
From: Juri Linkov @ 2007-11-10 22:57 UTC (permalink / raw)
  To: rms; +Cc: e.fennema, emacs-devel

> Would someone please DTRT then ack?
>
> From: Enno Fennema <e.fennema@tiscali.nl>
> Subject: Man reading problem
> To: bug-gnu-emacs@gnu.org
> Date: Fri, 09 Nov 2007 18:01:14 +0100
>
> I am using GNU Emacs 22.1.1 part of SuSE Linux 10.3 x86_64. I canot read
> the complete man page for udev as the buffer ends after the line "The
> following keys can get values assigned:
>
> A fragment of the udev.7 file is
> ...
> The following keys can get values assigned:
> .PP
> \fBNAME\fR
> .RS 4
> ...
>
> Replacing \fBNAME\fR by almost anything eg. \fBNAMF\fR cures the problem
> but obviously prints NAMF rather than NAME.
>
> The man page displays in full when invoked in a terminal with man.
>
> Looks like a bug but appreciate your view.

Inside this manpage there is a "NAME" heading with leading spaces that
splits it into two pages (the second page is available by `M-n').
But this splitting is wrong.  This bug is caused by the regexp in
`Man-first-heading-regexp' that allows leading spaces.  This is strange
given that `Man-heading-regexp' defines a heading without leading spaces.

The patch below removes the leading spaces from `Man-first-heading-regexp'
because the main regexp for headings `Man-heading-regexp' doesn't have them.

BTW, I also noticed that `Man-heading-regexp' doesn't recognize heading
with numbers (e.g. "X11 FORWARDING" in `man ssh'), so I also added
"[0-9]" to `Man-heading-regexp':

Index: lisp/man.el
===================================================================
RCS file: /sources/emacs/emacs/lisp/man.el,v
retrieving revision 1.172
diff -c -r1.172 man.el
*** lisp/man.el	13 Sep 2007 08:04:38 -0000	1.172
--- lisp/man.el	10 Nov 2007 22:56:48 -0000
***************
*** 264,277 ****
  	    "(\\(" Man-section-regexp "\\))\\).*\\1"))
    "Regular expression describing the heading of a page.")
  
! (defvar Man-heading-regexp "^\\([A-Z][A-Z /-]+\\)$"
    "Regular expression describing a manpage heading entry.")
  
  (defvar Man-see-also-regexp "SEE ALSO"
    "Regular expression for SEE ALSO heading (or your equivalent).
  This regexp should not start with a `^' character.")
  
! (defvar Man-first-heading-regexp "^[ \t]*NAME$\\|^[ \t]*No manual entry fo.*$"
    "Regular expression describing first heading on a manpage.
  This regular expression should start with a `^' character.")
  
--- 264,277 ----
  	    "(\\(" Man-section-regexp "\\))\\).*\\1"))
    "Regular expression describing the heading of a page.")
  
! (defvar Man-heading-regexp "^\\([A-Z][A-Z0-9 /-]+\\)$"
    "Regular expression describing a manpage heading entry.")
  
  (defvar Man-see-also-regexp "SEE ALSO"
    "Regular expression for SEE ALSO heading (or your equivalent).
  This regexp should not start with a `^' character.")
  
! (defvar Man-first-heading-regexp "^NAME$\\|^[ \t]*No manual entry fo.*$"
    "Regular expression describing first heading on a manpage.
  This regular expression should start with a `^' character.")
  

-- 
Juri Linkov
http://www.jurta.org/emacs/

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [e.fennema@tiscali.nl: Man reading problem]
  2007-11-10 22:57 ` Juri Linkov
@ 2007-11-11 13:57   ` Stefan Monnier
  2007-11-11 21:45     ` Juri Linkov
  2007-11-11 19:33   ` Richard Stallman
  1 sibling, 1 reply; 5+ messages in thread
From: Stefan Monnier @ 2007-11-11 13:57 UTC (permalink / raw)
  To: Juri Linkov; +Cc: e.fennema, rms, emacs-devel

> The patch below removes the leading spaces from `Man-first-heading-regexp'
> because the main regexp for headings `Man-heading-regexp' doesn't have them.

Please add a comment about this change in the code.


        Stefan

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [e.fennema@tiscali.nl: Man reading problem]
  2007-11-10 22:57 ` Juri Linkov
  2007-11-11 13:57   ` Stefan Monnier
@ 2007-11-11 19:33   ` Richard Stallman
  1 sibling, 0 replies; 5+ messages in thread
From: Richard Stallman @ 2007-11-11 19:33 UTC (permalink / raw)
  To: Juri Linkov; +Cc: e.fennema, emacs-devel

If nobody points out a problem in your patch in
a few days, please install it.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [e.fennema@tiscali.nl: Man reading problem]
  2007-11-11 13:57   ` Stefan Monnier
@ 2007-11-11 21:45     ` Juri Linkov
  0 siblings, 0 replies; 5+ messages in thread
From: Juri Linkov @ 2007-11-11 21:45 UTC (permalink / raw)
  To: Stefan Monnier; +Cc: e.fennema, rms, emacs-devel

>> The patch below removes the leading spaces from `Man-first-heading-regexp'
>> because the main regexp for headings `Man-heading-regexp' doesn't have them.
>
> Please add a comment about this change in the code.

OK, will do in the trunk and Emacs-22.

-- 
Juri Linkov
http://www.jurta.org/emacs/

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2007-11-11 21:45 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-11-10  3:00 [e.fennema@tiscali.nl: Man reading problem] Richard Stallman
2007-11-10 22:57 ` Juri Linkov
2007-11-11 13:57   ` Stefan Monnier
2007-11-11 21:45     ` Juri Linkov
2007-11-11 19:33   ` Richard Stallman

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).