emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/woman.el


From: Juanma Barranquero
Subject: [Emacs-diffs] Changes to emacs/lisp/woman.el
Date: Wed, 02 Apr 2003 16:24:05 -0500

Index: emacs/lisp/woman.el
diff -c emacs/lisp/woman.el:1.15 emacs/lisp/woman.el:1.16
*** emacs/lisp/woman.el:1.15    Fri Jan 31 10:18:38 2003
--- emacs/lisp/woman.el Wed Apr  2 16:24:04 2003
***************
*** 1059,1071 ****
  Default is '(?n ?e ?o).  Set via `woman-emulation'.")
  
  
- ;;; Button types:
- 
- (define-button-type 'woman-xref
-   'action (lambda (button) (woman (button-label button)))
-   'help-echo "RET, mouse-2: display this man page")
- 
- 
  ;;; Specialized utility functions:
  
  ;;; Fast deletion without saving on the kill ring (cf. simple.el):
--- 1059,1064 ----
***************
*** 1869,1875 ****
      (setq woman-imenu-done nil)
      (if woman-imenu (woman-imenu))
      (setq buffer-read-only nil)
!     (WoMan-highlight-references)
      (setq buffer-read-only t)
      (set-buffer-modified-p nil)))
  
--- 1862,1868 ----
      (setq woman-imenu-done nil)
      (if woman-imenu (woman-imenu))
      (setq buffer-read-only nil)
!     (Man-highlight-references)
      (setq buffer-read-only t)
      (set-buffer-modified-p nil)))
  
***************
*** 1963,1983 ****
         (time (+ (* (- (car time) (car WoMan-Man-start-time)) 65536)
                  (- (cadr time) (cadr WoMan-Man-start-time)))))
      (message "Man formatting done in %d seconds" time)))
- 
- (defun WoMan-highlight-references ()
-   "Highlight the references (in the SEE ALSO section) on mouse-over."
-   ;; Based on `Man-build-references-alist' in `man'.
-   (when (Man-find-section Man-see-also-regexp)
-     (forward-line 1)
-     (let ((end (save-excursion
-                (Man-next-section 1)
-                (point))))
-       (back-to-indentation)
-       (while (re-search-forward Man-reference-regexp end t)
-       ;; Highlight reference when mouse is over it.
-       ;; (NB: WoMan does not hyphenate!)
-       (make-text-button (match-beginning 1) (match-end 1)
-                         'type 'woman-xref)))))
  
  
  ;;; Buffer handling:
--- 1956,1961 ----




reply via email to

[Prev in Thread] Current Thread [Next in Thread]