diff options
| author | Juanma Barranquero | 2006-11-24 10:38:37 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2006-11-24 10:38:37 +0000 |
| commit | 01ccbb859444933470eb0e8b53503fb6ddacc93b (patch) | |
| tree | d47bd52e960658de41f0537f0ca4542ebedbe330 | |
| parent | 65a3207689b6cbe10a333dc4269d06d97d411edf (diff) | |
| download | emacs-01ccbb859444933470eb0e8b53503fb6ddacc93b.tar.gz emacs-01ccbb859444933470eb0e8b53503fb6ddacc93b.zip | |
(gnus-summary-make-false-root, gnus-make-threads):
Fix space/tab mixup in docstrings.
| -rw-r--r-- | lisp/gnus/gnus-sum.el | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lisp/gnus/gnus-sum.el b/lisp/gnus/gnus-sum.el index 6bf4142216d..0e43c78e3a8 100644 --- a/lisp/gnus/gnus-sum.el +++ b/lisp/gnus/gnus-sum.el | |||
| @@ -15,7 +15,7 @@ | |||
| 15 | 15 | ||
| 16 | ;; GNU Emacs is distributed in the hope that it will be useful, | 16 | ;; GNU Emacs is distributed in the hope that it will be useful, |
| 17 | ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | 17 | ;; but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 18 | ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 18 | ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 19 | ;; GNU General Public License for more details. | 19 | ;; GNU General Public License for more details. |
| 20 | 20 | ||
| 21 | ;; You should have received a copy of the GNU General Public License | 21 | ;; You should have received a copy of the GNU General Public License |
| @@ -110,7 +110,7 @@ have all the sub-threads as children. | |||
| 110 | If this variable is `adopt', Gnus will make one of the \"children\" | 110 | If this variable is `adopt', Gnus will make one of the \"children\" |
| 111 | the parent and mark all the step-children as such. | 111 | the parent and mark all the step-children as such. |
| 112 | If this variable is `empty', the \"children\" are printed with empty | 112 | If this variable is `empty', the \"children\" are printed with empty |
| 113 | subject fields. (Or rather, they will be printed with a string | 113 | subject fields. (Or rather, they will be printed with a string |
| 114 | given by the `gnus-summary-same-subject' variable.)" | 114 | given by the `gnus-summary-same-subject' variable.)" |
| 115 | :group 'gnus-thread | 115 | :group 'gnus-thread |
| 116 | :type '(choice (const :tag "off" nil) | 116 | :type '(choice (const :tag "off" nil) |
| @@ -3975,7 +3975,7 @@ If NO-DISPLAY, don't generate a summary buffer." | |||
| 3975 | infloop)) | 3975 | infloop)) |
| 3976 | 3976 | ||
| 3977 | (defun gnus-make-threads () | 3977 | (defun gnus-make-threads () |
| 3978 | "Go through the dependency hashtb and find the roots. Return all threads." | 3978 | "Go through the dependency hashtb and find the roots. Return all threads." |
| 3979 | (let (threads) | 3979 | (let (threads) |
| 3980 | (while (catch 'infloop | 3980 | (while (catch 'infloop |
| 3981 | (mapatoms | 3981 | (mapatoms |
| @@ -4481,7 +4481,7 @@ If LINE, insert the rebuilt thread starting on line LINE." | |||
| 4481 | ;; First go up in this thread until we find the root. | 4481 | ;; First go up in this thread until we find the root. |
| 4482 | (setq last-id (gnus-root-id id) | 4482 | (setq last-id (gnus-root-id id) |
| 4483 | headers (message-flatten-list (gnus-id-to-thread last-id))) | 4483 | headers (message-flatten-list (gnus-id-to-thread last-id))) |
| 4484 | ;; We have now found the real root of this thread. It might have | 4484 | ;; We have now found the real root of this thread. It might have |
| 4485 | ;; been gathered into some loose thread, so we have to search | 4485 | ;; been gathered into some loose thread, so we have to search |
| 4486 | ;; through the threads to find the thread we wanted. | 4486 | ;; through the threads to find the thread we wanted. |
| 4487 | (let ((threads gnus-newsgroup-threads) | 4487 | (let ((threads gnus-newsgroup-threads) |
| @@ -5927,7 +5927,7 @@ The resulting hash table is returned, or nil if no Xrefs were found." | |||
| 5927 | (let ((case-fold-search t) | 5927 | (let ((case-fold-search t) |
| 5928 | in-reply-to header p lines chars) | 5928 | in-reply-to header p lines chars) |
| 5929 | (goto-char (point-min)) | 5929 | (goto-char (point-min)) |
| 5930 | ;; Search to the beginning of the next header. Error messages | 5930 | ;; Search to the beginning of the next header. Error messages |
| 5931 | ;; do not begin with 2 or 3. | 5931 | ;; do not begin with 2 or 3. |
| 5932 | (while (re-search-forward "^[23][0-9]+ " nil t) | 5932 | (while (re-search-forward "^[23][0-9]+ " nil t) |
| 5933 | (setq id nil | 5933 | (setq id nil |
| @@ -5935,7 +5935,7 @@ The resulting hash table is returned, or nil if no Xrefs were found." | |||
| 5935 | ;; This implementation of this function, with nine | 5935 | ;; This implementation of this function, with nine |
| 5936 | ;; search-forwards instead of the one re-search-forward and | 5936 | ;; search-forwards instead of the one re-search-forward and |
| 5937 | ;; a case (which basically was the old function) is actually | 5937 | ;; a case (which basically was the old function) is actually |
| 5938 | ;; about twice as fast, even though it looks messier. You | 5938 | ;; about twice as fast, even though it looks messier. You |
| 5939 | ;; can't have everything, I guess. Speed and elegance | 5939 | ;; can't have everything, I guess. Speed and elegance |
| 5940 | ;; doesn't always go hand in hand. | 5940 | ;; doesn't always go hand in hand. |
| 5941 | (setq | 5941 | (setq |