diff options
| author | Pavel Janík | 2002-03-16 12:08:49 +0000 |
|---|---|---|
| committer | Pavel Janík | 2002-03-16 12:08:49 +0000 |
| commit | 73cc75b5592e8e072299a29b2d525cae948cec47 (patch) | |
| tree | d1aded0f895b4e9018f94b61f1c6b84e76bd676d | |
| parent | 663671d5a82dc8514e055e248294c1ef4b394342 (diff) | |
| download | emacs-73cc75b5592e8e072299a29b2d525cae948cec47.tar.gz emacs-73cc75b5592e8e072299a29b2d525cae948cec47.zip | |
(bibtex-sort-ignore-string-entries)
(bibtex-entry-field-alist): Doc fix.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/textmodes/bibtex.el | 6 |
2 files changed, 8 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 1aaa962d4c7..b93c92be2e2 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2002-03-16 Pavel Jan,Bm(Bk <Pavel@Janik.cz> | ||
| 2 | |||
| 3 | * textmodes/bibtex.el (bibtex-sort-ignore-string-entries) | ||
| 4 | (bibtex-entry-field-alist): Doc fix. | ||
| 5 | |||
| 1 | 2002-03-16 Richard M. Stallman <rms@gnu.org> | 6 | 2002-03-16 Richard M. Stallman <rms@gnu.org> |
| 2 | 7 | ||
| 3 | * progmodes/cperl-mode.el (cperl-imenu--function-name-regexp-perl): | 8 | * progmodes/cperl-mode.el (cperl-imenu--function-name-regexp-perl): |
diff --git a/lisp/textmodes/bibtex.el b/lisp/textmodes/bibtex.el index 043a84f679a..69a3ceaa746 100644 --- a/lisp/textmodes/bibtex.el +++ b/lisp/textmodes/bibtex.el | |||
| @@ -172,7 +172,7 @@ narrowed to just the entry." | |||
| 172 | (defcustom bibtex-sort-ignore-string-entries t | 172 | (defcustom bibtex-sort-ignore-string-entries t |
| 173 | "*If non-nil, BibTeX @String entries are not sort-significant. | 173 | "*If non-nil, BibTeX @String entries are not sort-significant. |
| 174 | That means they are ignored when determining ordering of the buffer | 174 | That means they are ignored when determining ordering of the buffer |
| 175 | (e.g., sorting, locating alphabetical position for new entries, etc.). | 175 | \(e.g., sorting, locating alphabetical position for new entries, etc.). |
| 176 | This variable is buffer-local." | 176 | This variable is buffer-local." |
| 177 | :group 'bibtex | 177 | :group 'bibtex |
| 178 | :type 'boolean) | 178 | :type 'boolean) |
| @@ -408,14 +408,14 @@ after last parsing and which are maintained in sorted order are parsed." | |||
| 408 | 408 | ||
| 409 | "Defines entry types and their associated fields. | 409 | "Defines entry types and their associated fields. |
| 410 | List of | 410 | List of |
| 411 | (ENTRY-NAME (REQUIRED OPTIONAL) (CROSSREF-REQUIRED CROSSREF-OPTIONAL)) | 411 | \(ENTRY-NAME (REQUIRED OPTIONAL) (CROSSREF-REQUIRED CROSSREF-OPTIONAL)) |
| 412 | triples. | 412 | triples. |
| 413 | If the third element is nil, the first pair is always used. | 413 | If the third element is nil, the first pair is always used. |
| 414 | If not, the second pair is used in the case of presence of a crossref | 414 | If not, the second pair is used in the case of presence of a crossref |
| 415 | field and the third in the case of absence. | 415 | field and the third in the case of absence. |
| 416 | REQUIRED, OPTIONAL, CROSSREF-REQUIRED and CROSSREF-OPTIONAL are lists. | 416 | REQUIRED, OPTIONAL, CROSSREF-REQUIRED and CROSSREF-OPTIONAL are lists. |
| 417 | Each element of these lists is a list of the form | 417 | Each element of these lists is a list of the form |
| 418 | (FIELD-NAME COMMENT-STRING INIT ALTERNATIVE-FLAG). | 418 | \(FIELD-NAME COMMENT-STRING INIT ALTERNATIVE-FLAG). |
| 419 | COMMENT-STRING, INIT, and ALTERNATIVE-FLAG are optional. | 419 | COMMENT-STRING, INIT, and ALTERNATIVE-FLAG are optional. |
| 420 | FIELD-NAME is the name of the field, COMMENT-STRING the comment to | 420 | FIELD-NAME is the name of the field, COMMENT-STRING the comment to |
| 421 | appear in the echo area, INIT is either the initial content of the | 421 | appear in the echo area, INIT is either the initial content of the |