aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/net
diff options
context:
space:
mode:
authorJuanma Barranquero2014-03-14 01:22:33 +0100
committerJuanma Barranquero2014-03-14 01:22:33 +0100
commit7644aa970d350a7457ef2fba469c73bb00c22365 (patch)
treeed47415a24d93a1dad31f26c441a0e8098f5aa59 /lisp/net
parent1f44df94fa2c84abd0a14becd0da4f019237f15e (diff)
downloademacs-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.el6
-rw-r--r--lisp/net/tls.el3
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
351version.") 351version.")
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.
81Each entry in the list is tried until a connection is successful. 81Each 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.
83The program should read input on stdin and write output to 83The program should read input on stdin and write output to stdout.
84stdout.
85 84
86See `tls-checktrust' on how to check trusted root certs. 85See `tls-checktrust' on how to check trusted root certs.
87 86