diff options
| author | Leo Liu | 2011-05-10 16:14:42 +0800 |
|---|---|---|
| committer | Leo Liu | 2011-05-10 16:14:42 +0800 |
| commit | 9e2dd53f1654b39fd8b9732e57fd29b913988ecc (patch) | |
| tree | f84910c192926ad71c9898053d3102a95588b01f | |
| parent | ffb54e99ad5c0c3529e22eec4d112d64977f81a3 (diff) | |
| download | emacs-9e2dd53f1654b39fd8b9732e57fd29b913988ecc.tar.gz emacs-9e2dd53f1654b39fd8b9732e57fd29b913988ecc.zip | |
Convert mail/footnote.el to utf-8 encoding
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/mail/footnote.el | 6 |
2 files changed, 7 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 50c3022ba0a..07a39ea8302 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2011-05-10 Leo Liu <sdl.web@gmail.com> | ||
| 2 | |||
| 3 | * mail/footnote.el: Convert to utf-8 encoding. | ||
| 4 | |||
| 1 | 2011-05-10 Glenn Morris <rgm@gnu.org> | 5 | 2011-05-10 Glenn Morris <rgm@gnu.org> |
| 2 | Stefan Monnier <monnier@iro.umontreal.ca> | 6 | Stefan Monnier <monnier@iro.umontreal.ca> |
| 3 | 7 | ||
diff --git a/lisp/mail/footnote.el b/lisp/mail/footnote.el index 4a4ded22886..c225e4263a8 100644 --- a/lisp/mail/footnote.el +++ b/lisp/mail/footnote.el | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | ;;; footnote.el --- footnote support for message mode -*- coding: iso-latin-1;-*- | 1 | ;;; footnote.el --- footnote support for message mode -*- coding: utf-8;-*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 1997, 2000-2011 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 1997, 2000-2011 Free Software Foundation, Inc. |
| 4 | 4 | ||
| @@ -278,7 +278,7 @@ Wrapping around the alphabet implies successive repetitions of letters." | |||
| 278 | 278 | ||
| 279 | ;; Latin-1 | 279 | ;; Latin-1 |
| 280 | 280 | ||
| 281 | (defconst footnote-latin-string "¹²³ºª§¶" | 281 | (defconst footnote-latin-string "¹²³ºª§¶" |
| 282 | "String of Latin-1 footnoting characters.") | 282 | "String of Latin-1 footnoting characters.") |
| 283 | 283 | ||
| 284 | ;; Note not [...]+, because this style cycles. | 284 | ;; Note not [...]+, because this style cycles. |
| @@ -312,7 +312,7 @@ english-lower == a, b, c, ... | |||
| 312 | english-upper == A, B, C, ... | 312 | english-upper == A, B, C, ... |
| 313 | roman-lower == i, ii, iii, iv, v, ... | 313 | roman-lower == i, ii, iii, iv, v, ... |
| 314 | roman-upper == I, II, III, IV, V, ... | 314 | roman-upper == I, II, III, IV, V, ... |
| 315 | latin == ¹ ² ³ º ª § ¶ | 315 | latin == ¹ ² ³ º ª § ¶ |
| 316 | See also variables `footnote-start-tag' and `footnote-end-tag'. | 316 | See also variables `footnote-start-tag' and `footnote-end-tag'. |
| 317 | 317 | ||
| 318 | Customizing this variable has no effect on buffers already | 318 | Customizing this variable has no effect on buffers already |