diff options
| author | Glenn Morris | 2016-01-25 08:49:09 -0800 |
|---|---|---|
| committer | Glenn Morris | 2016-01-25 08:49:09 -0800 |
| commit | 5b0bab034902d0fdabbc02b9d644e37082bc4632 (patch) | |
| tree | a28e1d9897a226962901a7419f5a48c23b0f8c5e /lisp | |
| parent | a528a60f48f6b939c5014c96d3445de13d2ed243 (diff) | |
| download | emacs-5b0bab034902d0fdabbc02b9d644e37082bc4632.tar.gz emacs-5b0bab034902d0fdabbc02b9d644e37082bc4632.zip | |
; * lisp/net/browse-url.el: Fix obvious typos in recent.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/net/browse-url.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/net/browse-url.el b/lisp/net/browse-url.el index edf91ab6000..1a666e0d9e9 100644 --- a/lisp/net/browse-url.el +++ b/lisp/net/browse-url.el | |||
| @@ -148,7 +148,7 @@ regexp should probably be \".\" to specify a default browser." | |||
| 148 | (function-item :tag "eww" :value eww-browse-url) | 148 | (function-item :tag "eww" :value eww-browse-url) |
| 149 | (function-item :tag "Mozilla" :value browse-url-mozilla) | 149 | (function-item :tag "Mozilla" :value browse-url-mozilla) |
| 150 | (function-item :tag "Firefox" :value browse-url-firefox) | 150 | (function-item :tag "Firefox" :value browse-url-firefox) |
| 151 | (function-item :tag "Google Chrome" :value browse-url-chrome) | 151 | (function-item :tag "Google Chrome" :value browse-url-chrome) |
| 152 | (function-item :tag "Chromium" :value browse-url-chromium) | 152 | (function-item :tag "Chromium" :value browse-url-chromium) |
| 153 | (function-item :tag "Epiphany" :value browse-url-epiphany) | 153 | (function-item :tag "Epiphany" :value browse-url-epiphany) |
| 154 | (function-item :tag "Conkeror" :value browse-url-conkeror) | 154 | (function-item :tag "Conkeror" :value browse-url-conkeror) |
| @@ -266,15 +266,15 @@ Defaults to the value of `browse-url-firefox-arguments' at the time | |||
| 266 | (while (and candidates (not (executable-find (car candidates)))) | 266 | (while (and candidates (not (executable-find (car candidates)))) |
| 267 | (setq candidates (cdr candidates))) | 267 | (setq candidates (cdr candidates))) |
| 268 | (or (car candidates) "chromium")) | 268 | (or (car candidates) "chromium")) |
| 269 | "The name by which to invoke Chromium." | 269 | "The name by which to invoke the Chrome browser." |
| 270 | :type 'string | 270 | :type 'string |
| 271 | :version "24.1" | 271 | :version "25.1" |
| 272 | :group 'browse-url) | 272 | :group 'browse-url) |
| 273 | 273 | ||
| 274 | (defcustom browse-url-chrome-arguments nil | 274 | (defcustom browse-url-chrome-arguments nil |
| 275 | "A list of strings to pass to Google Chrome as arguments." | 275 | "A list of strings to pass to Google Chrome as arguments." |
| 276 | :type '(repeat (string :tag "Argument")) | 276 | :type '(repeat (string :tag "Argument")) |
| 277 | :version "24.1" | 277 | :version "25.1" |
| 278 | :group 'browse-url) | 278 | :group 'browse-url) |
| 279 | 279 | ||
| 280 | (defcustom browse-url-chromium-program | 280 | (defcustom browse-url-chromium-program |