*** help-mode.el Sun Jun 10 17:46:38 2007 --- help-mode.el Mon Jun 11 08:44:02 2007 *************** *** 500,515 **** (while (and (not (bobp)) (bolp)) (delete-char -1)) (insert "\n") ;; Make a back-reference in this buffer if appropriate. (when help-xref-stack - (insert "\n") (help-insert-xref-button help-back-label 'help-back ! (current-buffer)) ! (insert "\t")) ;; Make a forward-reference in this buffer if appropriate. (when help-xref-forward-stack (help-insert-xref-button help-forward-label 'help-forward ! (current-buffer)) (insert "\n"))) ;; View mode steals RET from us. (set (make-local-variable 'minor-mode-overriding-map-alist) --- 500,518 ---- (while (and (not (bobp)) (bolp)) (delete-char -1)) (insert "\n") + (when (or help-xref-stack help-xref-forward-stack) + (insert "\n")) ;; Make a back-reference in this buffer if appropriate. (when help-xref-stack (help-insert-xref-button help-back-label 'help-back ! (current-buffer))) ;; Make a forward-reference in this buffer if appropriate. (when help-xref-forward-stack + (when help-xref-stack + (insert "\t")) (help-insert-xref-button help-forward-label 'help-forward ! (current-buffer))) ! (when (or help-xref-stack help-xref-forward-stack) (insert "\n"))) ;; View mode steals RET from us. (set (make-local-variable 'minor-mode-overriding-map-alist)