+2005-01-25 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
+
+ * textmodes/bibtex.el (bibtex-format-entry): Use
+ `bibtex-empty-field-re' only on the text of fields, not on entire
+ field lines.
+ (bibtex-autofill-entry): Use `bibtex-empty-field-re' on a string,
+ not on part of a buffer.
+
+2005-01-25 Lute Kamstra <lute@gnu.org>
+
+ * textmodes/bibtex.el (bibtex-empty-field-re): Don't match
+ nonempty field text strings like "{letters\\macro{}more letters}".
+ Clarify docstring.
+ (bibtex-sort-entry-class, bibtex-autokey-titleword-ignore)
+ (bibtex-entry-offset, bibtex-parse-association)
+ (bibtex-parse-field-name): Fix typos in docstrings.
+ (bibtex-field-list, bibtex-find-crossref): Fix typos in error
+ messages.
+
2005-01-24 Carsten Dominik <dominik@science.uva.nl>
* textmodes/reftex-global.el (reftex-isearch-push-state-function)
* term/mac-win.el (process-connection-type): Removed.
Controlled now by s/darwin.h:PTY_ITERATION.
->>>>>>> 1.6921
2005-01-20 Stefan Monnier <monnier@iro.umontreal.ca>
* window.el (handle-select-window): Don't switch window when we're
* ebrowse.el (ebrowse-class-in-tree): Return the tail of the tree
rather than the element found, thus enabling the tree to be setcar'd.
->>>>>>> 1.6903
2005-01-14 Carsten Dominik <dominik@science.uva.nl>
* textmodes/org.el (org-show-following-heading): New option.
If value of `bibtex-maintain-sorted-entries' is `entry-class'
entries are ordered according to the classes they belong to. Each
class contains a list of entry names. An entry `catch-all' applies
-to all entries not explicitely mentioned."
+to all entries not explicitly mentioned."
:group 'BibTeX
:type '(repeat (choice :tag "Class"
(const :tag "catch-all" (catch-all))
'("A" "An" "On" "The" "Eine?" "Der" "Die" "Das"
"[^A-Z].*" ".*[^A-Z0-9].*")
"Determines words from the title that are not to be used in the key.
-Each item of the list is a regexp. If a word of the title matchs a
+Each item of the list is a regexp. If a word of the title matches a
regexp from that list, it is not included in the title part of the key.
See `bibtex-generate-autokey' for details."
:group 'bibtex-autokey
(defcustom bibtex-entry-offset 0
"Offset for BibTeX entries.
-Added to the value of all other variables which determine colums."
+Added to the value of all other variables which determine columns."
:group 'bibtex
:type 'integer)
t))
"Regexp matching the name of any valid BibTeX entry (including string).")
-
-(defconst bibtex-empty-field-re "\"\"\\|{}"
- "Regexp matching an empty field.")
+(defconst bibtex-empty-field-re "\\`\\(\"\"\\|{}\\)\\'"
+ "Regexp matching the text part (as a string) of an empty field.")
(defconst bibtex-font-lock-syntactic-keywords
`((,(concat "^[ \t]*\\(" (substring bibtex-comment-start 0 1) "\\)"
"Parse a string of the format <left-hand-side = right-hand-side>.
The functions PARSE-LHS and PARSE-RHS are used to parse the corresponding
substrings. These functions are expected to return nil if parsing is not
-successfull. If both functions return non-nil, a pair containing the returned
+successful. If both functions return non-nil, a pair containing the returned
values of the functions PARSE-LHS and PARSE-RHS is returned."
(save-match-data
(save-excursion
If the field name is found, return a triple consisting of the position of the
very first character of the match, the actual starting position of the name
part and end position of the match. Move point to end of field name.
-If `bibtex-autoadd-commas' is non-nil add missing comma at end of preceeding
+If `bibtex-autoadd-commas' is non-nil add missing comma at end of preceding
BibTeX field as necessary."
(cond ((looking-at ",[ \t\n]*")
(let ((start (point)))
(if opt-alt (+ beg-name 3) beg-name) end-name))
(empty-field (string-match bibtex-empty-field-re
(buffer-substring-no-properties
- beg-field end-field)))
+ beg-text end-text)))
deleted)
;; We have more elegant high-level functions for several
(let ((e (assoc-string entry-type bibtex-entry-field-alist t))
required optional)
(unless e
- (error "Bibtex entry type %s not defined" entry-type))
+ (error "BibTeX entry type %s not defined" entry-type))
(if (and (member-ignore-case entry-type bibtex-include-OPTcrossref)
(nth 2 e))
(setq required (nth 0 (nth 2 e))
(while (setq bounds (bibtex-parse-field bibtex-field-name))
(let ((text (assoc-string (bibtex-name-in-field bounds t)
other t)))
- (goto-char (bibtex-start-of-text-in-field bounds))
- (if (not (and (looking-at bibtex-empty-field-re) text))
+ (if (not (and text
+ (string-match bibtex-empty-field-re
+ (buffer-substring-no-properties
+ (bibtex-start-of-text-in-field bounds)
+ (bibtex-end-of-text-in-field bounds)))))
(goto-char (bibtex-end-of-field bounds))
+ (goto-char (bibtex-start-of-text-in-field bounds))
(delete-region (point) (bibtex-end-of-text-in-field bounds))
(insert (cdr text)))))
;; Finally try to update the text based on the difference between
(bibtex-reposition-window)
(beginning-of-line)
(if (and eqb (> pnt pos))
- (error "The referencing entry must preceed the crossrefed entry!")))
+ (error "The referencing entry must precede the crossrefed entry!")))
;; `bibtex-find-crossref' is called noninteractively during
;; clean-up of an entry. Then it is not possible to check
;; whether the current entry and the crossrefed entry have