summaryrefslogtreecommitdiff
path: root/lisp/net
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/net')
-rw-r--r--lisp/net/browse-url.el2
-rw-r--r--lisp/net/eudc.el10
-rw-r--r--lisp/net/eudcb-bbdb.el2
-rw-r--r--lisp/net/eudcb-ldap.el2
-rw-r--r--lisp/net/pop3.el2
-rw-r--r--lisp/net/soap-client.el6
-rw-r--r--lisp/net/soap-inspect.el2
7 files changed, 13 insertions, 13 deletions
diff --git a/lisp/net/browse-url.el b/lisp/net/browse-url.el
index 87a8248854f..ce899bdee57 100644
--- a/lisp/net/browse-url.el
+++ b/lisp/net/browse-url.el
@@ -877,7 +877,7 @@ The optional NEW-WINDOW argument is not used."
(defun browse-url-default-macosx-browser (url &optional _new-window)
"Invoke the macOS system's default Web browser.
-The optional NEW-WINDOW argument is not used"
+The optional NEW-WINDOW argument is not used."
(interactive (browse-url-interactive-arg "URL: "))
(start-process (concat "open " url) nil "open" url))
diff --git a/lisp/net/eudc.el b/lisp/net/eudc.el
index 3c9c01d0f96..586dd210ed5 100644
--- a/lisp/net/eudc.el
+++ b/lisp/net/eudc.el
@@ -229,7 +229,7 @@ The current binding of VAR is changed only if SERVER is omitted."
(defun eudc-set (var val)
"Set the most local (server, protocol or default) binding of VAR to VAL.
-The current binding of VAR is also set to VAL"
+The current binding of VAR is also set to VAL."
(cond
((not (eq 'unbound (eudc-variable-server-value var)))
(eudc-server-set var val))
@@ -251,7 +251,7 @@ Return `unbound' if VAR has no EUDC default value."
(defun eudc-variable-protocol-value (var &optional protocol)
"Return the value of VAR local to PROTOCOL.
Return `unbound' if VAR has no value local to PROTOCOL.
-PROTOCOL defaults to `eudc-protocol'"
+PROTOCOL defaults to `eudc-protocol'."
(let* ((eudc-locals (get var 'eudc-locals))
protocol-locals)
(if (not (and (boundp var)
@@ -266,7 +266,7 @@ PROTOCOL defaults to `eudc-protocol'"
(defun eudc-variable-server-value (var &optional server)
"Return the value of VAR local to SERVER.
Return `unbound' if VAR has no value local to SERVER.
-SERVER defaults to `eudc-server'"
+SERVER defaults to `eudc-server'."
(let* ((eudc-locals (get var 'eudc-locals))
server-locals)
(if (not (and (boundp var)
@@ -282,7 +282,7 @@ SERVER defaults to `eudc-server'"
"Set the value of VAR according to its locals.
If the VAR has a server- or protocol-local value corresponding
to the current `eudc-server' and `eudc-protocol' then it is set
-accordingly. Otherwise it is set to its EUDC default binding"
+accordingly. Otherwise it is set to its EUDC default binding."
(let (val)
(cond
((not (eq 'unbound (setq val (eudc-variable-server-value var))))
@@ -775,7 +775,7 @@ After querying the server for the given string, the expansion specified by
If REPLACE is non-nil, then this expansion replaces the name in the buffer.
`eudc-expansion-overwrites-query' being non-nil inverts the meaning of REPLACE.
Multiple servers can be tried with the same query until one finds a match,
-see `eudc-inline-expansion-servers'"
+see `eudc-inline-expansion-servers'."
(interactive)
(cond
((eq eudc-inline-expansion-servers 'current-server)
diff --git a/lisp/net/eudcb-bbdb.el b/lisp/net/eudcb-bbdb.el
index f91d0af858d..f9b3c47a4bf 100644
--- a/lisp/net/eudcb-bbdb.el
+++ b/lisp/net/eudcb-bbdb.el
@@ -179,7 +179,7 @@ BBDB < 3 used `net'; BBDB >= 3 uses `mail'."
(defun eudc-bbdb-format-record-as-result (record)
"Format the BBDB RECORD as a EUDC query result record.
-The record is filtered according to `eudc-bbdb-current-return-attributes'"
+The record is filtered according to `eudc-bbdb-current-return-attributes'."
(require 'bbdb)
(let ((attrs (or eudc-bbdb-current-return-attributes
'(firstname lastname aka company phones addresses net notes)))
diff --git a/lisp/net/eudcb-ldap.el b/lisp/net/eudcb-ldap.el
index 7514d1ad299..464c62da123 100644
--- a/lisp/net/eudcb-ldap.el
+++ b/lisp/net/eudcb-ldap.el
@@ -148,7 +148,7 @@ RETURN-ATTRS is a list of attributes to return, defaulting to
(defun eudc-ldap-get-field-list (_dummy &optional objectclass)
"Return a list of valid attribute names for the current server.
OBJECTCLASS is the LDAP object class for which the valid
-attribute names are returned. Default to `person'"
+attribute names are returned. Default to `person'."
(interactive)
(or eudc-server
(call-interactively 'eudc-set-server))
diff --git a/lisp/net/pop3.el b/lisp/net/pop3.el
index 5f1cd94eb60..74a632a3a20 100644
--- a/lisp/net/pop3.el
+++ b/lisp/net/pop3.el
@@ -710,7 +710,7 @@ If NOW, use that time instead."
(defun pop3-list (process &optional msg)
"If MSG is nil, return an alist of (MESSAGE-ID . SIZE) pairs.
-Otherwise, return the size of the message-id MSG"
+Otherwise, return the size of the message-id MSG."
(pop3-send-command process (if msg
(format "LIST %d" msg)
"LIST"))
diff --git a/lisp/net/soap-client.el b/lisp/net/soap-client.el
index 7ce7d79c742..3f9eb5cb894 100644
--- a/lisp/net/soap-client.el
+++ b/lisp/net/soap-client.el
@@ -334,7 +334,7 @@ element name."
"Store ELEMENT in NS.
Multiple elements with the same name can be stored in a
namespace. When retrieving the element you can specify a
-discriminant predicate to `soap-namespace-get'"
+discriminant predicate to `soap-namespace-get'."
(let ((name (soap-element-name element)))
(push element (gethash name (soap-namespace-elements ns)))))
@@ -1476,7 +1476,7 @@ This is a specialization of `soap-decode-type' for
(defun soap-xs-parse-sequence (node)
"Parse a sequence definition from XML NODE.
-Returns a `soap-xs-complex-type'"
+Returns a `soap-xs-complex-type'."
(cl-assert (memq (soap-l2wk (xml-node-name node))
'(xsd:sequence xsd:choice xsd:all))
nil
@@ -2814,7 +2814,7 @@ decode function to perform the actual decoding."
(defun soap-parse-envelope (node operation wsdl)
"Parse the SOAP envelope in NODE and return the response.
OPERATION is the WSDL operation for which we expect the response,
-WSDL is used to decode the NODE"
+WSDL is used to decode the NODE."
(soap-with-local-xmlns node
(cl-assert (eq (soap-l2wk (xml-node-name node)) 'soap:Envelope)
nil
diff --git a/lisp/net/soap-inspect.el b/lisp/net/soap-inspect.el
index 17b667504fd..63c5ac53c26 100644
--- a/lisp/net/soap-inspect.el
+++ b/lisp/net/soap-inspect.el
@@ -355,7 +355,7 @@ ATTRIBUTE is a soap-xs-attribute-group."
(defun soap-inspect-xs-complex-type (type)
"Insert information about TYPE in the current buffer.
-TYPE is a `soap-xs-complex-type'"
+TYPE is a `soap-xs-complex-type'."
(insert "Complex type: " (soap-element-fq-name type))
(insert "\nKind: ")
(cl-case (soap-xs-complex-type-indicator type)