diff options
| author | Martin Rudalics | 2007-06-20 07:59:07 +0000 |
|---|---|---|
| committer | Martin Rudalics | 2007-06-20 07:59:07 +0000 |
| commit | ea3da5b9e65ed1085c9a4c7d69e57b346fbccbce (patch) | |
| tree | 9cbf21799328fb454887cdae074126954410de59 | |
| parent | 9d3cc9b2b54142f42b0a9c68532d8c9a2b3d4fc8 (diff) | |
| download | emacs-ea3da5b9e65ed1085c9a4c7d69e57b346fbccbce.tar.gz emacs-ea3da5b9e65ed1085c9a4c7d69e57b346fbccbce.zip | |
(help-make-xrefs): Adjust position of new forward
button.
| -rw-r--r-- | lisp/ChangeLog | 10 | ||||
| -rw-r--r-- | lisp/help-mode.el | 11 |
2 files changed, 17 insertions, 4 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index b31f7fce041..dfa56972c1a 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,13 @@ | |||
| 1 | 2007-06-20 Martin Rudalics <rudalics@gmx.at> | ||
| 2 | |||
| 3 | * mouse.el (mouse-drag-mode-line-1): Quit mouse tracking when | ||
| 4 | event is not a cons cell. Do not unread drag-mouse-1 events. | ||
| 5 | Select right window in check whether space was stolen from | ||
| 6 | window above. | ||
| 7 | |||
| 8 | * help-mode.el (help-make-xrefs): Adjust position of new forward | ||
| 9 | button. | ||
| 10 | |||
| 1 | 2007-06-20 Riccardo Murri <riccardo.murri@gmail.com> | 11 | 2007-06-20 Riccardo Murri <riccardo.murri@gmail.com> |
| 2 | 12 | ||
| 3 | * vc-bzr.el (vc-bzr-with-process-environment) | 13 | * vc-bzr.el (vc-bzr-with-process-environment) |
diff --git a/lisp/help-mode.el b/lisp/help-mode.el index f7c33d85286..98b27623ce0 100644 --- a/lisp/help-mode.el +++ b/lisp/help-mode.el | |||
| @@ -500,16 +500,19 @@ that." | |||
| 500 | (while (and (not (bobp)) (bolp)) | 500 | (while (and (not (bobp)) (bolp)) |
| 501 | (delete-char -1)) | 501 | (delete-char -1)) |
| 502 | (insert "\n") | 502 | (insert "\n") |
| 503 | (when (or help-xref-stack help-xref-forward-stack) | ||
| 504 | (insert "\n")) | ||
| 503 | ;; Make a back-reference in this buffer if appropriate. | 505 | ;; Make a back-reference in this buffer if appropriate. |
| 504 | (when help-xref-stack | 506 | (when help-xref-stack |
| 505 | (insert "\n") | ||
| 506 | (help-insert-xref-button help-back-label 'help-back | 507 | (help-insert-xref-button help-back-label 'help-back |
| 507 | (current-buffer)) | 508 | (current-buffer))) |
| 508 | (insert "\t")) | ||
| 509 | ;; Make a forward-reference in this buffer if appropriate. | 509 | ;; Make a forward-reference in this buffer if appropriate. |
| 510 | (when help-xref-forward-stack | 510 | (when help-xref-forward-stack |
| 511 | (when help-xref-stack | ||
| 512 | (insert "\t")) | ||
| 511 | (help-insert-xref-button help-forward-label 'help-forward | 513 | (help-insert-xref-button help-forward-label 'help-forward |
| 512 | (current-buffer)) | 514 | (current-buffer))) |
| 515 | (when (or help-xref-stack help-xref-forward-stack) | ||
| 513 | (insert "\n"))) | 516 | (insert "\n"))) |
| 514 | ;; View mode steals RET from us. | 517 | ;; View mode steals RET from us. |
| 515 | (set (make-local-variable 'minor-mode-overriding-map-alist) | 518 | (set (make-local-variable 'minor-mode-overriding-map-alist) |