diff options
| author | Sam Steingold | 2001-11-14 20:22:13 +0000 |
|---|---|---|
| committer | Sam Steingold | 2001-11-14 20:22:13 +0000 |
| commit | 39bb8e565fa166609f6a25ef35f5e625731d7b6f (patch) | |
| tree | 6f09a05faba1956e9fef1b57b30b8591b21d0649 | |
| parent | 11519a5eb262c968d09e6b024d6d9b0286fc4df3 (diff) | |
| download | emacs-39bb8e565fa166609f6a25ef35f5e625731d7b6f.tar.gz emacs-39bb8e565fa166609f6a25ef35f5e625731d7b6f.zip | |
Fixed some doc strings to properly quote symbols.
| -rw-r--r-- | lisp/gnus/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/gnus/gnus-score.el | 20 |
2 files changed, 14 insertions, 10 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index 4c8dac43ac5..9c4d37e1820 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2001-11-14 Sam Steingold <sds@gnu.org> | ||
| 2 | |||
| 3 | * gnus-score.el: Fixed some doc strings to properly quote symbols. | ||
| 4 | |||
| 1 | 2001-11-10 Pavel Jan,Bm(Bk <Pavel@Janik.cz> | 5 | 2001-11-10 Pavel Jan,Bm(Bk <Pavel@Janik.cz> |
| 2 | 6 | ||
| 3 | * gnus.el (gnus-local-domain): Reformat the doc-string to refer to | 7 | * gnus.el (gnus-local-domain): Reformat the doc-string to refer to |
diff --git a/lisp/gnus/gnus-score.el b/lisp/gnus/gnus-score.el index 0cfc079a214..14ac43b4fe3 100644 --- a/lisp/gnus/gnus-score.el +++ b/lisp/gnus/gnus-score.el | |||
| @@ -59,10 +59,10 @@ Each element of this alist should be of the form | |||
| 59 | If the name of a group is matched by REGEXP, the corresponding scorefiles | 59 | If the name of a group is matched by REGEXP, the corresponding scorefiles |
| 60 | will be used for that group. | 60 | will be used for that group. |
| 61 | The first match found is used, subsequent matching entries are ignored (to | 61 | The first match found is used, subsequent matching entries are ignored (to |
| 62 | use multiple matches, see gnus-score-file-multiple-match-alist). | 62 | use multiple matches, see `gnus-score-file-multiple-match-alist'). |
| 63 | 63 | ||
| 64 | These score files are loaded in addition to any files returned by | 64 | These score files are loaded in addition to any files returned by |
| 65 | gnus-score-find-score-files-function (which see)." | 65 | `gnus-score-find-score-files-function'." |
| 66 | :group 'gnus-score-files | 66 | :group 'gnus-score-files |
| 67 | :type '(repeat (cons regexp (repeat file)))) | 67 | :type '(repeat (cons regexp (repeat file)))) |
| 68 | 68 | ||
| @@ -75,10 +75,10 @@ If the name of a group is matched by REGEXP, the corresponding scorefiles | |||
| 75 | will be used for that group. | 75 | will be used for that group. |
| 76 | If multiple REGEXPs match a group, the score files corresponding to each | 76 | If multiple REGEXPs match a group, the score files corresponding to each |
| 77 | match will be used (for only one match to be used, see | 77 | match will be used (for only one match to be used, see |
| 78 | gnus-score-file-single-match-alist). | 78 | `gnus-score-file-single-match-alist'). |
| 79 | 79 | ||
| 80 | These score files are loaded in addition to any files returned by | 80 | These score files are loaded in addition to any files returned by |
| 81 | gnus-score-find-score-files-function (which see)." | 81 | `gnus-score-find-score-files-function'." |
| 82 | :group 'gnus-score-files | 82 | :group 'gnus-score-files |
| 83 | :type '(repeat (cons regexp (repeat file)))) | 83 | :type '(repeat (cons regexp (repeat file)))) |
| 84 | 84 | ||
| @@ -101,9 +101,9 @@ files do not actually have to exist. | |||
| 101 | 101 | ||
| 102 | Predefined values are: | 102 | Predefined values are: |
| 103 | 103 | ||
| 104 | gnus-score-find-single: Only apply the group's own score file. | 104 | `gnus-score-find-single': Only apply the group's own score file. |
| 105 | gnus-score-find-hierarchical: Also apply score files from parent groups. | 105 | `gnus-score-find-hierarchical': Also apply score files from parent groups. |
| 106 | gnus-score-find-bnews: Apply score files whose names matches. | 106 | `gnus-score-find-bnews': Apply score files whose names matches. |
| 107 | 107 | ||
| 108 | See the documentation to these functions for more information. | 108 | See the documentation to these functions for more information. |
| 109 | 109 | ||
| @@ -1497,7 +1497,7 @@ THREAD is expected to contain a list of the form `(PARENT [CHILD1 | |||
| 1497 | CHILD2 ...])' where PARENT is a header array and each CHILD is a list | 1497 | CHILD2 ...])' where PARENT is a header array and each CHILD is a list |
| 1498 | of the same form as THREAD. The empty list `nil' is valid. For each | 1498 | of the same form as THREAD. The empty list `nil' is valid. For each |
| 1499 | article in the tree, the score of the corresponding entry in | 1499 | article in the tree, the score of the corresponding entry in |
| 1500 | GNUS-NEWSGROUP-SCORED is adjusted by SCORE-ADJUST." | 1500 | `gnus-newsgroup-scored' is adjusted by SCORE-ADJUST." |
| 1501 | (while thread | 1501 | (while thread |
| 1502 | (let ((head (car thread))) | 1502 | (let ((head (car thread))) |
| 1503 | (if (listp head) | 1503 | (if (listp head) |
| @@ -1515,7 +1515,7 @@ GNUS-NEWSGROUP-SCORED is adjusted by SCORE-ADJUST." | |||
| 1515 | A root is an article with no references. An orphan is an article | 1515 | A root is an article with no references. An orphan is an article |
| 1516 | which has references, but is not connected via its references to a | 1516 | which has references, but is not connected via its references to a |
| 1517 | root article. This function finds all the orphans, and adjusts their | 1517 | root article. This function finds all the orphans, and adjusts their |
| 1518 | score in GNUS-NEWSGROUP-SCORED by SCORE." | 1518 | score in `gnus-newsgroup-scored' by SCORE." |
| 1519 | (let ((threads (gnus-make-threads))) | 1519 | (let ((threads (gnus-make-threads))) |
| 1520 | ;; gnus-make-threads produces a list, where each entry is a "thread" | 1520 | ;; gnus-make-threads produces a list, where each entry is a "thread" |
| 1521 | ;; as described in the gnus-score-lower-thread docs. This function | 1521 | ;; as described in the gnus-score-lower-thread docs. This function |
| @@ -2678,7 +2678,7 @@ Destroys the current buffer." | |||
| 2678 | 2678 | ||
| 2679 | (defun gnus-score-find-alist (group) | 2679 | (defun gnus-score-find-alist (group) |
| 2680 | "Return list of score files for GROUP. | 2680 | "Return list of score files for GROUP. |
| 2681 | The list is determined from the variable gnus-score-file-alist." | 2681 | The list is determined from the variable `gnus-score-file-alist'." |
| 2682 | (let ((alist gnus-score-file-multiple-match-alist) | 2682 | (let ((alist gnus-score-file-multiple-match-alist) |
| 2683 | score-files) | 2683 | score-files) |
| 2684 | ;; if this group has been seen before, return the cached entry | 2684 | ;; if this group has been seen before, return the cached entry |