diff options
| author | Juanma Barranquero | 2019-09-19 04:32:25 +0200 |
|---|---|---|
| committer | Juanma Barranquero | 2019-09-19 04:32:25 +0200 |
| commit | 79a01866a01754b9f566af76ef96e80cd90d094b (patch) | |
| tree | f08a0ba4abd3caca32ad82e582e9327bdc43e569 /lisp/erc | |
| parent | 34f1035e878a06ad181ff7fc533cd1fa0a565847 (diff) | |
| download | emacs-79a01866a01754b9f566af76ef96e80cd90d094b.tar.gz emacs-79a01866a01754b9f566af76ef96e80cd90d094b.zip | |
lisp/*.el, src/*.c: Fix typos in docstrings
* lisp/apropos.el (apropos-do-all):
* lisp/auth-source-pass.el (auth-source-pass--select-from-entries):
* lisp/auth-source.el (auth-source-user-or-password):
* lisp/calc/calc-forms.el (math-tzone-names):
* lisp/calendar/diary-lib.el (diary-face-attrs)
(diary-mark-entries-1):
* lisp/cedet/cedet-files.el (cedet-files-list-recursively):
* lisp/cedet/ede.el (ede-constructing, ede-deep-rescan):
* lisp/cedet/ede/cpp-root.el (ede-cpp-root-header-file-p):
* lisp/cedet/ede/proj.el (ede-proj-target-makefile):
* lisp/cedet/inversion.el (inversion-check-version)
(inversion-test):
* lisp/cedet/mode-local.el (mode-local-map-file-buffers):
* lisp/cedet/semantic/complete.el (semantic-displayer-ghost):
* lisp/cedet/semantic/db-find.el (semanticdb-find-translate-path-default):
* lisp/cedet/semantic/db.el (semanticdb-table)
(semanticdb-search-system-databases):
* lisp/cedet/semantic/imenu.el (semantic-imenu-index-directory):
* lisp/cedet/semantic/java.el (semantic-java-doc-keywords-map):
* lisp/cedet/semantic/lex-spp.el (semantic-lex-spp-use-headers-flag):
* lisp/cedet/semantic/lex.el (semantic-lex-make-keyword-table)
(semantic-lex-make-type-table, semantic-lex-debug-analyzers):
* lisp/cedet/semantic/tag-ls.el (semantic-tag-abstract-p)
(semantic-tag-leaf-p, semantic-tag-static-p)
(semantic-tag-prototype-p):
* lisp/dnd.el (dnd-open-remote-file-function, dnd-open-local-file):
* lisp/emacs-lisp/eieio-opt.el (eieio-build-class-alist)
(eieio-read-class, eieio-read-subclass):
* lisp/emacs-lisp/generator.el (cps--replace-variable-references)
(cps--handle-loop-for):
* lisp/erc/erc-dcc.el (erc-dcc-list, erc-dcc-member, erc-dcc-server)
(erc-dcc-auto-mask-p, erc-dcc-get-file, erc-dcc-chat-accept):
* lisp/eshell/em-pred.el (eshell-pred-file-type):
* lisp/faces.el (defined-colors-with-face-attributes):
* lisp/font-core.el (font-lock-mode):
* lisp/frame.el (frame-restack):
* lisp/net/shr.el (shr-image-animate):
* lisp/org/org-agenda.el (org-agenda-change-all-lines)
(org-agenda-today-p):
* lisp/org/org-id.el (org-id-get):
* lisp/org/org.el (org-highlight-latex-and-related)
(org--valid-property-p):
* lisp/org/ox-beamer.el (org-beamer--get-label):
* lisp/org/ox-latex.el (org-latex--caption-above-p):
* lisp/org/ox-odt.el (org-odt--copy-image-file)
(org-odt--copy-formula-file):
* lisp/org/ox.el (org-export-with-timestamps):
* lisp/progmodes/verilog-mode.el (verilog-indent-declaration-macros):
* lisp/ses.el (ses-file-format-extend-parameter-list):
* lisp/term.el (ansi-term):
* lisp/textmodes/bibtex.el (bibtex-no-opt-remove-re)
(bibtex-beginning-of-first-entry, bibtex-autokey-get-title)
(bibtex-read-key, bibtex-initialize):
* lisp/textmodes/flyspell.el (flyspell-word):
* lisp/view.el (view-mode-exit):
* src/composite.c:
* src/floatfns.c (Fisnan): Fix typos in docstrings.
Diffstat (limited to 'lisp/erc')
| -rw-r--r-- | lisp/erc/erc-dcc.el | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/lisp/erc/erc-dcc.el b/lisp/erc/erc-dcc.el index 526add1a61f..f3b23369981 100644 --- a/lisp/erc/erc-dcc.el +++ b/lisp/erc/erc-dcc.el | |||
| @@ -88,13 +88,13 @@ All values of the list must be uppercase strings.") | |||
| 88 | (:nick \"nick\" :type SEND :peer server-proc :parent parent-proc :file | 88 | (:nick \"nick\" :type SEND :peer server-proc :parent parent-proc :file |
| 89 | file :sent <marker> :confirmed <marker>)) | 89 | file :sent <marker> :confirmed <marker>)) |
| 90 | 90 | ||
| 91 | :nick - a user or userhost for the peer. combine with :parent to reach them | 91 | :nick - a user or userhost for the peer. Combine with :parent to reach them |
| 92 | 92 | ||
| 93 | :type - the type of DCC connection - SEND for outgoing files, GET for | 93 | :type - the type of DCC connection - SEND for outgoing files, GET for |
| 94 | incoming, and CHAT for both directions. To tell which end started | 94 | incoming, and CHAT for both directions. To tell which end started |
| 95 | the DCC chat, look at :peer | 95 | the DCC chat, look at :peer |
| 96 | 96 | ||
| 97 | :peer - the other end of the DCC connection. In the case of outgoing DCCs, | 97 | :peer - the other end of the DCC connection. In the case of outgoing DCCs, |
| 98 | this represents a server process until a connection is established | 98 | this represents a server process until a connection is established |
| 99 | 99 | ||
| 100 | :parent - the server process where the dcc connection was established. | 100 | :parent - the server process where the dcc connection was established. |
| @@ -102,7 +102,7 @@ All values of the list must be uppercase strings.") | |||
| 102 | connection is in general independent from a particular server | 102 | connection is in general independent from a particular server |
| 103 | connection after it was established. | 103 | connection after it was established. |
| 104 | 104 | ||
| 105 | :file - for outgoing sends, the full path to the file. for incoming sends, | 105 | :file - for outgoing sends, the full path to the file. For incoming sends, |
| 106 | the suggested filename or vetted filename | 106 | the suggested filename or vetted filename |
| 107 | 107 | ||
| 108 | :size - size of the file, may be nil on incoming DCCs") | 108 | :size - size of the file, may be nil on incoming DCCs") |
| @@ -163,11 +163,11 @@ All values of the list must be uppercase strings.") | |||
| 163 | 163 | ||
| 164 | (defun erc-dcc-member (&rest args) | 164 | (defun erc-dcc-member (&rest args) |
| 165 | "Return the first matching entry in `erc-dcc-list' which satisfies the | 165 | "Return the first matching entry in `erc-dcc-list' which satisfies the |
| 166 | constraints given as a plist in ARGS. Returns nil on no match. | 166 | constraints given as a plist in ARGS. Returns nil on no match. |
| 167 | 167 | ||
| 168 | The property :nick is treated specially, if it contains a `!' character, | 168 | The property :nick is treated specially, if it contains a `!' character, |
| 169 | it is treated as a nick!user@host string, and compared with the :nick property | 169 | it is treated as a nick!user@host string, and compared with the :nick property |
| 170 | value of the individual elements using string-equal. Otherwise it is | 170 | value of the individual elements using string-equal. Otherwise it is |
| 171 | compared with `erc-nick-equal-p' which is IRC case-insensitive." | 171 | compared with `erc-nick-equal-p' which is IRC case-insensitive." |
| 172 | (let ((list erc-dcc-list) | 172 | (let ((list erc-dcc-list) |
| 173 | result test) | 173 | result test) |
| @@ -338,8 +338,8 @@ string \".*!.*@.*\" to this list." | |||
| 338 | :type '(repeat regexp)) | 338 | :type '(repeat regexp)) |
| 339 | 339 | ||
| 340 | (defun erc-dcc-server (name filter sentinel) | 340 | (defun erc-dcc-server (name filter sentinel) |
| 341 | "Start listening on a port for an incoming DCC connection. Returns the newly | 341 | "Start listening on a port for an incoming DCC connection. |
| 342 | created subprocess, or nil." | 342 | Returns the newly created subprocess, or nil." |
| 343 | (let ((port (or (and erc-dcc-port-range (car erc-dcc-port-range)) t)) | 343 | (let ((port (or (and erc-dcc-port-range (car erc-dcc-port-range)) t)) |
| 344 | (upper (and erc-dcc-port-range (cdr erc-dcc-port-range))) | 344 | (upper (and erc-dcc-port-range (cdr erc-dcc-port-range))) |
| 345 | process) | 345 | process) |
| @@ -686,7 +686,7 @@ It extracts the information about the dcc request and adds it to | |||
| 686 | 686 | ||
| 687 | (defun erc-dcc-auto-mask-p (spec) | 687 | (defun erc-dcc-auto-mask-p (spec) |
| 688 | "Takes a full SPEC of a user in the form \"nick!login@host\" and | 688 | "Takes a full SPEC of a user in the form \"nick!login@host\" and |
| 689 | matches against all the regexp's in `erc-dcc-auto-masks'. If any | 689 | matches against all the regexp's in `erc-dcc-auto-masks'. If any |
| 690 | match, returns that regexp and nil otherwise." | 690 | match, returns that regexp and nil otherwise." |
| 691 | (let ((lst erc-dcc-auto-masks)) | 691 | (let ((lst erc-dcc-auto-masks)) |
| 692 | (while (and lst | 692 | (while (and lst |
| @@ -908,7 +908,7 @@ other client." | |||
| 908 | 908 | ||
| 909 | (defun erc-dcc-get-file (entry file parent-proc) | 909 | (defun erc-dcc-get-file (entry file parent-proc) |
| 910 | "This function does the work of setting up a transfer from the remote client | 910 | "This function does the work of setting up a transfer from the remote client |
| 911 | to the local one over a tcp connection. This involves setting up a process | 911 | to the local one over a tcp connection. This involves setting up a process |
| 912 | filter and a process sentinel, and making the connection." | 912 | filter and a process sentinel, and making the connection." |
| 913 | (let* ((buffer (generate-new-buffer (file-name-nondirectory file))) | 913 | (let* ((buffer (generate-new-buffer (file-name-nondirectory file))) |
| 914 | proc) | 914 | proc) |
| @@ -1156,7 +1156,7 @@ other client." | |||
| 1156 | buffer)) | 1156 | buffer)) |
| 1157 | 1157 | ||
| 1158 | (defun erc-dcc-chat-accept (entry parent-proc) | 1158 | (defun erc-dcc-chat-accept (entry parent-proc) |
| 1159 | "Accept an incoming DCC connection and open a DCC window" | 1159 | "Accept an incoming DCC connection and open a DCC window." |
| 1160 | (let* ((nick (erc-extract-nick (plist-get entry :nick))) | 1160 | (let* ((nick (erc-extract-nick (plist-get entry :nick))) |
| 1161 | buffer proc) | 1161 | buffer proc) |
| 1162 | (setq proc | 1162 | (setq proc |