diff options
| author | Juanma Barranquero | 2014-03-14 01:22:33 +0100 |
|---|---|---|
| committer | Juanma Barranquero | 2014-03-14 01:22:33 +0100 |
| commit | 7644aa970d350a7457ef2fba469c73bb00c22365 (patch) | |
| tree | ed47415a24d93a1dad31f26c441a0e8098f5aa59 /lisp/net | |
| parent | 1f44df94fa2c84abd0a14becd0da4f019237f15e (diff) | |
| download | emacs-7644aa970d350a7457ef2fba469c73bb00c22365.tar.gz emacs-7644aa970d350a7457ef2fba469c73bb00c22365.zip | |
lisp/net/*.el, lisp/progmodes/*.el: Fix docstring typos.
* net/socks.el (socks, socks-override-functions)
(socks-find-services-entry): FT
* progmodes/hideif.el (hif-set-var, hif-nexttoken, hif-comma)
(hif-find-ifdef-block):
* progmodes/modula2.el (m2-indent): Fix docstring typos.
* net/tls.el (tls-program): Reflow docstring.
* progmodes/opascal.el (opascal-compound-block-indent)
(opascal-case-label-indent): Fix docstring typos.
(opascal-mode): Fix typos; let defined-derived-mode document mode hook.
* progmodes/pascal.el (pascal-mode-abbrev-table)
(pascal-imenu-generic-expression, pascal-auto-endcomments)
(pascal-mark-defun, pascal-comment-area, pascal-indent-level)
(pascal-outline-mode): Fix docstring typos.
(pascal-mode): Let define-derived-mode document mode hook.
(pascal-uncomment-area): Reflow.
(pascal-exclude-str-start, pascal-exclude-str-end): Add docstring.
Diffstat (limited to 'lisp/net')
| -rw-r--r-- | lisp/net/socks.el | 6 | ||||
| -rw-r--r-- | lisp/net/tls.el | 3 |
2 files changed, 4 insertions, 5 deletions
diff --git a/lisp/net/socks.el b/lisp/net/socks.el index 556a7b4adc2..90ee20c8118 100644 --- a/lisp/net/socks.el +++ b/lisp/net/socks.el | |||
| @@ -102,7 +102,7 @@ If PATTERN is omitted, it defaults to \"[ \\f\\t\\n\\r\\v]+\"." | |||
| 102 | ;;; Customization support | 102 | ;;; Customization support |
| 103 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | 103 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
| 104 | (defgroup socks nil | 104 | (defgroup socks nil |
| 105 | "SOCKS Support" | 105 | "SOCKS support." |
| 106 | :version "22.2" | 106 | :version "22.2" |
| 107 | :prefix "socks-" | 107 | :prefix "socks-" |
| 108 | :group 'processes) | 108 | :group 'processes) |
| @@ -347,7 +347,7 @@ If PATTERN is omitted, it defaults to \"[ \\f\\t\\n\\r\\v]+\"." | |||
| 347 | ;; could get a wrapper hook, or defer to open-network-stream-function. | 347 | ;; could get a wrapper hook, or defer to open-network-stream-function. |
| 348 | 348 | ||
| 349 | (defvar socks-override-functions nil | 349 | (defvar socks-override-functions nil |
| 350 | "Whether to overwrite the open-network-stream function with the SOCKSified | 350 | "Whether to overwrite the `open-network-stream' function with the SOCKSified |
| 351 | version.") | 351 | version.") |
| 352 | 352 | ||
| 353 | (require 'network-stream) | 353 | (require 'network-stream) |
| @@ -533,7 +533,7 @@ version.") | |||
| 533 | socks-tcp-services)))))) | 533 | socks-tcp-services)))))) |
| 534 | 534 | ||
| 535 | (defun socks-find-services-entry (service &optional udp) | 535 | (defun socks-find-services-entry (service &optional udp) |
| 536 | "Return the port # associated with SERVICE" | 536 | "Return the port # associated with SERVICE." |
| 537 | (if (= (hash-table-count socks-tcp-services) 0) | 537 | (if (= (hash-table-count socks-tcp-services) 0) |
| 538 | (socks-parse-services)) | 538 | (socks-parse-services)) |
| 539 | (gethash (downcase service) | 539 | (gethash (downcase service) |
diff --git a/lisp/net/tls.el b/lisp/net/tls.el index 8d7c695b3c3..6abb0483d52 100644 --- a/lisp/net/tls.el +++ b/lisp/net/tls.el | |||
| @@ -80,8 +80,7 @@ and `gnutls-cli' (version 2.0.1) output." | |||
| 80 | "List of strings containing commands to start TLS stream to a host. | 80 | "List of strings containing commands to start TLS stream to a host. |
| 81 | Each entry in the list is tried until a connection is successful. | 81 | Each entry in the list is tried until a connection is successful. |
| 82 | %h is replaced with server hostname, %p with port to connect to. | 82 | %h is replaced with server hostname, %p with port to connect to. |
| 83 | The program should read input on stdin and write output to | 83 | The program should read input on stdin and write output to stdout. |
| 84 | stdout. | ||
| 85 | 84 | ||
| 86 | See `tls-checktrust' on how to check trusted root certs. | 85 | See `tls-checktrust' on how to check trusted root certs. |
| 87 | 86 | ||