Fix package.el handling of local variables on first line.
[bpt/emacs.git] / lisp / cedet / pulse.el
index aa9003e..746ee0b 100644 (file)
@@ -1,8 +1,9 @@
 ;;; pulse.el --- Pulsing Overlays
 
-;;; Copyright (C) 2007, 2008, 2009 Free Software Foundation, Inc.
+;;; Copyright (C) 2007-2012 Free Software Foundation, Inc.
 
 ;; Author: Eric M. Ludlam <eric@siege-engine.com>
+;; Version: 1.0
 
 ;; This file is part of GNU Emacs.
 
 ;; highlighted briefly.  This adds a gentle pulsing style to the text
 ;; decorated this way.
 ;;
-;; Useful user functions:
-;;
-;; `pulse-enable-integration-advice' - Turn on advice to make various
-;;      Emacs commands pulse, such as `goto-line', or `find-tag'.
-;;
 ;; The following are useful entry points:
 ;;
 ;; `pulse' - Cause `pulse-highlight-face' to shift toward background color.
@@ -40,7 +36,7 @@
 ;;
 ;; `pulse-momentary-highlight-one-line' - Pulse a single line at POINT.
 ;; `pulse-momentary-highlight-region' - Pulse a region.
-;; `pulse-momentary-highlight-overlay' - Pulse an overlay
+;; `pulse-momentary-highlight-overlay' - Pulse an overlay.
 ;;      These three functions will just blink the specified area if
 ;;      the version of Emacs you are using doesn't support pulsing.
 ;;
@@ -54,7 +50,6 @@
 ;;
 ;; Pulse is a part of CEDET.  http://cedet.sf.net
 
-
 (defun  pulse-available-p ()
   "Return non-nil if pulsing is available on the current frame."
   (condition-case nil
     (error nil)))
 
 (defcustom pulse-flag (pulse-available-p)
-  "*Non-nil means to pulse the overlay face for momentary highlighting.
-Pulsing involves a bright highlight that slowly shifts to the background
-color.  Non-nil just means to highlight with an unchanging color for a short
-time.
+  "Whether to use pulsing for momentary highlighting.
+Pulsing involves a bright highlight that slowly shifts to the
+background color.
+
+If the value is nil, highlight with an unchanging color until a
+key is pressed.
+If the value is `never', do no coloring at all.
+Any other value means to do the default pulsing behavior.
 
 If `pulse-flag' is non-nil, but `pulse-available-p' is nil, then
 this flag is ignored."
@@ -78,7 +77,7 @@ this flag is ignored."
      (:background "#AAAA33"))
     (((class color) (background light))
      (:background "#FFFFAA")))
-  "*Face used at beginning of a highight."
+  "*Face used at beginning of a highlight."
   :group 'pulse)
 
 (defface pulse-highlight-face
@@ -90,24 +89,6 @@ this flag is ignored."
 Face used for temporary highlighting of tags for effect."
   :group 'pulse)
 
-;;; Compatibility
-(defalias 'pulse-overlay-live-p 'overlay-buffer)
-(defalias 'pulse-overlay-put 'overlay-put)
-(defalias 'pulse-overlay-get 'overlay-get)
-(defalias 'pulse-overlay-delete 'delete-overlay)
-(defalias 'pulse-make-overlay 'make-overlay)
-
-(when (featurep 'xemacs)
-  (defalias 'pulse-overlay-live-p
-    (lambda (o)
-      (and (extent-live-p o)
-          (not (extent-detached-p o))
-          (bufferp (extent-buffer o)))))
-  (defalias 'pulse-overlay-put 'set-extent-property)
-  (defalias 'pulse-overlay-get 'extent-property)
-  (defalias 'pulse-overlay-delete 'delete-extent)
-  (defalias 'pulse-make-overlay 'make-extent))
-
 ;;; Code:
 ;;
 (defun pulse-int-to-hex (int &optional nb-digits)
@@ -182,7 +163,7 @@ Return t if there is more drift to do, nil if completed."
 
 (defun pulse (&optional face)
   "Pulse the colors on our highlight face.
-If optional FACE is provide, reset the face to FACE color,
+If optional FACE is provided, reset the face to FACE color,
 instead of `pulse-highlight-start-face'.
 Be sure to call `pulse-reset-face' after calling pulse."
   (unwind-protect
@@ -190,55 +171,7 @@ Be sure to call `pulse-reset-face' after calling pulse."
        (pulse-reset-face face)
        (while (and (pulse-lighten-highlight)
                    (sit-for pulse-delay))
-         nil))
-    ))
-
-(defun pulse-test (&optional no-error)
-  "Test the lightening function for pulsing a line.
-When optional NO-ERROR Don't throw an error if we can't run tests."
-  (interactive)
-  (if (or (not pulse-flag) (not (pulse-available-p)))
-      (if no-error
-         nil
-       (error (concat "Pulse test only works on versions of Emacs"
-                      " that support pulsing")))
-    ;; Run the tests
-    (when (interactive-p)
-      (message "<Press a key> Pulse one line.")
-      (read-char))
-    (pulse-momentary-highlight-one-line (point))
-    (when (interactive-p)
-      (message "<Press a key> Pulse a region.")
-      (read-char))
-    (pulse-momentary-highlight-region (point)
-                                     (save-excursion
-                                       (condition-case nil
-                                           (forward-char 30)
-                                         (error nil))
-                                       (point)))
-    (when (interactive-p)
-      (message "<Press a key> Pulse line a specific color.")
-      (read-char))
-    (pulse-momentary-highlight-one-line (point) 'modeline)
-    (when (interactive-p)
-      (message "<Press a key> Pulse a pre-existing overlay.")
-      (read-char))
-    (let* ((start (point-at-bol))
-          (end (save-excursion
-                 (end-of-line)
-                 (when (not (eobp))
-                   (forward-char 1))
-                 (point)))
-          (o (pulse-make-overlay start end))
-          )
-      (pulse-momentary-highlight-overlay o)
-      (if (pulse-overlay-live-p o)
-         (pulse-overlay-delete o)
-       (error "Non-temporary overlay was deleted!"))
-      )
-    (when (interactive-p)
-      (message "Done!"))))
-
+         nil))))
 
 ;;; Convenience Functions
 ;;
@@ -248,26 +181,25 @@ When optional NO-ERROR Don't throw an error if we can't run tests."
 (defun pulse-momentary-highlight-overlay (o &optional face)
   "Pulse the overlay O, unhighlighting before next command.
 Optional argument FACE specifies the fact to do the highlighting."
-  (pulse-overlay-put o 'original-face (pulse-overlay-get o 'face))
+  (overlay-put o 'original-face (overlay-get o 'face))
   (add-to-list 'pulse-momentary-overlay o)
-  (if (or (not pulse-flag) (not (pulse-available-p)))
-      ;; Provide a face... clear on next command
-      (progn
-       (pulse-overlay-put o 'face (or face 'pulse-highlight-start-face))
-       (add-hook 'pre-command-hook
-                 'pulse-momentary-unhighlight)
-       )
-    ;; pulse it.
-    (unwind-protect
+  (if (eq pulse-flag 'never)
+      nil
+    (if (or (not pulse-flag) (not (pulse-available-p)))
+       ;; Provide a face... clear on next command
        (progn
-         (pulse-overlay-put o 'face 'pulse-highlight-face)
-         ;; The pulse function puts FACE onto 'pulse-highlight-face.
-         ;; Thus above we put our face on the overlay, but pulse
-         ;; with a reference face needed for the color.
-         (pulse face))
-      (pulse-momentary-unhighlight))
-    )
-  )
+         (overlay-put o 'face (or face 'pulse-highlight-start-face))
+         (add-hook 'pre-command-hook
+                   'pulse-momentary-unhighlight))
+      ;; pulse it.
+      (unwind-protect
+         (progn
+           (overlay-put o 'face 'pulse-highlight-face)
+           ;; The pulse function puts FACE onto 'pulse-highlight-face.
+           ;; Thus above we put our face on the overlay, but pulse
+           ;; with a reference face needed for the color.
+           (pulse face))
+       (pulse-momentary-unhighlight)))))
 
 (defun pulse-momentary-unhighlight ()
   "Unhighlight a line recently highlighted."
@@ -277,10 +209,10 @@ Optional argument FACE specifies the fact to do the highlighting."
     ;; clear the starting face
     (mapc
      (lambda (ol)
-       (pulse-overlay-put ol 'face (pulse-overlay-get ol 'original-face))
-       (pulse-overlay-put ol 'original-face nil)
+       (overlay-put ol 'face (overlay-get ol 'original-face))
+       (overlay-put ol 'original-face nil)
        ;; Clear the overlay if it needs deleting.
-       (when (pulse-overlay-get ol 'pulse-delete) (pulse-overlay-delete ol)))
+       (when (overlay-get ol 'pulse-delete) (delete-overlay ol)))
      pulse-momentary-overlay)
 
     ;; Clear the variable.
@@ -290,8 +222,7 @@ Optional argument FACE specifies the fact to do the highlighting."
   (pulse-reset-face)
 
   ;; Remove this hook.
-  (remove-hook 'pre-command-hook 'pulse-momentary-unhighlight)
-  )
+  (remove-hook 'pre-command-hook 'pulse-momentary-unhighlight))
 
 (defun pulse-momentary-highlight-one-line (point &optional face)
   "Highlight the line around POINT, unhighlighting before next command.
@@ -302,15 +233,14 @@ Optional argument FACE specifies the face to do the highlighting."
               (when (not (eobp))
                 (forward-char 1))
               (point))))
-    (pulse-momentary-highlight-region start end face)
-    ))
+    (pulse-momentary-highlight-region start end face)))
 
 (defun pulse-momentary-highlight-region (start end &optional face)
   "Highlight between START and END, unhighlighting before next command.
 Optional argument FACE specifies the fact to do the highlighting."
-  (let ((o (pulse-make-overlay start end)))
+  (let ((o (make-overlay start end)))
     ;; Mark it for deletion
-    (pulse-overlay-put o 'pulse-delete t)
+    (overlay-put o 'pulse-delete t)
     (pulse-momentary-highlight-overlay o face)))
 
 ;;; Random integration with other tools