X-Git-Url: http://git.hcoop.net/bpt/emacs.git/blobdiff_plain/bd358779861f265a7acff31ead40172735af693e..3bf234fa520ff90db31fae85f306befdadb24532:/lisp/hilit-chg.el diff --git a/lisp/hilit-chg.el b/lisp/hilit-chg.el index 17b91245d6..0960aeed61 100644 --- a/lisp/hilit-chg.el +++ b/lisp/hilit-chg.el @@ -1,6 +1,6 @@ ;;; hilit-chg.el --- minor mode displaying buffer changes with special face -;; Copyright (C) 1998, 2000-2013 Free Software Foundation, Inc. +;; Copyright (C) 1998, 2000-2014 Free Software Foundation, Inc. ;; Author: Richard Sharman ;; Keywords: faces @@ -333,7 +333,7 @@ enable the mode if ARG is omitted or nil. When Highlight Changes is enabled, changes are marked with a text property. Normally they are displayed in a distinctive face, but -command \\[highlight-changes-visible-mode] can be used to toggles +command \\[highlight-changes-visible-mode] can be used to toggle this on and off. Other functions for buffers in this mode include: @@ -379,7 +379,7 @@ in a distinctive face. The default value can be customized with variable `highlight-changes-visibility-initial-state'. -This command does not itself set highlight-changes mode." +This command does not itself set Highlight Changes mode." t ;; init-value nil ;; lighter @@ -455,7 +455,7 @@ Otherwise, this list will be constructed when needed from "Call function FUNC for each region used by Highlight Changes mode. If START-POSITION is nil, (point-min) is used. If END-POSITION is nil, (point-max) is used. -FUNC is called with 3 params: PROPERTY START STOP." +FUNC is called with three params: PROPERTY START STOP." (let ((start (or start-position (point-min))) (limit (or end-position (point-max))) prop end) @@ -470,8 +470,8 @@ FUNC is called with 3 params: PROPERTY START STOP." (defun hilit-chg-display-changes (&optional beg end) "Display face information for Highlight Changes mode. -An overlay from BEG to END containing a change face is added from the -information in the text property of type `hilit-chg'. +An overlay from BEG to END containing a change face is added +from the information in the text property of type `hilit-chg'. This is the opposite of `hilit-chg-hide-changes'." (hilit-chg-map-changes 'hilit-chg-make-ov beg end)) @@ -731,7 +731,7 @@ You can automatically rotate colors when the buffer is saved by adding this function to `write-file-functions' as a buffer-local value. To do this, eval the following in the buffer to be saved: - \(add-hook 'write-file-functions 'highlight-changes-rotate-faces nil t)" + (add-hook 'write-file-functions 'highlight-changes-rotate-faces nil t)" (interactive) (when (and highlight-changes-mode highlight-changes-visible-mode) (let ((modified (buffer-modified-p)) @@ -860,7 +860,7 @@ changes are made, so \\[highlight-changes-next-change] and (get-buffer (read-buffer "buffer-a " (current-buffer) t)) (get-buffer (read-buffer "buffer-b " - (window-buffer (next-window (selected-window))) t)))) + (window-buffer (next-window)) t)))) (let ((file-a (buffer-file-name buf-a)) (file-b (buffer-file-name buf-b))) (highlight-markup-buffers buf-a file-a buf-b file-b) @@ -1022,6 +1022,12 @@ This is called when `global-highlight-changes-mode' is turned on." ;; ;; ================== end of debug =============== +(defun hilit-chg-unload-function () + "Unload the Highlight Changes library." + (global-hi-lock-mode -1) + ;; continue standard unloading + nil) + (provide 'hilit-chg) ;;; hilit-chg.el ends here