Skip to content

Commit

Permalink
Merge branch 'maint'
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicolas Goaziou committed Oct 23, 2013
2 parents f3ae90c + a535d29 commit aff4f10
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lisp/ox-odt.el
Original file line number Diff line number Diff line change
Expand Up @@ -2059,7 +2059,7 @@ CONTENTS is nil. INFO is a plist holding contextual information."
(defun org-odt-line-break (line-break contents info)
"Transcode a LINE-BREAK object from Org to ODT.
CONTENTS is nil. INFO is a plist holding contextual information."
"<text:line-break/>\n")
"<text:line-break/>")


;;;; Link
Expand Down Expand Up @@ -2980,7 +2980,7 @@ contextual information."
;; Handle break preservation if required.
(when (plist-get info :preserve-breaks)
(setq output (replace-regexp-in-string
"\\(\\\\\\\\\\)?[ \t]*\n" "<text:line-break/>\n" output t)))
"\\(\\\\\\\\\\)?[ \t]*\n" "<text:line-break/>" output t)))
;; Return value.
output))

Expand Down

0 comments on commit aff4f10

Please sign in to comment.