]> git.eshelyaron.com Git - emacs.git/commitdiff
Change ;;; to ;; for outline-minor-mode.
authorStefan Monnier <monnier@iro.umontreal.ca>
Thu, 4 Oct 2001 23:05:51 +0000 (23:05 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Thu, 4 Oct 2001 23:05:51 +0000 (23:05 +0000)
lisp/emacs-lisp/tq.el
lisp/net/goto-addr.el

index 18c94f27cfd3e19a2d390ea2bb216e426a8c5e90..3a32c0b5169a4ce8c6ef4eac3589b33772d55532 100644 (file)
 
 ;;; Commentary:
  
-;;; manages receiving a stream asynchronously, 
-;;; parsing it into transactions, and then calling
-;;; handler functions
-
-;;; Our basic structure is the queue/process/buffer triple.  Each entry
-;;; of the queue is a regexp/closure/function triple.  We buffer
-;;; bytes from the process until we see the regexp at the head of the
-;;; queue.  Then we call the function with the closure and the
-;;; collected bytes.
+;; manages receiving a stream asynchronously,
+;; parsing it into transactions, and then calling
+;; handler functions
+
+;; Our basic structure is the queue/process/buffer triple.  Each entry
+;; of the queue is a regexp/closure/function triple.  We buffer
+;; bytes from the process until we see the regexp at the head of the
+;; queue.  Then we call the function with the closure and the
+;; collected bytes.
 
 ;;; Code:
 
index 497052b8ab9ffb24bcd4a959a32ed425008eeecf..61c615b4aca4b63e569e297927385d00d31706b5 100644 (file)
@@ -80,7 +80,7 @@
   :group 'hypermedia)
 
 
-;;; I don't expect users to want fontify'ing without highlighting.
+;; I don't expect users to want fontify'ing without highlighting.
 (defcustom goto-address-fontify-p t
   "*Non-nil means URLs and e-mail addresses in buffer are fontified.
 But only if `goto-address-highlight-p' is also non-nil."
@@ -102,10 +102,10 @@ But only if `goto-address-highlight-p' is also non-nil."
   "A regular expression probably matching an e-mail address.")
 
 (defvar goto-address-url-regexp thing-at-point-url-regexp
-;;;   (concat "\\b\\(s?https?\\|ftp\\|file\\|gopher\\|news\\|"
-;;;      "telnet\\|wais\\):\\(//[-a-zA-Z0-9_.]+:"
-;;;      "[0-9]*\\)?[-a-zA-Z0-9_=?#$@~`%&*+|\\/.,]*"
-;;;      "[-a-zA-Z0-9_=#$@~`%&*+|\\/]")
+  ;; (concat "\\b\\(s?https?\\|ftp\\|file\\|gopher\\|news\\|"
+  ;;     "telnet\\|wais\\):\\(//[-a-zA-Z0-9_.]+:"
+  ;;     "[0-9]*\\)?[-a-zA-Z0-9_=?#$@~`%&*+|\\/.,]*"
+  ;;     "[-a-zA-Z0-9_=#$@~`%&*+|\\/]")
   "A regular expression probably matching a URL.")
 
 (defvar goto-address-highlight-keymap
@@ -178,8 +178,8 @@ and `goto-address-fontify-p'."
                              'keymap goto-address-highlight-keymap)
                (overlay-put this-overlay 'goto-address t))))))))
 
-;;; code to find and goto addresses; much of this has been blatantly
-;;; snarfed from browse-url.el
+;; code to find and goto addresses; much of this has been blatantly
+;; snarfed from browse-url.el
 
 ;;;###autoload
 (defun goto-address-at-mouse (event)