summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2015-09-25 12:32:13 +0300
committerEli Zaretskii <eliz@gnu.org>2015-09-25 12:32:13 +0300
commit0d31eeb796f3388ee4160b7fdff60004ce6847cf (patch)
treea934bd8f2697375a2af9d9a5bbb027a077fb6e9c
parent1657ba799a873a7758219dc0bdebf6ab91908fa2 (diff)
Avoid non-ASCII decoding errors in Texinfo files
* doc/misc/tramp.texi: * doc/lispref/strings.texi: * doc/lispref/positions.texi: * doc/lispref/help.texi: * doc/lispref/functions.texi: * doc/lispintro/emacs-lisp-intro.texi: * doc/emacs/text.texi: * doc/emacs/modes.texi: * doc/emacs/mini.texi: * doc/emacs/display.texi: * doc/emacs/custom.texi: * doc/emacs/basic.texi: Add 'coding' cookies -- these files use Unicode characters and should be decoded as UTF-8. * doc/lispref/frames.texi (Size Parameters): Don't use a non-ASCII apostrophe unnecessarily.
-rw-r--r--doc/emacs/basic.texi1
-rw-r--r--doc/emacs/custom.texi1
-rw-r--r--doc/emacs/display.texi1
-rw-r--r--doc/emacs/mini.texi1
-rw-r--r--doc/emacs/modes.texi1
-rw-r--r--doc/emacs/text.texi1
-rw-r--r--doc/lispintro/emacs-lisp-intro.texi2
-rw-r--r--doc/lispref/frames.texi2
-rw-r--r--doc/lispref/functions.texi2
-rw-r--r--doc/lispref/help.texi2
-rw-r--r--doc/lispref/positions.texi2
-rw-r--r--doc/lispref/strings.texi2
-rw-r--r--doc/lispref/tips.texi2
-rw-r--r--doc/misc/tramp.texi2
14 files changed, 14 insertions, 8 deletions
diff --git a/doc/emacs/basic.texi b/doc/emacs/basic.texi
index 40daf56a3a..e5d34c62a5 100644
--- a/doc/emacs/basic.texi
+++ b/doc/emacs/basic.texi
@@ -1,3 +1,4 @@
+@c -*- coding: utf-8 -*-
@c This is part of the Emacs manual.
@c Copyright (C) 1985-1987, 1993-1995, 1997, 2000-2015 Free Software
@c Foundation, Inc.
diff --git a/doc/emacs/custom.texi b/doc/emacs/custom.texi
index 0d11f12dfc..76c7261767 100644
--- a/doc/emacs/custom.texi
+++ b/doc/emacs/custom.texi
@@ -1,3 +1,4 @@
+@c -*- coding: utf-8 -*-
@c This is part of the Emacs manual.
@c Copyright (C) 1985-1987, 1993-1995, 1997, 2000-2015 Free Software
@c Foundation, Inc.
diff --git a/doc/emacs/display.texi b/doc/emacs/display.texi
index 7aef52d99d..a722ec4841 100644
--- a/doc/emacs/display.texi
+++ b/doc/emacs/display.texi
@@ -1,3 +1,4 @@
+@c -*- coding: utf-8 -*-
@c This is part of the Emacs manual.
@c Copyright (C) 1985-1987, 1993-1995, 1997, 2000-2015 Free Software
@c Foundation, Inc.
diff --git a/doc/emacs/mini.texi b/doc/emacs/mini.texi
index 058f385c0e..2493fdadf3 100644
--- a/doc/emacs/mini.texi
+++ b/doc/emacs/mini.texi
@@ -1,3 +1,4 @@
+@c -*- coding: utf-8 -*-
@c This is part of the Emacs manual.
@c Copyright (C) 1985-1987, 1993-1995, 1997, 2000-2015 Free Software
@c Foundation, Inc.
diff --git a/doc/emacs/modes.texi b/doc/emacs/modes.texi
index 3bba577a5f..4abbb59e89 100644
--- a/doc/emacs/modes.texi
+++ b/doc/emacs/modes.texi
@@ -1,3 +1,4 @@
+@c -*- coding: utf-8 -*-
@c This is part of the Emacs manual.
@c Copyright (C) 1985-1987, 1993-1995, 1997, 2000-2015 Free Software
@c Foundation, Inc.
diff --git a/doc/emacs/text.texi b/doc/emacs/text.texi
index 2843eed5ef..7f3afd71d5 100644
--- a/doc/emacs/text.texi
+++ b/doc/emacs/text.texi
@@ -1,3 +1,4 @@
+@c -*- coding: utf-8 -*-
@c This is part of the Emacs manual.
@c Copyright (C) 1985-1987, 1993-1995, 1997, 2000-2015 Free Software
@c Foundation, Inc.
diff --git a/doc/lispintro/emacs-lisp-intro.texi b/doc/lispintro/emacs-lisp-intro.texi
index 096b7bec28..22e50e94f4 100644
--- a/doc/lispintro/emacs-lisp-intro.texi
+++ b/doc/lispintro/emacs-lisp-intro.texi
@@ -1,4 +1,4 @@
-\input texinfo @c -*-texinfo-*-
+\input texinfo @c -*- mode: texinfo; coding: utf-8 -*-
@comment %**start of header
@setfilename ../../info/eintr.info
@c setfilename emacs-lisp-intro.info
diff --git a/doc/lispref/frames.texi b/doc/lispref/frames.texi
index 0950a98e89..3ae33082fc 100644
--- a/doc/lispref/frames.texi
+++ b/doc/lispref/frames.texi
@@ -1283,7 +1283,7 @@ user-position}) does for the position parameters @code{top} and
@cindex maximized frames
@vindex fullscreen, a frame parameter
@item fullscreen
-This parameter specifies whether to maximize the frame’s width, height
+This parameter specifies whether to maximize the frame's width, height
or both. Its value can be @code{fullwidth}, @code{fullheight},
@code{fullboth}, or @code{maximized}. A @dfn{fullwidth} frame is as
wide as possible, a @dfn{fullheight} frame is as tall as possible, and
diff --git a/doc/lispref/functions.texi b/doc/lispref/functions.texi
index 895dca0262..8835667b82 100644
--- a/doc/lispref/functions.texi
+++ b/doc/lispref/functions.texi
@@ -1,4 +1,4 @@
-@c -*-texinfo-*-
+@c -*- mode: texinfo; coding: utf-8 -*-
@c This is part of the GNU Emacs Lisp Reference Manual.
@c Copyright (C) 1990-1995, 1998-1999, 2001-2015 Free Software
@c Foundation, Inc.
diff --git a/doc/lispref/help.texi b/doc/lispref/help.texi
index fe7c457f57..387587a420 100644
--- a/doc/lispref/help.texi
+++ b/doc/lispref/help.texi
@@ -1,4 +1,4 @@
-@c -*-texinfo-*-
+@c -*- mode: texinfo; coding: utf-8 -*-
@c This is part of the GNU Emacs Lisp Reference Manual.
@c Copyright (C) 1990-1995, 1998-1999, 2001-2015 Free Software
@c Foundation, Inc.
diff --git a/doc/lispref/positions.texi b/doc/lispref/positions.texi
index 92f98ab890..72b76ce5c8 100644
--- a/doc/lispref/positions.texi
+++ b/doc/lispref/positions.texi
@@ -1,4 +1,4 @@
-@c -*-texinfo-*-
+@c -*- mode: texinfo; coding: utf-8 -*-
@c This is part of the GNU Emacs Lisp Reference Manual.
@c Copyright (C) 1990-1995, 1998-2015 Free Software Foundation, Inc.
@c See the file elisp.texi for copying conditions.
diff --git a/doc/lispref/strings.texi b/doc/lispref/strings.texi
index ac11dd9880..143de82d9a 100644
--- a/doc/lispref/strings.texi
+++ b/doc/lispref/strings.texi
@@ -1,4 +1,4 @@
-@c -*-texinfo-*-
+@c -*- mode: texinfo; coding: utf-8 -*-
@c This is part of the GNU Emacs Lisp Reference Manual.
@c Copyright (C) 1990-1995, 1998-1999, 2001-2015 Free Software
@c Foundation, Inc.
diff --git a/doc/lispref/tips.texi b/doc/lispref/tips.texi
index aa78c735c3..d9cbf47330 100644
--- a/doc/lispref/tips.texi
+++ b/doc/lispref/tips.texi
@@ -1,4 +1,4 @@
-@c -*-texinfo-*-
+@c -*- mode: texinfo; coding: utf-8 -*-
@c This is part of the GNU Emacs Lisp Reference Manual.
@c Copyright (C) 1990-1993, 1995, 1998-1999, 2001-2015 Free Software
@c Foundation, Inc.
diff --git a/doc/misc/tramp.texi b/doc/misc/tramp.texi
index 87c7c8054f..ac2e74ed50 100644
--- a/doc/misc/tramp.texi
+++ b/doc/misc/tramp.texi
@@ -1,4 +1,4 @@
-\input texinfo @c -*-texinfo-*-
+\input texinfo @c -*- mode: texinfo; coding: utf-8 -*-
@setfilename ../../info/tramp.info
@c %**start of header
@settitle TRAMP User Manual