diff options
| author | Glenn Morris | 2013-02-21 20:32:45 -0500 |
|---|---|---|
| committer | Glenn Morris | 2013-02-21 20:32:45 -0500 |
| commit | 153dd4d04f0bb5e315cb1911db1c05c6a3d976df (patch) | |
| tree | 9cf8f45fb4c5984d333fdc5bea48e1c5f6d09782 | |
| parent | b59a2e9edb562fce9c63a73242db323cd4a9dc0f (diff) | |
| download | emacs-153dd4d04f0bb5e315cb1911db1c05c6a3d976df.tar.gz emacs-153dd4d04f0bb5e315cb1911db1c05c6a3d976df.zip | |
* lisp/htmlfontify.el (hfy-default-header): Encode title string. (Bug#7457)
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/htmlfontify.el | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 68cff2f6d29..7f65619dcfa 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2013-02-22 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * htmlfontify.el (hfy-default-header): Encode title string. (Bug#7457) | ||
| 4 | |||
| 1 | 2013-02-21 Bastien Guerry <bzg@gnu.org> | 5 | 2013-02-21 Bastien Guerry <bzg@gnu.org> |
| 2 | 6 | ||
| 3 | * cmuscheme.el (scheme-buffer): Fix docstring. (Bug#13778) | 7 | * cmuscheme.el (scheme-buffer): Fix docstring. (Bug#13778) |
diff --git a/lisp/htmlfontify.el b/lisp/htmlfontify.el index df8ef86a3cd..768dda993e2 100644 --- a/lisp/htmlfontify.el +++ b/lisp/htmlfontify.el | |||
| @@ -717,7 +717,7 @@ STYLE is the inline CSS stylesheet (or tag referring to an external sheet)." | |||
| 717 | --> </script> | 717 | --> </script> |
| 718 | </head> | 718 | </head> |
| 719 | <body onload=\"stripe('index'); return true;\">\n" | 719 | <body onload=\"stripe('index'); return true;\">\n" |
| 720 | file style)) | 720 | (mapconcat 'hfy-html-quote (mapcar 'char-to-string file) "") style)) |
| 721 | 721 | ||
| 722 | (defun hfy-default-footer (_file) | 722 | (defun hfy-default-footer (_file) |
| 723 | "Default value for `hfy-page-footer'. | 723 | "Default value for `hfy-page-footer'. |