annotate lisp/enriched.el @ 31717:6b20b7e85e3c

*** empty log message ***
author Gerd Moellmann <gerd@gnu.org>
date Tue, 19 Sep 2000 13:40:08 +0000
parents a97dcc26018d
children 43839f6e2822
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
13337
84acc3adcd63 Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 12371
diff changeset
1 ;;; enriched.el --- read and save files in text/enriched format
14169
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 13488
diff changeset
2
16022
ac3fea1b270e Add 1996 to copyright notice.
Richard M. Stallman <rms@gnu.org>
parents: 16021
diff changeset
3 ;; Copyright (c) 1994, 1995, 1996 Free Software Foundation, Inc.
9676
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
4
25278
cbe304a26771 Fix maintainer address.
Karl Heuer <kwzh@gnu.org>
parents: 24989
diff changeset
5 ;; Author: Boris Goldowsky <boris@gnu.org>
9676
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
6 ;; Keywords: wp, faces
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
7
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
8 ;; This file is part of GNU Emacs.
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
9
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
10 ;; GNU Emacs is free software; you can redistribute it and/or modify
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
11 ;; it under the terms of the GNU General Public License as published by
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
12 ;; the Free Software Foundation; either version 2, or (at your option)
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
13 ;; any later version.
14169
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 13488
diff changeset
14
9676
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
15 ;; GNU Emacs is distributed in the hope that it will be useful,
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
18 ;; GNU General Public License for more details.
14169
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 13488
diff changeset
19
9676
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
20 ;; You should have received a copy of the GNU General Public License
14169
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 13488
diff changeset
21 ;; along with GNU Emacs; see the file COPYING. If not, write to the
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 13488
diff changeset
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 13488
diff changeset
23 ;; Boston, MA 02111-1307, USA.
9676
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
24
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
25 ;;; Commentary:
14169
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 13488
diff changeset
26
9676
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
27 ;; This file implements reading, editing, and saving files with
14169
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 13488
diff changeset
28 ;; text-properties such as faces, levels of indentation, and true line
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 13488
diff changeset
29 ;; breaks distinguished from newlines just used to fit text into the window.
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 13488
diff changeset
30
9676
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
31 ;; The file format used is the MIME text/enriched format, which is a
14169
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 13488
diff changeset
32 ;; standard format defined in internet RFC 1563. All standard annotations
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 13488
diff changeset
33 ;; are supported except for <smaller> and <bigger>, which are currently not
9676
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
34 ;; possible to display.
14169
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 13488
diff changeset
35
9676
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
36 ;; A separate file, enriched.doc, contains further documentation and other
14169
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 13488
diff changeset
37 ;; important information about this code. It also serves as an example
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 13488
diff changeset
38 ;; file in text/enriched format. It should be in the etc directory of your
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 13488
diff changeset
39 ;; emacs distribution.
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 13488
diff changeset
40
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 13488
diff changeset
41 ;;; Code:
9676
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
42
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
43 (provide 'enriched)
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
44
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
45 ;;;
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
46 ;;; Variables controlling the display
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
47 ;;;
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
48
17426
5c5fa38a1c79 Add defgroup; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 17207
diff changeset
49 (defgroup enriched nil
5c5fa38a1c79 Add defgroup; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 17207
diff changeset
50 "Read and save files in text/enriched format"
5c5fa38a1c79 Add defgroup; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 17207
diff changeset
51 :group 'wp)
5c5fa38a1c79 Add defgroup; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 17207
diff changeset
52
5c5fa38a1c79 Add defgroup; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 17207
diff changeset
53 (defcustom enriched-verbose t
5c5fa38a1c79 Add defgroup; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 17207
diff changeset
54 "*If non-nil, give status messages when reading and writing files."
5c5fa38a1c79 Add defgroup; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 17207
diff changeset
55 :type 'boolean
5c5fa38a1c79 Add defgroup; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 17207
diff changeset
56 :group 'enriched)
9676
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
57
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
58 ;;;
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
59 ;;; Set up faces & display table
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
60 ;;;
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
61
18898
fa6d68fd97b1 (fixed, excerpt): Define with defface. No longer
Richard M. Stallman <rms@gnu.org>
parents: 17426
diff changeset
62 ;; Emacs doesn't have a "fixed" face by default, since all faces currently
fa6d68fd97b1 (fixed, excerpt): Define with defface. No longer
Richard M. Stallman <rms@gnu.org>
parents: 17426
diff changeset
63 ;; have to be fixed-width. So we just pick one that looks different from the
fa6d68fd97b1 (fixed, excerpt): Define with defface. No longer
Richard M. Stallman <rms@gnu.org>
parents: 17426
diff changeset
64 ;; default.
fa6d68fd97b1 (fixed, excerpt): Define with defface. No longer
Richard M. Stallman <rms@gnu.org>
parents: 17426
diff changeset
65 (defface fixed
fa6d68fd97b1 (fixed, excerpt): Define with defface. No longer
Richard M. Stallman <rms@gnu.org>
parents: 17426
diff changeset
66 '((t (:bold t)))
fa6d68fd97b1 (fixed, excerpt): Define with defface. No longer
Richard M. Stallman <rms@gnu.org>
parents: 17426
diff changeset
67 "Face used for text that must be shown in fixed width.
fa6d68fd97b1 (fixed, excerpt): Define with defface. No longer
Richard M. Stallman <rms@gnu.org>
parents: 17426
diff changeset
68 Currently, emacs can only display fixed-width fonts, but this may change.
fa6d68fd97b1 (fixed, excerpt): Define with defface. No longer
Richard M. Stallman <rms@gnu.org>
parents: 17426
diff changeset
69 This face is used for text specifically marked as fixed-width, for example
fa6d68fd97b1 (fixed, excerpt): Define with defface. No longer
Richard M. Stallman <rms@gnu.org>
parents: 17426
diff changeset
70 in text/enriched files."
fa6d68fd97b1 (fixed, excerpt): Define with defface. No longer
Richard M. Stallman <rms@gnu.org>
parents: 17426
diff changeset
71 :group 'enriched)
fa6d68fd97b1 (fixed, excerpt): Define with defface. No longer
Richard M. Stallman <rms@gnu.org>
parents: 17426
diff changeset
72
fa6d68fd97b1 (fixed, excerpt): Define with defface. No longer
Richard M. Stallman <rms@gnu.org>
parents: 17426
diff changeset
73 (defface excerpt
fa6d68fd97b1 (fixed, excerpt): Define with defface. No longer
Richard M. Stallman <rms@gnu.org>
parents: 17426
diff changeset
74 '((t (:italic t)))
fa6d68fd97b1 (fixed, excerpt): Define with defface. No longer
Richard M. Stallman <rms@gnu.org>
parents: 17426
diff changeset
75 "Face used for text that is an excerpt from another document.
fa6d68fd97b1 (fixed, excerpt): Define with defface. No longer
Richard M. Stallman <rms@gnu.org>
parents: 17426
diff changeset
76 This is used in enriched-mode for text explicitly marked as an excerpt."
fa6d68fd97b1 (fixed, excerpt): Define with defface. No longer
Richard M. Stallman <rms@gnu.org>
parents: 17426
diff changeset
77 :group 'enriched)
9676
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
78
11055
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
79 (defconst enriched-display-table (or (copy-sequence standard-display-table)
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
80 (make-display-table)))
9676
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
81 (aset enriched-display-table ?\f (make-vector (1- (frame-width)) ?-))
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
82
11055
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
83 (defconst enriched-par-props '(left-margin right-margin justification)
9676
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
84 "Text-properties that usually apply to whole paragraphs.
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
85 These are set front-sticky everywhere except at hard newlines.")
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
86
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
87 ;;;
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
88 ;;; Variables controlling the file format
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
89 ;;; (bidirectional)
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
90
11055
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
91 (defconst enriched-initial-annotation
9676
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
92 (lambda ()
11055
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
93 (format "Content-Type: text/enriched\nText-Width: %d\n\n"
16021
d6a8a05960d5 Don't fill based on window width.
Richard M. Stallman <rms@gnu.org>
parents: 15239
diff changeset
94 fill-column))
9676
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
95 "What to insert at the start of a text/enriched file.
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
96 If this is a string, it is inserted. If it is a list, it should be a lambda
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
97 expression, which is evaluated to get the string to insert.")
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
98
11055
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
99 (defconst enriched-annotation-format "<%s%s>"
9676
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
100 "General format of enriched-text annotations.")
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
101
30925
a97dcc26018d (enriched-annotation-regexp): Use `A-Z' instead
Gerd Moellmann <gerd@gnu.org>
parents: 30456
diff changeset
102 (defconst enriched-annotation-regexp "<\\(/\\)?\\([-A-Za-z0-9]+\\)>"
9676
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
103 "Regular expression matching enriched-text annotations.")
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
104
11055
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
105 (defconst enriched-translations
9676
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
106 '((face (bold-italic "bold" "italic")
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
107 (bold "bold")
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
108 (italic "italic")
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
109 (underline "underline")
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
110 (fixed "fixed")
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
111 (excerpt "excerpt")
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
112 (default )
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
113 (nil enriched-encode-other-face))
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
114 (left-margin (4 "indent"))
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
115 (right-margin (4 "indentright"))
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
116 (justification (none "nofill")
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
117 (right "flushright")
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
118 (left "flushleft")
10519
66c7e651194d (enriched-annotation-list): property `hard-newline'
Richard M. Stallman <rms@gnu.org>
parents: 9694
diff changeset
119 (full "flushboth")
9676
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
120 (center "center"))
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
121 (PARAMETER (t "param")) ; Argument of preceding annotation
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
122 ;; The following are not part of the standard:
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
123 (FUNCTION (enriched-decode-foreground "x-color")
24989
5d58f00ad19c (enriched-translations): Add `display' and "x-display".
Gerd Moellmann <gerd@gnu.org>
parents: 24466
diff changeset
124 (enriched-decode-background "x-bg-color")
5d58f00ad19c (enriched-translations): Add `display' and "x-display".
Gerd Moellmann <gerd@gnu.org>
parents: 24466
diff changeset
125 (enriched-decode-display-prop "x-display"))
9676
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
126 (read-only (t "x-read-only"))
24989
5d58f00ad19c (enriched-translations): Add `display' and "x-display".
Gerd Moellmann <gerd@gnu.org>
parents: 24466
diff changeset
127 (display (nil enriched-handle-display-prop))
11055
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
128 (unknown (nil format-annotate-value))
9676
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
129 ; (font-size (2 "bigger") ; unimplemented
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
130 ; (-2 "smaller"))
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
131 )
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
132 "List of definitions of text/enriched annotations.
11055
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
133 See `format-annotate-region' and `format-deannotate-region' for the definition
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
134 of this structure.")
9676
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
135
11055
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
136 (defconst enriched-ignore
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
137 '(front-sticky rear-nonsticky hard)
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
138 "Properties that are OK to ignore when saving text/enriched files.
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
139 Any property that is neither on this list nor dealt with by
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
140 `enriched-translations' will generate a warning.")
9676
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
141
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
142 ;;; Internal variables
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
143
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
144 (defvar enriched-mode nil
15239
299516818a79 Several doc fixes.
Karl Heuer <kwzh@gnu.org>
parents: 14340
diff changeset
145 "True if Enriched mode is in use.")
9676
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
146 (make-variable-buffer-local 'enriched-mode)
24466
7f92e74313e7 (enriched-mode): Make var permanent-local.
Karl Heuer <kwzh@gnu.org>
parents: 19685
diff changeset
147 (put 'enriched-mode 'permanent-local t)
9676
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
148
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
149 (if (not (assq 'enriched-mode minor-mode-alist))
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
150 (setq minor-mode-alist
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
151 (cons '(enriched-mode " Enriched")
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
152 minor-mode-alist)))
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
153
17426
5c5fa38a1c79 Add defgroup; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 17207
diff changeset
154 (defcustom enriched-mode-hook nil
15239
299516818a79 Several doc fixes.
Karl Heuer <kwzh@gnu.org>
parents: 14340
diff changeset
155 "Functions to run when entering Enriched mode.
9676
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
156 If you set variables in this hook, you should arrange for them to be restored
15239
299516818a79 Several doc fixes.
Karl Heuer <kwzh@gnu.org>
parents: 14340
diff changeset
157 to their old values if you leave Enriched mode. One way to do this is to add
17426
5c5fa38a1c79 Add defgroup; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 17207
diff changeset
158 them and their old values to `enriched-old-bindings'."
5c5fa38a1c79 Add defgroup; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 17207
diff changeset
159 :type 'hook
5c5fa38a1c79 Add defgroup; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 17207
diff changeset
160 :group 'enriched)
9676
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
161
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
162 (defvar enriched-old-bindings nil
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
163 "Store old variable values that we change when entering mode.
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
164 The value is a list of \(VAR VALUE VAR VALUE...).")
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
165 (make-variable-buffer-local 'enriched-old-bindings)
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
166
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
167 ;;;
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
168 ;;; Define the mode
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
169 ;;;
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
170
9694
f8aa9230c3fa (enriched-mode): Add autoload cookie.
Boris Goldowsky <boris@gnu.org>
parents: 9677
diff changeset
171 ;;;###autoload
11055
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
172 (defun enriched-mode (&optional arg)
9676
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
173 "Minor mode for editing text/enriched files.
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
174 These are files with embedded formatting information in the MIME standard
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
175 text/enriched format.
15239
299516818a79 Several doc fixes.
Karl Heuer <kwzh@gnu.org>
parents: 14340
diff changeset
176 Turning the mode on runs `enriched-mode-hook'.
9676
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
177
15239
299516818a79 Several doc fixes.
Karl Heuer <kwzh@gnu.org>
parents: 14340
diff changeset
178 More information about Enriched mode is available in the file
9676
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
179 etc/enriched.doc in the Emacs distribution directory.
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
180
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
181 Commands:
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
182
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
183 \\<enriched-mode-map>\\{enriched-mode-map}"
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
184 (interactive "P")
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
185 (let ((mod (buffer-modified-p)))
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
186 (cond ((or (<= (prefix-numeric-value arg) 0)
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
187 (and enriched-mode (null arg)))
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
188 ;; Turn mode off
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
189 (setq enriched-mode nil)
11055
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
190 (setq buffer-file-format (delq 'text/enriched buffer-file-format))
9676
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
191 ;; restore old variable values
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
192 (while enriched-old-bindings
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
193 (funcall 'set (car enriched-old-bindings)
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
194 (car (cdr enriched-old-bindings)))
11055
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
195 (setq enriched-old-bindings (cdr (cdr enriched-old-bindings)))))
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
196
9676
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
197 (enriched-mode nil) ; Mode already on; do nothing.
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
198
11055
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
199 (t (setq enriched-mode t) ; Turn mode on
16021
d6a8a05960d5 Don't fill based on window width.
Richard M. Stallman <rms@gnu.org>
parents: 15239
diff changeset
200 (add-to-list 'buffer-file-format 'text/enriched)
11055
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
201 ;; Save old variable values before we change them.
15239
299516818a79 Several doc fixes.
Karl Heuer <kwzh@gnu.org>
parents: 14340
diff changeset
202 ;; These will be restored if we exit Enriched mode.
11055
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
203 (setq enriched-old-bindings
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
204 (list 'buffer-display-table buffer-display-table
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
205 'indent-line-function indent-line-function
11129
2ce4b0aac50c (enriched-mode): Use new plist-put and plist-get fns,
Boris Goldowsky <boris@gnu.org>
parents: 11055
diff changeset
206 'default-text-properties default-text-properties))
11055
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
207 (make-local-variable 'indent-line-function)
11129
2ce4b0aac50c (enriched-mode): Use new plist-put and plist-get fns,
Boris Goldowsky <boris@gnu.org>
parents: 11055
diff changeset
208 (make-local-variable 'default-text-properties)
11055
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
209 (setq indent-line-function 'indent-to-left-margin
16021
d6a8a05960d5 Don't fill based on window width.
Richard M. Stallman <rms@gnu.org>
parents: 15239
diff changeset
210 buffer-display-table enriched-display-table)
d6a8a05960d5 Don't fill based on window width.
Richard M. Stallman <rms@gnu.org>
parents: 15239
diff changeset
211 (use-hard-newlines 1 nil)
11129
2ce4b0aac50c (enriched-mode): Use new plist-put and plist-get fns,
Boris Goldowsky <boris@gnu.org>
parents: 11055
diff changeset
212 (let ((sticky (plist-get default-text-properties 'front-sticky))
11055
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
213 (p enriched-par-props))
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
214 (while p
16021
d6a8a05960d5 Don't fill based on window width.
Richard M. Stallman <rms@gnu.org>
parents: 15239
diff changeset
215 (add-to-list 'sticky (car p))
11055
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
216 (setq p (cdr p)))
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
217 (if sticky
11129
2ce4b0aac50c (enriched-mode): Use new plist-put and plist-get fns,
Boris Goldowsky <boris@gnu.org>
parents: 11055
diff changeset
218 (setq default-text-properties
2ce4b0aac50c (enriched-mode): Use new plist-put and plist-get fns,
Boris Goldowsky <boris@gnu.org>
parents: 11055
diff changeset
219 (plist-put default-text-properties
2ce4b0aac50c (enriched-mode): Use new plist-put and plist-get fns,
Boris Goldowsky <boris@gnu.org>
parents: 11055
diff changeset
220 'front-sticky sticky))))
15239
299516818a79 Several doc fixes.
Karl Heuer <kwzh@gnu.org>
parents: 14340
diff changeset
221 (run-hooks 'enriched-mode-hook)))
9676
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
222 (set-buffer-modified-p mod)
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
223 (force-mode-line-update)))
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
224
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
225 ;;;
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
226 ;;; Keybindings
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
227 ;;;
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
228
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
229 (defvar enriched-mode-map nil
15239
299516818a79 Several doc fixes.
Karl Heuer <kwzh@gnu.org>
parents: 14340
diff changeset
230 "Keymap for Enriched mode.")
9676
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
231
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
232 (if (null enriched-mode-map)
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
233 (fset 'enriched-mode-map (setq enriched-mode-map (make-sparse-keymap))))
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
234
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
235 (if (not (assq 'enriched-mode minor-mode-map-alist))
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
236 (setq minor-mode-map-alist
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
237 (cons (cons 'enriched-mode enriched-mode-map)
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
238 minor-mode-map-alist)))
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
239
11055
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
240 (define-key enriched-mode-map "\C-a" 'beginning-of-line-text)
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
241 (define-key enriched-mode-map "\C-m" 'reindent-then-newline-and-indent)
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
242 (define-key enriched-mode-map "\C-j" 'reindent-then-newline-and-indent)
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
243 (define-key enriched-mode-map "\M-j" 'facemenu-justification-menu)
10519
66c7e651194d (enriched-annotation-list): property `hard-newline'
Richard M. Stallman <rms@gnu.org>
parents: 9694
diff changeset
244 (define-key enriched-mode-map "\M-S" 'set-justification-center)
11055
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
245 (define-key enriched-mode-map "\C-x\t" 'increase-left-margin)
10519
66c7e651194d (enriched-annotation-list): property `hard-newline'
Richard M. Stallman <rms@gnu.org>
parents: 9694
diff changeset
246 (define-key enriched-mode-map "\C-c\C-l" 'set-left-margin)
66c7e651194d (enriched-annotation-list): property `hard-newline'
Richard M. Stallman <rms@gnu.org>
parents: 9694
diff changeset
247 (define-key enriched-mode-map "\C-c\C-r" 'set-right-margin)
9676
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
248
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
249 ;;;
11055
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
250 ;;; Some functions dealing with text-properties, especially indentation
9676
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
251 ;;;
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
252
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
253 (defun enriched-map-property-regions (prop func &optional from to)
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
254 "Apply a function to regions of the buffer based on a text property.
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
255 For each contiguous region of the buffer for which the value of PROPERTY is
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
256 eq, the FUNCTION will be called. Optional arguments FROM and TO specify the
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
257 region over which to scan.
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
258
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
259 The specified function receives three arguments: the VALUE of the property in
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
260 the region, and the START and END of each region."
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
261 (save-excursion
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
262 (save-restriction
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
263 (if to (narrow-to-region (point-min) to))
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
264 (goto-char (or from (point-min)))
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
265 (let ((begin (point))
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
266 end
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
267 (marker (make-marker))
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
268 (val (get-text-property (point) prop)))
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
269 (while (setq end (text-property-not-all begin (point-max) prop val))
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
270 (move-marker marker end)
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
271 (funcall func val begin (marker-position marker))
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
272 (setq begin (marker-position marker)
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
273 val (get-text-property marker prop)))
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
274 (if (< begin (point-max))
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
275 (funcall func val begin (point-max)))))))
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
276
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
277 (put 'enriched-map-property-regions 'lisp-indent-hook 1)
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
278
11055
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
279 (defun enriched-insert-indentation (&optional from to)
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
280 "Indent and justify each line in the region."
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
281 (save-excursion
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
282 (save-restriction
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
283 (if to (narrow-to-region (point-min) to))
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
284 (goto-char (or from (point-min)))
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
285 (if (not (bolp)) (forward-line 1))
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
286 (while (not (eobp))
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
287 (if (eolp)
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
288 nil ; skip blank lines
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
289 (indent-to (current-left-margin))
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
290 (justify-current-line t nil t))
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
291 (forward-line 1)))))
9676
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
292
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
293 ;;;
11055
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
294 ;;; Encoding Files
9676
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
295 ;;;
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
296
11055
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
297 ;;;###autoload
16021
d6a8a05960d5 Don't fill based on window width.
Richard M. Stallman <rms@gnu.org>
parents: 15239
diff changeset
298 (defun enriched-encode (from to orig-buf)
9676
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
299 (if enriched-verbose (message "Enriched: encoding document..."))
11055
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
300 (save-restriction
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
301 (narrow-to-region from to)
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
302 (delete-to-left-margin)
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
303 (unjustify-region)
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
304 (goto-char from)
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
305 (format-replace-strings '(("<" . "<<")))
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
306 (format-insert-annotations
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
307 (format-annotate-region from (point-max) enriched-translations
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
308 'enriched-make-annotation enriched-ignore))
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
309 (goto-char from)
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
310 (insert (if (stringp enriched-initial-annotation)
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
311 enriched-initial-annotation
16021
d6a8a05960d5 Don't fill based on window width.
Richard M. Stallman <rms@gnu.org>
parents: 15239
diff changeset
312 (save-excursion
d6a8a05960d5 Don't fill based on window width.
Richard M. Stallman <rms@gnu.org>
parents: 15239
diff changeset
313 ;; Eval this in the buffer we are annotating. This
d6a8a05960d5 Don't fill based on window width.
Richard M. Stallman <rms@gnu.org>
parents: 15239
diff changeset
314 ;; fixes a bug which was saving incorrect File-Width
d6a8a05960d5 Don't fill based on window width.
Richard M. Stallman <rms@gnu.org>
parents: 15239
diff changeset
315 ;; information, since we were looking at local
d6a8a05960d5 Don't fill based on window width.
Richard M. Stallman <rms@gnu.org>
parents: 15239
diff changeset
316 ;; variables in the wrong buffer.
d6a8a05960d5 Don't fill based on window width.
Richard M. Stallman <rms@gnu.org>
parents: 15239
diff changeset
317 (if orig-buf (set-buffer orig-buf))
d6a8a05960d5 Don't fill based on window width.
Richard M. Stallman <rms@gnu.org>
parents: 15239
diff changeset
318 (funcall enriched-initial-annotation))))
11055
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
319 (enriched-map-property-regions 'hard
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
320 (lambda (v b e)
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
321 (if (and v (= ?\n (char-after b)))
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
322 (progn (goto-char b) (insert "\n"))))
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
323 (point) nil)
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
324 (if enriched-verbose (message nil))
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
325 ;; Return new end.
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
326 (point-max)))
9676
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
327
11055
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
328 (defun enriched-make-annotation (name positive)
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
329 "Format an annotation called NAME.
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
330 If POSITIVE is non-nil, this is the opening annotation, if nil, this is the
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
331 matching close."
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
332 (cond ((stringp name)
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
333 (format enriched-annotation-format (if positive "" "/") name))
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
334 ;; Otherwise it is an annotation with parameters, represented as a list
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
335 (positive
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
336 (let ((item (car name))
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
337 (params (cdr name)))
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
338 (concat (format enriched-annotation-format "" item)
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
339 (mapconcat (lambda (i) (concat "<param>" i "</param>"))
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
340 params ""))))
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
341 (t (format enriched-annotation-format "/" (car name)))))
9676
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
342
11055
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
343 (defun enriched-encode-other-face (old new)
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
344 "Generate annotations for random face change.
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
345 One annotation each for foreground color, background color, italic, etc."
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
346 (cons (and old (enriched-face-ans old))
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
347 (and new (enriched-face-ans new))))
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
348
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
349 (defun enriched-face-ans (face)
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
350 "Return annotations specifying FACE."
27792
de64340fea42 (enriched-face-ans): Handle '(foreground-color
Gerd Moellmann <gerd@gnu.org>
parents: 25278
diff changeset
351 (cond ((and (consp face) (eq (car face) 'foreground-color))
30456
597562b7a8c6 (enriched-face-ans): For a `foreground-color'
Gerd Moellmann <gerd@gnu.org>
parents: 29765
diff changeset
352 (list (list "x-color" (cdr face))))
27792
de64340fea42 (enriched-face-ans): Handle '(foreground-color
Gerd Moellmann <gerd@gnu.org>
parents: 25278
diff changeset
353 ((and (consp face) (eq (car face) 'background-color))
30456
597562b7a8c6 (enriched-face-ans): For a `foreground-color'
Gerd Moellmann <gerd@gnu.org>
parents: 29765
diff changeset
354 (list (list "x-bg-color" (cdr face))))
27792
de64340fea42 (enriched-face-ans): Handle '(foreground-color
Gerd Moellmann <gerd@gnu.org>
parents: 25278
diff changeset
355 ((string-match "^fg:" (symbol-name face))
11055
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
356 (list (list "x-color" (substring (symbol-name face) 3))))
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
357 ((string-match "^bg:" (symbol-name face))
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
358 (list (list "x-bg-color" (substring (symbol-name face) 3))))
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
359 ((let* ((fg (face-foreground face))
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
360 (bg (face-background face))
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
361 (props (face-font face t))
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
362 (ans (cdr (format-annotate-single-property-change
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
363 'face nil props enriched-translations))))
30456
597562b7a8c6 (enriched-face-ans): For a `foreground-color'
Gerd Moellmann <gerd@gnu.org>
parents: 29765
diff changeset
364 (unless (eq fg 'unspecified)
597562b7a8c6 (enriched-face-ans): For a `foreground-color'
Gerd Moellmann <gerd@gnu.org>
parents: 29765
diff changeset
365 (setq ans (cons (list "x-color" fg) ans)))
597562b7a8c6 (enriched-face-ans): For a `foreground-color'
Gerd Moellmann <gerd@gnu.org>
parents: 29765
diff changeset
366 (unless (eq bg 'unspecified)
597562b7a8c6 (enriched-face-ans): For a `foreground-color'
Gerd Moellmann <gerd@gnu.org>
parents: 29765
diff changeset
367 (setq ans (cons (list "x-bg-color" bg) ans)))
11055
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
368 ans))))
9676
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
369
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
370 ;;;
11055
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
371 ;;; Decoding files
9676
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
372 ;;;
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
373
11055
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
374 ;;;###autoload
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
375 (defun enriched-decode (from to)
9676
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
376 (if enriched-verbose (message "Enriched: decoding document..."))
16021
d6a8a05960d5 Don't fill based on window width.
Richard M. Stallman <rms@gnu.org>
parents: 15239
diff changeset
377 (use-hard-newlines 1 'never)
9676
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
378 (save-excursion
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
379 (save-restriction
11055
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
380 (narrow-to-region from to)
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
381 (goto-char from)
16021
d6a8a05960d5 Don't fill based on window width.
Richard M. Stallman <rms@gnu.org>
parents: 15239
diff changeset
382
d6a8a05960d5 Don't fill based on window width.
Richard M. Stallman <rms@gnu.org>
parents: 15239
diff changeset
383 ;; Deal with header
d6a8a05960d5 Don't fill based on window width.
Richard M. Stallman <rms@gnu.org>
parents: 15239
diff changeset
384 (let ((file-width (enriched-get-file-width)))
11055
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
385 (enriched-remove-header)
9676
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
386
11055
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
387 ;; Deal with newlines
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
388 (while (search-forward-regexp "\n\n+" nil t)
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
389 (if (current-justification)
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
390 (delete-char -1))
16021
d6a8a05960d5 Don't fill based on window width.
Richard M. Stallman <rms@gnu.org>
parents: 15239
diff changeset
391 (set-hard-newline-properties (match-beginning 0) (point)))
9676
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
392
11055
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
393 ;; Translate annotations
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
394 (format-deannotate-region from (point-max) enriched-translations
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
395 'enriched-next-annotation)
9676
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
396
16021
d6a8a05960d5 Don't fill based on window width.
Richard M. Stallman <rms@gnu.org>
parents: 15239
diff changeset
397 ;; Indent or fill the buffer
d6a8a05960d5 Don't fill based on window width.
Richard M. Stallman <rms@gnu.org>
parents: 15239
diff changeset
398 (cond (file-width ; File was filled to this width
d6a8a05960d5 Don't fill based on window width.
Richard M. Stallman <rms@gnu.org>
parents: 15239
diff changeset
399 (setq fill-column file-width)
d6a8a05960d5 Don't fill based on window width.
Richard M. Stallman <rms@gnu.org>
parents: 15239
diff changeset
400 (if enriched-verbose (message "Indenting..."))
d6a8a05960d5 Don't fill based on window width.
Richard M. Stallman <rms@gnu.org>
parents: 15239
diff changeset
401 (enriched-insert-indentation))
d6a8a05960d5 Don't fill based on window width.
Richard M. Stallman <rms@gnu.org>
parents: 15239
diff changeset
402 (t ; File was not filled.
d6a8a05960d5 Don't fill based on window width.
Richard M. Stallman <rms@gnu.org>
parents: 15239
diff changeset
403 (if enriched-verbose (message "Filling paragraphs..."))
d6a8a05960d5 Don't fill based on window width.
Richard M. Stallman <rms@gnu.org>
parents: 15239
diff changeset
404 (fill-region (point-min) (point-max))))
d6a8a05960d5 Don't fill based on window width.
Richard M. Stallman <rms@gnu.org>
parents: 15239
diff changeset
405 (if enriched-verbose (message nil)))
11055
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
406 (point-max))))
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
407
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
408 (defun enriched-next-annotation ()
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
409 "Find and return next text/enriched annotation.
13488
71c747dc59ca (enriched-next-annotation): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 13337
diff changeset
410 Any \"<<\" strings encountered are converted to \"<\".
11055
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
411 Return value is \(begin end name positive-p), or nil if none was found."
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
412 (while (and (search-forward "<" nil 1)
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
413 (progn (goto-char (match-beginning 0))
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
414 (not (looking-at enriched-annotation-regexp))))
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
415 (forward-char 1)
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
416 (if (= ?< (char-after (point)))
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
417 (delete-char 1)
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
418 ;; A single < that does not start an annotation is an error,
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
419 ;; which we note and then ignore.
14340
bf1d862f3673 (enriched-next-annotation): Delete format call inside message.
Karl Heuer <kwzh@gnu.org>
parents: 14169
diff changeset
420 (message "Warning: malformed annotation in file at %s"
bf1d862f3673 (enriched-next-annotation): Delete format call inside message.
Karl Heuer <kwzh@gnu.org>
parents: 14169
diff changeset
421 (1- (point)))))
11055
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
422 (if (not (eobp))
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
423 (let* ((beg (match-beginning 0))
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
424 (end (match-end 0))
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
425 (name (downcase (buffer-substring
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
426 (match-beginning 2) (match-end 2))))
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
427 (pos (not (match-beginning 1))))
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
428 (list beg end name pos))))
9676
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
429
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
430 (defun enriched-get-file-width ()
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
431 "Look for file width information on this line."
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
432 (save-excursion
11055
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
433 (if (search-forward "Text-Width: " (+ (point) 1000) t)
9676
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
434 (read (current-buffer)))))
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
435
11055
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
436 (defun enriched-remove-header ()
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
437 "Remove file-format header at point."
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
438 (while (looking-at "^[-A-Za-z]+: .*\n")
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
439 (delete-region (point) (match-end 0)))
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
440 (if (looking-at "^\n")
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
441 (delete-char 1)))
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
442
17207
2d0b382efa26 (enriched-decode-foreground, enriched-decode-background):
Richard M. Stallman <rms@gnu.org>
parents: 16022
diff changeset
443 (defun enriched-decode-foreground (from to &optional color)
11055
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
444 (let ((face (intern (concat "fg:" color))))
17207
2d0b382efa26 (enriched-decode-foreground, enriched-decode-background):
Richard M. Stallman <rms@gnu.org>
parents: 16022
diff changeset
445 (cond ((null color)
2d0b382efa26 (enriched-decode-foreground, enriched-decode-background):
Richard M. Stallman <rms@gnu.org>
parents: 16022
diff changeset
446 (message "Warning: no color specified for <x-color>"))
29765
2ec1f9510791 (enriched-decode-foreground, enriched-decode-background): Don't use
Dave Love <fx@gnu.org>
parents: 28110
diff changeset
447 ((facep face))
28110
7f4fe6e367dc (enriched-decode-foreground): Use display-color-p.
Dave Love <fx@gnu.org>
parents: 27792
diff changeset
448 ((and (display-color-p) (facemenu-get-face face)))
11055
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
449 ((make-face face)
17207
2d0b382efa26 (enriched-decode-foreground, enriched-decode-background):
Richard M. Stallman <rms@gnu.org>
parents: 16022
diff changeset
450 (message "Warning: color `%s' can't be displayed" color)))
11055
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
451 (list from to 'face face)))
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
452
17207
2d0b382efa26 (enriched-decode-foreground, enriched-decode-background):
Richard M. Stallman <rms@gnu.org>
parents: 16022
diff changeset
453 (defun enriched-decode-background (from to &optional color)
11055
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
454 (let ((face (intern (concat "bg:" color))))
17207
2d0b382efa26 (enriched-decode-foreground, enriched-decode-background):
Richard M. Stallman <rms@gnu.org>
parents: 16022
diff changeset
455 (cond ((null color)
2d0b382efa26 (enriched-decode-foreground, enriched-decode-background):
Richard M. Stallman <rms@gnu.org>
parents: 16022
diff changeset
456 (message "Warning: no color specified for <x-bg-color>"))
29765
2ec1f9510791 (enriched-decode-foreground, enriched-decode-background): Don't use
Dave Love <fx@gnu.org>
parents: 28110
diff changeset
457 ((facep face))
28110
7f4fe6e367dc (enriched-decode-foreground): Use display-color-p.
Dave Love <fx@gnu.org>
parents: 27792
diff changeset
458 ((and (display-color-p) (facemenu-get-face face)))
11055
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
459 ((make-face face)
17207
2d0b382efa26 (enriched-decode-foreground, enriched-decode-background):
Richard M. Stallman <rms@gnu.org>
parents: 16022
diff changeset
460 (message "Warning: color `%s' can't be displayed" color)))
11055
c8790275a636 Rewrite, many things moved to format.el.
Boris Goldowsky <boris@gnu.org>
parents: 10519
diff changeset
461 (list from to 'face face)))
9676
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
462
24989
5d58f00ad19c (enriched-translations): Add `display' and "x-display".
Gerd Moellmann <gerd@gnu.org>
parents: 24466
diff changeset
463
5d58f00ad19c (enriched-translations): Add `display' and "x-display".
Gerd Moellmann <gerd@gnu.org>
parents: 24466
diff changeset
464
5d58f00ad19c (enriched-translations): Add `display' and "x-display".
Gerd Moellmann <gerd@gnu.org>
parents: 24466
diff changeset
465 ;;; Handling the `display' property.
5d58f00ad19c (enriched-translations): Add `display' and "x-display".
Gerd Moellmann <gerd@gnu.org>
parents: 24466
diff changeset
466
5d58f00ad19c (enriched-translations): Add `display' and "x-display".
Gerd Moellmann <gerd@gnu.org>
parents: 24466
diff changeset
467
5d58f00ad19c (enriched-translations): Add `display' and "x-display".
Gerd Moellmann <gerd@gnu.org>
parents: 24466
diff changeset
468 (defun enriched-handle-display-prop (old new)
5d58f00ad19c (enriched-translations): Add `display' and "x-display".
Gerd Moellmann <gerd@gnu.org>
parents: 24466
diff changeset
469 "Return a list of annotations for a change in the `display' property.
5d58f00ad19c (enriched-translations): Add `display' and "x-display".
Gerd Moellmann <gerd@gnu.org>
parents: 24466
diff changeset
470 OLD is the old value of the property, NEW is the new value. Value
5d58f00ad19c (enriched-translations): Add `display' and "x-display".
Gerd Moellmann <gerd@gnu.org>
parents: 24466
diff changeset
471 is a list `(CLOSE OPEN)', where CLOSE is a list of annotations to
5d58f00ad19c (enriched-translations): Add `display' and "x-display".
Gerd Moellmann <gerd@gnu.org>
parents: 24466
diff changeset
472 close and OPEN a list of annotations to open. Each of these lists
5d58f00ad19c (enriched-translations): Add `display' and "x-display".
Gerd Moellmann <gerd@gnu.org>
parents: 24466
diff changeset
473 has the form `(ANNOTATION PARAM ...)'."
5d58f00ad19c (enriched-translations): Add `display' and "x-display".
Gerd Moellmann <gerd@gnu.org>
parents: 24466
diff changeset
474 (let ((annotation "x-display")
5d58f00ad19c (enriched-translations): Add `display' and "x-display".
Gerd Moellmann <gerd@gnu.org>
parents: 24466
diff changeset
475 (param (prin1-to-string (or old new)))
5d58f00ad19c (enriched-translations): Add `display' and "x-display".
Gerd Moellmann <gerd@gnu.org>
parents: 24466
diff changeset
476 close open)
5d58f00ad19c (enriched-translations): Add `display' and "x-display".
Gerd Moellmann <gerd@gnu.org>
parents: 24466
diff changeset
477 (if (null old)
5d58f00ad19c (enriched-translations): Add `display' and "x-display".
Gerd Moellmann <gerd@gnu.org>
parents: 24466
diff changeset
478 (list nil (list annotation param))
5d58f00ad19c (enriched-translations): Add `display' and "x-display".
Gerd Moellmann <gerd@gnu.org>
parents: 24466
diff changeset
479 (list (list annotation param)))))
5d58f00ad19c (enriched-translations): Add `display' and "x-display".
Gerd Moellmann <gerd@gnu.org>
parents: 24466
diff changeset
480
5d58f00ad19c (enriched-translations): Add `display' and "x-display".
Gerd Moellmann <gerd@gnu.org>
parents: 24466
diff changeset
481
5d58f00ad19c (enriched-translations): Add `display' and "x-display".
Gerd Moellmann <gerd@gnu.org>
parents: 24466
diff changeset
482 (defun enriched-decode-display-prop (start end &optional param)
5d58f00ad19c (enriched-translations): Add `display' and "x-display".
Gerd Moellmann <gerd@gnu.org>
parents: 24466
diff changeset
483 "Decode a `display' property for text between START and END.
5d58f00ad19c (enriched-translations): Add `display' and "x-display".
Gerd Moellmann <gerd@gnu.org>
parents: 24466
diff changeset
484 PARAM is a `<param>' found for the property.
5d58f00ad19c (enriched-translations): Add `display' and "x-display".
Gerd Moellmann <gerd@gnu.org>
parents: 24466
diff changeset
485 Value is a list `(START END SYMBOL VALUE)' with START and END denoting
5d58f00ad19c (enriched-translations): Add `display' and "x-display".
Gerd Moellmann <gerd@gnu.org>
parents: 24466
diff changeset
486 the range of text to assign text property SYMBOL with value VALUE "
5d58f00ad19c (enriched-translations): Add `display' and "x-display".
Gerd Moellmann <gerd@gnu.org>
parents: 24466
diff changeset
487 (let ((prop (when (stringp param)
5d58f00ad19c (enriched-translations): Add `display' and "x-display".
Gerd Moellmann <gerd@gnu.org>
parents: 24466
diff changeset
488 (condition-case ()
5d58f00ad19c (enriched-translations): Add `display' and "x-display".
Gerd Moellmann <gerd@gnu.org>
parents: 24466
diff changeset
489 (car (read-from-string param))
5d58f00ad19c (enriched-translations): Add `display' and "x-display".
Gerd Moellmann <gerd@gnu.org>
parents: 24466
diff changeset
490 (error nil)))))
5d58f00ad19c (enriched-translations): Add `display' and "x-display".
Gerd Moellmann <gerd@gnu.org>
parents: 24466
diff changeset
491 (unless prop
5d58f00ad19c (enriched-translations): Add `display' and "x-display".
Gerd Moellmann <gerd@gnu.org>
parents: 24466
diff changeset
492 (message "Warning: invalid <x-display> parameter %s" param))
5d58f00ad19c (enriched-translations): Add `display' and "x-display".
Gerd Moellmann <gerd@gnu.org>
parents: 24466
diff changeset
493 (list start end 'display prop)))
5d58f00ad19c (enriched-translations): Add `display' and "x-display".
Gerd Moellmann <gerd@gnu.org>
parents: 24466
diff changeset
494
5d58f00ad19c (enriched-translations): Add `display' and "x-display".
Gerd Moellmann <gerd@gnu.org>
parents: 24466
diff changeset
495
9676
03324d1a8d7f Initial revision
Boris Goldowsky <boris@gnu.org>
parents:
diff changeset
496 ;;; enriched.el ends here