aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/bs.el4
-rw-r--r--lisp/emacs-lisp/tq.el18
-rw-r--r--lisp/net/goto-addr.el14
3 files changed, 18 insertions, 18 deletions
diff --git a/lisp/bs.el b/lisp/bs.el
index 26942c3e593..ac4598df0f7 100644
--- a/lisp/bs.el
+++ b/lisp/bs.el
@@ -187,7 +187,7 @@ return a string representing the column's value."
187 (setq ele (cdr ele))) 187 (setq ele (cdr ele)))
188 (concat res "$\\)"))) 188 (concat res "$\\)")))
189 189
190;;; Font-Lock-Settings 190;; Font-Lock-Settings
191(defvar bs-mode-font-lock-keywords 191(defvar bs-mode-font-lock-keywords
192 (list ;; header in font-lock-type-face 192 (list ;; header in font-lock-type-face
193 (list (bs--make-header-match-string) 193 (list (bs--make-header-match-string)
@@ -1511,7 +1511,7 @@ name of buffer configuration."
1511 (setq bs--marked-buffers nil) 1511 (setq bs--marked-buffers nil)
1512 (bs--show-with-configuration (bs--configuration-name-for-prefix-arg arg))) 1512 (bs--show-with-configuration (bs--configuration-name-for-prefix-arg arg)))
1513 1513
1514;;; Now provide feature bs 1514;; Now provide feature bs
1515(provide 'bs) 1515(provide 'bs)
1516 1516
1517;;; bs.el ends here 1517;;; bs.el ends here
diff --git a/lisp/emacs-lisp/tq.el b/lisp/emacs-lisp/tq.el
index 18c94f27cfd..3a32c0b5169 100644
--- a/lisp/emacs-lisp/tq.el
+++ b/lisp/emacs-lisp/tq.el
@@ -26,15 +26,15 @@
26 26
27;;; Commentary: 27;;; Commentary:
28 28
29;;; manages receiving a stream asynchronously, 29;; manages receiving a stream asynchronously,
30;;; parsing it into transactions, and then calling 30;; parsing it into transactions, and then calling
31;;; handler functions 31;; handler functions
32 32
33;;; Our basic structure is the queue/process/buffer triple. Each entry 33;; Our basic structure is the queue/process/buffer triple. Each entry
34;;; of the queue is a regexp/closure/function triple. We buffer 34;; of the queue is a regexp/closure/function triple. We buffer
35;;; bytes from the process until we see the regexp at the head of the 35;; bytes from the process until we see the regexp at the head of the
36;;; queue. Then we call the function with the closure and the 36;; queue. Then we call the function with the closure and the
37;;; collected bytes. 37;; collected bytes.
38 38
39;;; Code: 39;;; Code:
40 40
diff --git a/lisp/net/goto-addr.el b/lisp/net/goto-addr.el
index 497052b8ab9..61c615b4aca 100644
--- a/lisp/net/goto-addr.el
+++ b/lisp/net/goto-addr.el
@@ -80,7 +80,7 @@
80 :group 'hypermedia) 80 :group 'hypermedia)
81 81
82 82
83;;; I don't expect users to want fontify'ing without highlighting. 83;; I don't expect users to want fontify'ing without highlighting.
84(defcustom goto-address-fontify-p t 84(defcustom goto-address-fontify-p t
85 "*Non-nil means URLs and e-mail addresses in buffer are fontified. 85 "*Non-nil means URLs and e-mail addresses in buffer are fontified.
86But only if `goto-address-highlight-p' is also non-nil." 86But 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."
102 "A regular expression probably matching an e-mail address.") 102 "A regular expression probably matching an e-mail address.")
103 103
104(defvar goto-address-url-regexp thing-at-point-url-regexp 104(defvar goto-address-url-regexp thing-at-point-url-regexp
105;;; (concat "\\b\\(s?https?\\|ftp\\|file\\|gopher\\|news\\|" 105 ;; (concat "\\b\\(s?https?\\|ftp\\|file\\|gopher\\|news\\|"
106;;; "telnet\\|wais\\):\\(//[-a-zA-Z0-9_.]+:" 106 ;; "telnet\\|wais\\):\\(//[-a-zA-Z0-9_.]+:"
107;;; "[0-9]*\\)?[-a-zA-Z0-9_=?#$@~`%&*+|\\/.,]*" 107 ;; "[0-9]*\\)?[-a-zA-Z0-9_=?#$@~`%&*+|\\/.,]*"
108;;; "[-a-zA-Z0-9_=#$@~`%&*+|\\/]") 108 ;; "[-a-zA-Z0-9_=#$@~`%&*+|\\/]")
109 "A regular expression probably matching a URL.") 109 "A regular expression probably matching a URL.")
110 110
111(defvar goto-address-highlight-keymap 111(defvar goto-address-highlight-keymap
@@ -178,8 +178,8 @@ and `goto-address-fontify-p'."
178 'keymap goto-address-highlight-keymap) 178 'keymap goto-address-highlight-keymap)
179 (overlay-put this-overlay 'goto-address t)))))))) 179 (overlay-put this-overlay 'goto-address t))))))))
180 180
181;;; code to find and goto addresses; much of this has been blatantly 181;; code to find and goto addresses; much of this has been blatantly
182;;; snarfed from browse-url.el 182;; snarfed from browse-url.el
183 183
184;;;###autoload 184;;;###autoload
185(defun goto-address-at-mouse (event) 185(defun goto-address-at-mouse (event)