diff options
| author | J.D. Smith | 2006-04-24 21:57:45 +0000 |
|---|---|---|
| committer | J.D. Smith | 2006-04-24 21:57:45 +0000 |
| commit | 19f0b8b5fe0c59eb0f087cd20b1f423e3b906e31 (patch) | |
| tree | f51a637450f566afb0ba4c84f2034f7a88144c1b | |
| parent | a9ec73170e2ed5316e72875666ab01fd1f1e9043 (diff) | |
| download | emacs-19f0b8b5fe0c59eb0f087cd20b1f423e3b906e31.tar.gz emacs-19f0b8b5fe0c59eb0f087cd20b1f423e3b906e31.zip | |
(bibtex-find-entry): Don't demand matching case for @Article, etc.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/textmodes/bibtex.el | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index e6181f976fa..78bcc719c4e 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2006-04-24 J.D. Smith <jdsmith@as.arizona.edu> | ||
| 2 | |||
| 3 | * textmodes/bibtex.el (bibtex-find-entry): Don't demand matching | ||
| 4 | case for @Article, etc. | ||
| 5 | |||
| 1 | 2006-04-23 Michael Albinus <michael.albinus@gmx.de> | 6 | 2006-04-23 Michael Albinus <michael.albinus@gmx.de> |
| 2 | 7 | ||
| 3 | * net/tramp.el (tramp-register-file-name-handlers): New defun. | 8 | * net/tramp.el (tramp-register-file-name-handlers): New defun. |
diff --git a/lisp/textmodes/bibtex.el b/lisp/textmodes/bibtex.el index ff1c1e48eb0..1b5dedec7f8 100644 --- a/lisp/textmodes/bibtex.el +++ b/lisp/textmodes/bibtex.el | |||
| @@ -3303,7 +3303,7 @@ Otherwise, use `set-buffer'. DISPLAY is t when called interactively." | |||
| 3303 | (display (message "Key `%s' not found" key))) | 3303 | (display (message "Key `%s' not found" key))) |
| 3304 | found) | 3304 | found) |
| 3305 | 3305 | ||
| 3306 | (let* (case-fold-search | 3306 | (let* ((case-fold-search t) |
| 3307 | (pnt (save-excursion | 3307 | (pnt (save-excursion |
| 3308 | (goto-char (or start (point-min))) | 3308 | (goto-char (or start (point-min))) |
| 3309 | (if (re-search-forward (concat "^[ \t]*\\(" | 3309 | (if (re-search-forward (concat "^[ \t]*\\(" |