unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
* Re: Forward button in help buffer
       [not found] ` <E1DY9ZF-0006sS-5u@fencepost.gnu.org>
@ 2005-05-18  2:42   ` Nick Roberts
  2005-05-18 22:45     ` Richard Stallman
  2005-05-19  8:40     ` Matt Hodges
  0 siblings, 2 replies; 3+ messages in thread
From: Nick Roberts @ 2005-05-18  2:42 UTC (permalink / raw)
  Cc: emacs-devel

 > I think this is simply a new feature, not fixing a problem.

Sure, just like Unicode is a new feature.

 > Emacs is not incomplete or broken without it.

Navigating the help buffer without a forward button is tedious. This
is a small patch.

 > So please save it for after the next release.
 
You've just said that we're not close to being ready. Then presumably
there will be an extensive pretest period. I can't begin to imagine how
far away the "next release" is.

 > But thanks for implementing it.  Please do install it once
 > the release is out.

Its your choice. I know from experience you won't change your mind, so
how about these two changes:

1) A back button when describe-face is called from list-faces-display
   to take it back to the list of faces.

2) Removing hyperlinking in a variable's value. These are
   quite frequently inappropriate e.g C-h v <RET> features <RET>,
   C-h v <RET> gud-minor-mode <RET>


Nick


*** /home/nick/emacs/lisp/faces.el.~1.306.~	2005-05-16 23:57:10.000000000 +1200
--- /home/nick/emacs/lisp/faces.el	2005-05-18 11:11:16.000000000 +1200
***************
*** 1184,1189 ****
--- 1184,1190 ----
  	  (save-excursion
  	    (save-match-data
  	      (search-backward face-name)
+ 	      (setq help-xref-stack-item '(list-faces-display))
  	      (help-xref-button 0 'help-customize-face face)))
  	  (let ((beg (point))
  		(line-beg (line-beginning-position)))


diff -c /home/nick/emacs/lisp/help-fns.el.\~1.66.\~ /home/nick/emacs/lisp/help-fns.el
*** /home/nick/emacs/lisp/help-fns.el.~1.66.~	2005-03-31 17:28:17.000000000 +1200
--- /home/nick/emacs/lisp/help-fns.el	2005-05-17 23:15:24.000000000 +1200
***************
*** 535,541 ****
  		(terpri)
  		(let ((from (point)))
  		  (pp val)
! 		  (help-xref-on-pp from (point))
  		  (if (< (point) (+ from 20))
  		      (delete-region (1- from) from)))))
  	    (terpri)
--- 535,541 ----
  		(terpri)
  		(let ((from (point)))
  		  (pp val)
! ;		  (help-xref-on-pp from (point))
  		  (if (< (point) (+ from 20))
  		      (delete-region (1- from) from)))))
  	    (terpri)
***************
*** 556,562 ****
  		    ;; sensible size before prettyprinting.  -- fx
  		    (let ((from (point)))
  		      (pp val)
! 		      (help-xref-on-pp from (point))
  		      (if (< (point) (+ from 20))
  			(delete-region (1- from) from))))))
  	      (terpri))
--- 556,562 ----
  		    ;; sensible size before prettyprinting.  -- fx
  		    (let ((from (point)))
  		      (pp val)
! ;		      (help-xref-on-pp from (point))
  		      (if (< (point) (+ from 20))
  			(delete-region (1- from) from))))))
  	      (terpri))

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

* Re: Forward button in help buffer
  2005-05-18  2:42   ` Forward button in help buffer Nick Roberts
@ 2005-05-18 22:45     ` Richard Stallman
  2005-05-19  8:40     ` Matt Hodges
  1 sibling, 0 replies; 3+ messages in thread
From: Richard Stallman @ 2005-05-18 22:45 UTC (permalink / raw)
  Cc: emacs-devel

     > I think this is simply a new feature, not fixing a problem.

    Sure, just like Unicode is a new feature.

Yes.  We are not considering adding any further Unicode support into
the coming release.

    1) A back button when describe-face is called from list-faces-display
       to take it back to the list of faces.

    2) Removing hyperlinking in a variable's value. These are
       quite frequently inappropriate e.g C-h v <RET> features <RET>,
       C-h v <RET> gud-minor-mode <RET>

Please do fix these two bugs.

    ! ;		  (help-xref-on-pp from (point))

Please add a comment saying why that was turned off.

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

* Re: Forward button in help buffer
  2005-05-18  2:42   ` Forward button in help buffer Nick Roberts
  2005-05-18 22:45     ` Richard Stallman
@ 2005-05-19  8:40     ` Matt Hodges
  1 sibling, 0 replies; 3+ messages in thread
From: Matt Hodges @ 2005-05-19  8:40 UTC (permalink / raw)
  Cc: Nick Roberts

[-- Attachment #1: Type: text/plain, Size: 425 bytes --]

>>>>> Nick Roberts writes:

 > 1) A back button when describe-face is called from
 > list-faces-display to take it back to the list of faces.

As implemented, this doesn't work correctly when list-faces-display is
called with a prefix arg, and a regexp specified.  Patch attached.

Thanks.

2005-05-19  Matt Hodges  <MPHodges@member.fsf.org>

	* faces.el (list-faces-display): Make back button respect optional
	regexp arg.


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: faces.el patch. --]
[-- Type: text/x-patch, Size: 630 bytes --]

Index: lisp/faces.el
===================================================================
RCS file: /cvsroot/emacs/emacs/lisp/faces.el,v
retrieving revision 1.307
diff -u -r1.307 faces.el
--- lisp/faces.el	19 May 2005 00:12:37 -0000	1.307
+++ lisp/faces.el	19 May 2005 08:27:29 -0000
@@ -1184,7 +1184,7 @@
 	  (save-excursion
 	    (save-match-data
 	      (search-backward face-name)
-	      (setq help-xref-stack-item '(list-faces-display))
+	      (setq help-xref-stack-item `(list-faces-display ,regexp))
 	      (help-xref-button 0 'help-customize-face face)))
 	  (let ((beg (point))
 		(line-beg (line-beginning-position)))

[-- Attachment #3: Type: text/plain, Size: 142 bytes --]

_______________________________________________
Emacs-devel mailing list
Emacs-devel@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-devel

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

end of thread, other threads:[~2005-05-19  8:40 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <17033.32714.752829.223651@farnswood.snap.net.nz>
     [not found] ` <E1DY9ZF-0006sS-5u@fencepost.gnu.org>
2005-05-18  2:42   ` Forward button in help buffer Nick Roberts
2005-05-18 22:45     ` Richard Stallman
2005-05-19  8:40     ` Matt Hodges

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