summaryrefslogtreecommitdiff
path: root/lisp/textmodes
diff options
context:
space:
mode:
authorJim Blandy <jimb@redhat.com>1993-05-18 21:33:52 +0000
committerJim Blandy <jimb@redhat.com>1993-05-18 21:33:52 +0000
commit6f680efba5e5d1f349838b51361d5acceb107a91 (patch)
treeda95669529114f16529b3e7a6f2759f43c05f38d /lisp/textmodes
parentb0874bbd1366203ac7c5afe7af49397b337464c7 (diff)
downloademacs-6f680efba5e5d1f349838b51361d5acceb107a91.tar.gz
* bibtex.el (bibtex-string): Use \" instead of "" to get a double
quote inside a string. * vms-patch.el (print-region-function): Same.
Diffstat (limited to 'lisp/textmodes')
-rw-r--r--lisp/textmodes/bibtex.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/textmodes/bibtex.el b/lisp/textmodes/bibtex.el
index 0b49065ea37..f1f8b6e2b18 100644
--- a/lisp/textmodes/bibtex.el
+++ b/lisp/textmodes/bibtex.el
@@ -1105,7 +1105,7 @@ as such should normally be set via a file local variable entry.")
(defun bibtex-string ()
(interactive)
(bibtex-move-outside-of-entry)
- (insert "@string{ = """"}\n")
+ (insert "@string{ = \"\"}\n")
(previous-line 1)
(forward-char 8))