unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
* bug#13105: [PATCH] describe-variable shows name of the wrong buffer
@ 2012-12-06 18:54 Kelly Dean
  2012-12-21  3:39 ` Chong Yidong
  0 siblings, 1 reply; 2+ messages in thread
From: Kelly Dean @ 2012-12-06 18:54 UTC (permalink / raw)
  To: 13105

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

On 24.2, describe-variable shows the name of the current buffer, even if passed a different buffer.
Apply the attached descfunorvar.patch (see my post to emacs-devel, "Unify fn and var help to make learning elisp a little easier" for details) to 24.2. Then do emacs -Q, then
C-SPC C-h o mark-active RET

It says, "Its value is t
Local in buffer *Help*"

It should say, "Its value is t
Local in buffer *scratch*"

The attached helpfnsbug.patch fixes the bug.

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: descfunorvar.patch --]
[-- Type: text/x-diff; name="descfunorvar.patch", Size: 3385 bytes --]

--- emacs-24.2/lisp/help-fns.el
+++ emacs-24.2/lisp/help-fns.el
@@ -897,6 +897,37 @@
 
 
 ;;;###autoload
+(defun describe-function-or-variable (symbol &optional buffer frame)
+  "Display the full documentation of the function or variable SYMBOL.
+If SYMBOL is a variable and has a buffer-local value in BUFFER or FRAME
+\(default to the current buffer and current frame), it is displayed along
+with the global value."
+  (interactive
+   (let* ((v-or-f (variable-at-point))
+	 (found (symbolp v-or-f))
+	 (v-or-f (if found v-or-f (function-called-at-point)))
+	 (found (or found v-or-f))
+	 (enable-recursive-minibuffers t)
+	 val)
+     (setq val (completing-read (if found
+				    (format
+				     "Describe function or variable (default %s): " v-or-f)
+				  "Describe function or variable: ")
+				obarray
+				(lambda (vv)
+				  (or (fboundp vv)
+				      (get vv 'variable-documentation)
+				      (and (boundp vv) (not (keywordp vv)))))
+				t nil nil
+				(if found (symbol-name v-or-f))))
+     (list (if (equal val "")
+	       v-or-f (intern val)))))
+  (if (not (symbolp symbol)) (message "You didn't specify a function or variable")
+    (unless (buffer-live-p buffer) (setq buffer (current-buffer)))
+    (unless (frame-live-p frame) (setq frame (selected-frame)))
+    (help-xref-interned symbol buffer frame)))
+
+;;;###autoload
 (defun describe-syntax (&optional buffer)
   "Describe the syntax specifications in the syntax table of BUFFER.
 The descriptions are inserted in a help buffer, which is then displayed.
--- emacs-24.2/lisp/help-mode.el
+++ emacs-24.2/lisp/help-mode.el
@@ -627,10 +627,13 @@
 
 \f
 ;; Additional functions for (re-)creating types of help buffers.
-(defun help-xref-interned (symbol)
+
+;;;###autoload
+(defun help-xref-interned (symbol &optional buffer frame)
   "Follow a hyperlink which appeared to be an arbitrary interned SYMBOL.
 Both variable, function and face documentation are extracted into a single
-help buffer."
+help buffer. If SYMBOL is a variable, include buffer-local value for optional
+BUFFER or FRAME."
   (with-current-buffer (help-buffer)
     ;; Push the previous item on the stack before clobbering the output buffer.
     (help-setup-xref nil nil)
@@ -646,7 +649,7 @@
 			  (get symbol 'variable-documentation))
 		  ;; Don't record the current entry in the stack.
 		  (setq help-xref-stack-item nil)
-		  (describe-variable symbol))))
+		  (describe-variable symbol buffer frame))))
       (cond
        (sdoc
 	;; We now have a help buffer on the variable.
--- emacs-24.2/lisp/help.el
+++ emacs-24.2/lisp/help.el
@@ -90,6 +90,7 @@
     (define-key map "k" 'describe-key)
     (define-key map "l" 'view-lossage)
     (define-key map "m" 'describe-mode)
+    (define-key map "o" 'describe-function-or-variable)
     (define-key map "n" 'view-emacs-news)
     (define-key map "p" 'finder-by-keyword)
     (define-key map "P" 'describe-package)
@@ -215,6 +216,7 @@
 m           Display documentation of current minor modes and current major mode,
               including their special commands.
 n           Display news of recent Emacs changes.
+o SYMBOL    Display the given function or variable's documentation and value.
 p TOPIC     Find packages matching a given topic keyword.
 r           Display the Emacs manual in Info mode.
 s           Display contents of current syntax table, plus explanations.

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #3: helpfnsbug.patch --]
[-- Type: text/x-diff; name="helpfnsbug.patch", Size: 610 bytes --]

--- emacs-24.2/lisp/help-fns.el	2012-08-22 22:33:42.000000000 -0700
+++ emacs-24.2/lisp/help-fns.el.new2	2012-12-04 14:15:45.296692483 -0700
@@ -742,7 +742,7 @@
                 (princ (format "%socal in buffer %s; "
                                (if (get variable 'permanent-local)
                                    "Permanently l" "L")
-                               (buffer-name))))
+                               (with-current-buffer buffer (buffer-name)))))
                ((framep locus)
                 (princ (format "It is a frame-local variable; ")))
                ((terminal-live-p locus)

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

* bug#13105: [PATCH] describe-variable shows name of the wrong buffer
  2012-12-06 18:54 bug#13105: [PATCH] describe-variable shows name of the wrong buffer Kelly Dean
@ 2012-12-21  3:39 ` Chong Yidong
  0 siblings, 0 replies; 2+ messages in thread
From: Chong Yidong @ 2012-12-21  3:39 UTC (permalink / raw)
  To: Kelly Dean; +Cc: 13105-done

Kelly Dean <kellydeanch@yahoo.com> writes:

> On 24.2, describe-variable shows the name of the current buffer, even
> if passed a different buffer.
> Apply the attached descfunorvar.patch (see my post to emacs-devel,
> "Unify fn and var help to make learning elisp a little easier" for
> details) to 24.2. Then do emacs -Q, then
> C-SPC C-h o mark-active RET

I committed a slightly simpler fix.  Thanks.





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

end of thread, other threads:[~2012-12-21  3:39 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-12-06 18:54 bug#13105: [PATCH] describe-variable shows name of the wrong buffer Kelly Dean
2012-12-21  3:39 ` Chong Yidong

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