Mercurial > emacs
annotate lisp/textmodes/scribe.el @ 26088:b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
* Makefile.in (emacs): Set the LC_ALL environment variable to "C"
when dumping, so that the dumped Emacs doesn't have stray locale info.
(dired.o): Depend on systime.h.
(editfns.o): Depend on coding.h.
* alloc.c, buffer.c, callproc.c, ccl.c, charset.c, coding.c, data.c,
dispnew.c, editfns.c, emacs.c, filelock.c, floatfns.c, hftctl.c,
keyboard.c, process.c, sysdep.c, unexelf.c, unexhp9k800.c,
unexsunos4.c, vmsfns.c, vmsgmalloc.c, w32faces.c, w32menu.c, w32term.c,
w32xfns.c, xfaces.c, xfns.c, xmenu.c, xterm.c:
Include <config.h> before any system include files.
* alloc.c, buffer.c, ccl.c, data.c, editfns.c, emacs.c, eval.c,
fileio.c, filelock.c, frame.c, insdel.c, keymap.c, lread.c,
m/alpha.h, print.c, search.c, sysdep.c, xdisp.c, xfaces.c, xfns.c,
xmenu.c, xterm.c:
Do not include <stdlib.h>, as <config.h> does this now.
* callproc.c (Fcall_process):
Synchronize messages locale before invoking strerror.
Decode resulting string with locale-coding-system.
* coding.c (Vlocale_coding_system): New var.
(syms_of_coding): Adjust to above change.
(emacs_strerror): New function.
* coding.h (emacs_strerror, Vlocale_coding_system): New decls.
* config.in (HAVE_STDIO_EXT_H, HAVE_TM_GMTOFF, HAVE___FPENDING,
HAVE_FTELLO, HAVE_GETLOADAVG, HAVE_MBLEN, HAVE_MBRLEN,
HAVE_STRSIGNAL): New macros.
(BITS_PER_LONG): Default to 64 if _LP64 is defined.
<stdlib.h>: Include if HAVE_STDLIB_H is defined and NOT_C_CODE isn't.
* dired.c: Include "systime.h".
(Ffile_attributes): Do not cast s.st_size to int; this loses
information if int is 32 bits but st_size and EMACS_INT are larger.
Treat large device numbers like large inode numbers.
* dispnew.c (PENDING_OUTPUT_COUNT): Use __fpending if available.
* editfns.c: Include coding.h.
(emacs_strftime): Remove decl.
(emacs_strftimeu): New decl.
(emacs_memftimeu): Renamed from emacs_memftime; new arg UT.
Use emacs_strftimeu instead of emacs_strftime.
(Fformat_time_string): Convert format string using
Vlocale_coding_system, and convert result back. Synchronize time
locale before invoking lower level function. Invoke
emacs_memftimeu, passing ut, instead of emacs_memftime.
* emacs.c: Include <locale.h> if HAVE_SETLOCALE is defined.
(Vmessages_locale, Vprevious_messages_locale, Vtime_locale,
Vprevious_time_locale): New variables.
(main): Invoke setlocale early, so that initial error messages are
localized properly. But skip locale-setting if LC_ALL is "C".
Fix up locale when it's safe to do so.
(fixup_locale): Moved here from xterm.c.
(synchronize_locale, synchronize_time_locale,
synchronize_messages_locale): New functions.
(syms_of_emacs): Accommodate above changes.
* fileio.c (report_file_error): Convert strerror output according
to Vlocale_coding_system.
(Finsert_file_contents): Check for arithmetic overflow in
computations that depend on file size. Report IO errors
with emacs_strerror, not strerror.
* fns.c (Fgethash): Declare dflt parameter.
* gmalloc.c: Do not define const to nothing if HAVE_CONFIG_H
is defined; that's config.h's job.
* lisp.h (EMACS_INT, BITS_PER_EMACS_INT, EMACS_UINT): If _LP64,
default these values to long, BITS_PER_LONG, and unsigned long.
(VALBITS, MARKBIT, XINT): Do not assume 32-bit EMACS_INT.
(PNTR_COMPARISON_TYPE): Default to EMACS_UINT, not to unsigned int.
(code_convert_string_norecord, fixup_locale,
synchronize_messages_locale, synchronize_time_locale,
emacs_open, emacs_close, emacs_read, emacs_write): New decls.
All Emacs callers of open, close, read, write changed to use
emacs_open, emacs_close, emacs_read, emacs_write.
* lread.c (file_offset, file_tell): New macros. All uses of ftell
changed to file_tell.
(saved_doc_string_position, prev_saved_doc_string_position): Now
of type file_offset.
(init_lread): Do not fix locale here; fixup_locale now does this.
* m/amdahl.h, s/usg5-4.h:
(NSIG): Remove.
(NSIG_MINIMUM): New macro.
* m/cydra5.h, m/dpx2.h, m/mips.h, m/pfa50.h, m/sps7.h, m/stride.h,
m/ustation.h, s/gnu-linux.h, s/hpux.h, s/iris3-5.h, s/iris3-6.h,
s/umips.h, s/usg5-4.h:
(SIGIO): Do not undef.
(BROKEN_SIGIO): New macro.
* m/ustation.h:
(SIGTSTP): Do not undef.
(BROKEN_SIGTSTP): New macro.
* s/gnu-linux.h:
(SIGPOLL, SIGURG): Do not undef.
(BROKEN_SIGPOLL, BROKEN_SIGURG): New macros.
* s/ptx4.h:
(SIGINFO): Do not undef.
(BROKEN_SIGINFO): New macros.
* m/delta.h, s/ptx.h, s/template.h: Doc fix.
* mktime.c, strftime.c: Update to glibc 2.1.2 version, with
some Emacs-related changes merged.
* print.c (float_to_string): Prepend "-" to representation of a
NaN if the NaN is negative.
* process.c (sys_siglist): Omit if HAVE_STRSIGNAL.
(wait_reading_process_input): Use emacs_strerror, not strerror.
* process.c (status_message, sigchld_handler): Synchronize locale,
then use strsignal istead of sys_siglist.
* w32proc.c (sys_wait): Likewise.
* s/aix3-1.h, s/bsd4-1.h, s/dgux.h, s/gnu-linux.h, s/hiuxmpp.h,
s/hpux.h, s/iris3-5.h, s/iris3-6.h, s/irix3-3.h, s/osf1.h, s/rtu.h,
s/sunos4-1.h, s/unipl5-0.h, s/unipl5-2.h, s/usg5-0.h, s/usg5-2-2.h,
s/usg5-2.h, s/usg5-3.h, s/xenix.h:
(open, close, read, write, INTERRUPTIBLE_OPEN,
INTERRUPTIBLE_CLOSE, INTERRUPTIBLE_IO): Remove.
* s/sol2-5.h (_LARGEFILE_SOURCE, _FILE_OFFSET_BITS): New macros.
* sysdep.c (sys_read, sys_write, read, write, sys_close, close,
sys_open, open): Remove.
(emacs_open, emacs_close, emacs_read, emacs_write): Always define;
the old INTERRUPTIBLE_OPEN, INTERRUPTIBLE_CLOSE, and INTERRUPTIBLE_IO
macros are no longer used.
(emacs_open): Renamed from sys_open. Merge BSD4_1 version.
(emacs_close): Renamed from sys_close.
(emacs_read): Renamed from sys_read.
(emacs_write): Renamed from sys_write.
(sys_siglist): Do not declare if HAVE_STRSIGNAL.
(dup2): Do not print error on failure; the real dup2 doesn't.
(strsignal): New function, defined if !HAVE_STRSIGNAL.
* syssignal.h (SIGINFO): Undef if defined and if BROKEN_SIGINFO
is defined.
(SIGIO, SIGPOLL, SIGTSTP, SIGURG): Likewise.
(NSIG): If less than NSIG_MINIMUM, define to NSIG_MINIMUM.
(strsignal): Declare if !HAVE_STRSIGNAL.
* unexelf.c (ElfBitsW, ELFSIZE, ElfExpandBitsW): New macros.
(ElfW): Define in terms of ElfExpandBitsW.
* w32proc.c (sys_siglist): Remove decl.
* xdisp.c (decode_mode_spec): 3rd arg is int, not char, to comply
with ANSI C.
(display_string): Declare face_string_pos arg.
* xfns.c (Fx_show_tip): Declare timeout param.
* xterm.c: No need to include locale.h.
(x_alloc_lighter_color, x_setup_relief_color):
Pass arg as double, not float, for compatibility with ANSI C.
(fixup_locale): Move to emacs.c.
(x_term_init): Do not setlocale or fixup locale; the main program
does this now.
author | Paul Eggert <eggert@twinsun.com> |
---|---|
date | Tue, 19 Oct 1999 07:25:11 +0000 |
parents | 9b831f34ff7d |
children | 3e37953dc2d5 |
rev | line source |
---|---|
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
258
diff
changeset
|
1 ;;; scribe.el --- scribe mode, and its idiosyncratic commands. |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
258
diff
changeset
|
2 |
845 | 3 ;; Copyright (C) 1985 Free Software Foundation, Inc. |
4 | |
787
3cece0106722
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
658
diff
changeset
|
5 ;; Maintainer: FSF |
2247
2c7997f249eb
Add or correct keywords
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1539
diff
changeset
|
6 ;; Keywords: wp |
7 | 7 |
10460
b2e37a1d2347
(scribe-mode): Treat @: as a sentence end.
Richard M. Stallman <rms@gnu.org>
parents:
2315
diff
changeset
|
8 ;; This file is part of GNU Emacs. |
b2e37a1d2347
(scribe-mode): Treat @: as a sentence end.
Richard M. Stallman <rms@gnu.org>
parents:
2315
diff
changeset
|
9 |
b2e37a1d2347
(scribe-mode): Treat @: as a sentence end.
Richard M. Stallman <rms@gnu.org>
parents:
2315
diff
changeset
|
10 ;; GNU Emacs is free software; you can redistribute it and/or modify |
b2e37a1d2347
(scribe-mode): Treat @: as a sentence end.
Richard M. Stallman <rms@gnu.org>
parents:
2315
diff
changeset
|
11 ;; it under the terms of the GNU General Public License as published by |
b2e37a1d2347
(scribe-mode): Treat @: as a sentence end.
Richard M. Stallman <rms@gnu.org>
parents:
2315
diff
changeset
|
12 ;; the Free Software Foundation; either version 2, or (at your option) |
b2e37a1d2347
(scribe-mode): Treat @: as a sentence end.
Richard M. Stallman <rms@gnu.org>
parents:
2315
diff
changeset
|
13 ;; any later version. |
7 | 14 |
15 ;; GNU Emacs is distributed in the hope that it will be useful, | |
10460
b2e37a1d2347
(scribe-mode): Treat @: as a sentence end.
Richard M. Stallman <rms@gnu.org>
parents:
2315
diff
changeset
|
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of |
b2e37a1d2347
(scribe-mode): Treat @: as a sentence end.
Richard M. Stallman <rms@gnu.org>
parents:
2315
diff
changeset
|
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
b2e37a1d2347
(scribe-mode): Treat @: as a sentence end.
Richard M. Stallman <rms@gnu.org>
parents:
2315
diff
changeset
|
18 ;; GNU General Public License for more details. |
7 | 19 |
10460
b2e37a1d2347
(scribe-mode): Treat @: as a sentence end.
Richard M. Stallman <rms@gnu.org>
parents:
2315
diff
changeset
|
20 ;; You should have received a copy of the GNU General Public License |
14169 | 21 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
23 ;; Boston, MA 02111-1307, USA. | |
7 | 24 |
2315
9e7ec92a4fdf
Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2247
diff
changeset
|
25 ;;; Commentary: |
9e7ec92a4fdf
Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2247
diff
changeset
|
26 |
9e7ec92a4fdf
Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2247
diff
changeset
|
27 ;; A major mode for editing source in written for the Scribe text formatter. |
9e7ec92a4fdf
Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2247
diff
changeset
|
28 ;; Knows about Scribe syntax and standard layout rules. The command to |
9e7ec92a4fdf
Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2247
diff
changeset
|
29 ;; run Scribe on a buffer is bogus; someone interested should fix it. |
9e7ec92a4fdf
Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2247
diff
changeset
|
30 |
787
3cece0106722
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
658
diff
changeset
|
31 ;;; Code: |
7 | 32 |
20959 | 33 (defgroup scribe nil |
34 "Scribe mode." | |
35 :prefix "scribe-" | |
36 :group 'wp) | |
37 | |
7 | 38 (defvar scribe-mode-syntax-table nil |
39 "Syntax table used while in scribe mode.") | |
40 | |
41 (defvar scribe-mode-abbrev-table nil | |
42 "Abbrev table used while in scribe mode.") | |
43 | |
20959 | 44 (defcustom scribe-fancy-paragraphs nil |
45 "*Non-NIL makes Scribe mode use a different style of paragraph separation." | |
46 :type 'boolean | |
47 :group 'scribe) | |
7 | 48 |
20959 | 49 (defcustom scribe-electric-quote nil |
50 "*Non-NIL makes insert of double quote use `` or '' depending on context." | |
51 :type 'boolean | |
52 :group 'scribe) | |
7 | 53 |
20959 | 54 (defcustom scribe-electric-parenthesis nil |
7 | 55 "*Non-NIL makes parenthesis char ( (]}> ) automatically insert its close |
20959 | 56 if typed after an @Command form." |
57 :type 'boolean | |
58 :group 'scribe) | |
7 | 59 |
60 (defconst scribe-open-parentheses "[({<" | |
61 "Open parenthesis characters for Scribe.") | |
62 | |
63 (defconst scribe-close-parentheses "])}>" | |
1539 | 64 "Close parenthesis characters for Scribe. |
65 These should match up with `scribe-open-parenthesis'.") | |
7 | 66 |
67 (if (null scribe-mode-syntax-table) | |
68 (let ((st (syntax-table))) | |
69 (unwind-protect | |
70 (progn | |
71 (setq scribe-mode-syntax-table (copy-syntax-table | |
72 text-mode-syntax-table)) | |
73 (set-syntax-table scribe-mode-syntax-table) | |
74 (modify-syntax-entry ?\" " ") | |
75 (modify-syntax-entry ?\\ " ") | |
76 (modify-syntax-entry ?@ "w ") | |
77 (modify-syntax-entry ?< "(> ") | |
78 (modify-syntax-entry ?> ")< ") | |
79 (modify-syntax-entry ?[ "(] ") | |
80 (modify-syntax-entry ?] ")[ ") | |
81 (modify-syntax-entry ?{ "(} ") | |
82 (modify-syntax-entry ?} "){ ") | |
83 (modify-syntax-entry ?' "w ")) | |
84 (set-syntax-table st)))) | |
85 | |
86 (defvar scribe-mode-map nil) | |
87 | |
88 (if scribe-mode-map | |
89 nil | |
90 (setq scribe-mode-map (make-sparse-keymap)) | |
91 (define-key scribe-mode-map "\t" 'scribe-tab) | |
92 (define-key scribe-mode-map "\e\t" 'tab-to-tab-stop) | |
93 (define-key scribe-mode-map "\es" 'center-line) | |
94 (define-key scribe-mode-map "\e}" 'up-list) | |
95 (define-key scribe-mode-map "\eS" 'center-paragraph) | |
96 (define-key scribe-mode-map "\"" 'scribe-insert-quote) | |
97 (define-key scribe-mode-map "(" 'scribe-parenthesis) | |
98 (define-key scribe-mode-map "[" 'scribe-parenthesis) | |
99 (define-key scribe-mode-map "{" 'scribe-parenthesis) | |
100 (define-key scribe-mode-map "<" 'scribe-parenthesis) | |
11664
966c6625a963
(scribe-chapter): Change to C-c C-c.
Karl Heuer <kwzh@gnu.org>
parents:
10893
diff
changeset
|
101 (define-key scribe-mode-map "\C-c\C-c" 'scribe-chapter) |
966c6625a963
(scribe-chapter): Change to C-c C-c.
Karl Heuer <kwzh@gnu.org>
parents:
10893
diff
changeset
|
102 (define-key scribe-mode-map "\C-c\C-t" 'scribe-section) |
966c6625a963
(scribe-chapter): Change to C-c C-c.
Karl Heuer <kwzh@gnu.org>
parents:
10893
diff
changeset
|
103 (define-key scribe-mode-map "\C-c\C-s" 'scribe-subsection) |
966c6625a963
(scribe-chapter): Change to C-c C-c.
Karl Heuer <kwzh@gnu.org>
parents:
10893
diff
changeset
|
104 (define-key scribe-mode-map "\C-c\C-v" 'scribe-insert-environment) |
966c6625a963
(scribe-chapter): Change to C-c C-c.
Karl Heuer <kwzh@gnu.org>
parents:
10893
diff
changeset
|
105 (define-key scribe-mode-map "\C-c\C-e" 'scribe-bracket-region-be) |
966c6625a963
(scribe-chapter): Change to C-c C-c.
Karl Heuer <kwzh@gnu.org>
parents:
10893
diff
changeset
|
106 (define-key scribe-mode-map "\C-c[" 'scribe-begin) |
966c6625a963
(scribe-chapter): Change to C-c C-c.
Karl Heuer <kwzh@gnu.org>
parents:
10893
diff
changeset
|
107 (define-key scribe-mode-map "\C-c]" 'scribe-end) |
966c6625a963
(scribe-chapter): Change to C-c C-c.
Karl Heuer <kwzh@gnu.org>
parents:
10893
diff
changeset
|
108 (define-key scribe-mode-map "\C-c\C-i" 'scribe-italicize-word) |
966c6625a963
(scribe-chapter): Change to C-c C-c.
Karl Heuer <kwzh@gnu.org>
parents:
10893
diff
changeset
|
109 (define-key scribe-mode-map "\C-c\C-b" 'scribe-bold-word) |
966c6625a963
(scribe-chapter): Change to C-c C-c.
Karl Heuer <kwzh@gnu.org>
parents:
10893
diff
changeset
|
110 (define-key scribe-mode-map "\C-c\C-u" 'scribe-underline-word)) |
7 | 111 |
258 | 112 ;;;###autoload |
7 | 113 (defun scribe-mode () |
114 "Major mode for editing files of Scribe (a text formatter) source. | |
115 Scribe-mode is similar text-mode, with a few extra commands added. | |
116 \\{scribe-mode-map} | |
117 | |
118 Interesting variables: | |
119 | |
120 scribe-fancy-paragraphs | |
121 Non-nil makes Scribe mode use a different style of paragraph separation. | |
122 | |
123 scribe-electric-quote | |
124 Non-nil makes insert of double quote use `` or '' depending on context. | |
125 | |
126 scribe-electric-parenthesis | |
127 Non-nil makes an open-parenthesis char (one of `([<{') | |
128 automatically insert its close if typed after an @Command form." | |
129 (interactive) | |
130 (kill-all-local-variables) | |
131 (use-local-map scribe-mode-map) | |
132 (setq mode-name "Scribe") | |
133 (setq major-mode 'scribe-mode) | |
134 (define-abbrev-table 'scribe-mode-abbrev-table ()) | |
135 (setq local-abbrev-table scribe-mode-abbrev-table) | |
136 (make-local-variable 'comment-start) | |
137 (setq comment-start "@Comment[") | |
138 (make-local-variable 'comment-start-skip) | |
139 (setq comment-start-skip (concat "@Comment[" scribe-open-parentheses "]")) | |
140 (make-local-variable 'comment-column) | |
141 (setq comment-column 0) | |
142 (make-local-variable 'comment-end) | |
143 (setq comment-end "]") | |
144 (make-local-variable 'paragraph-start) | |
10893
e9418d324071
(scribe-mode): Remove ^ from paragraph-start & paragraph-separate.
Boris Goldowsky <boris@gnu.org>
parents:
10460
diff
changeset
|
145 (setq paragraph-start (concat "\\([\n\f]\\)\\|\\(@\\w+[" |
7 | 146 scribe-open-parentheses |
147 "].*[" | |
148 scribe-close-parentheses | |
149 "]$\\)")) | |
150 (make-local-variable 'paragraph-separate) | |
151 (setq paragraph-separate (if scribe-fancy-paragraphs | |
10893
e9418d324071
(scribe-mode): Remove ^ from paragraph-start & paragraph-separate.
Boris Goldowsky <boris@gnu.org>
parents:
10460
diff
changeset
|
152 paragraph-start "$")) |
10460
b2e37a1d2347
(scribe-mode): Treat @: as a sentence end.
Richard M. Stallman <rms@gnu.org>
parents:
2315
diff
changeset
|
153 (make-local-variable 'sentence-end) |
b2e37a1d2347
(scribe-mode): Treat @: as a sentence end.
Richard M. Stallman <rms@gnu.org>
parents:
2315
diff
changeset
|
154 (setq sentence-end "\\([.?!]\\|@:\\)[]\"')}]*\\($\\| $\\|\t\\| \\)[ \t\n]*") |
7 | 155 (make-local-variable 'compile-command) |
156 (setq compile-command (concat "scribe " (buffer-file-name))) | |
157 (set-syntax-table scribe-mode-syntax-table) | |
158 (run-hooks 'text-mode-hook 'scribe-mode-hook)) | |
159 | |
160 (defun scribe-tab () | |
161 (interactive) | |
162 (insert "@\\")) | |
163 | |
164 ;; This algorithm could probably be improved somewhat. | |
165 ;; Right now, it loses seriously... | |
166 | |
167 (defun scribe () | |
168 "Run Scribe on the current buffer." | |
169 (interactive) | |
170 (call-interactively 'compile)) | |
171 | |
172 (defun scribe-envelop-word (string count) | |
1539 | 173 "Surround current word with Scribe construct @STRING[...]. |
174 COUNT specifies how many words to surround. A negative count means | |
175 to skip backward." | |
7 | 176 (let ((spos (point)) (epos (point)) (ccoun 0) noparens) |
177 (if (not (zerop count)) | |
178 (progn (if (= (char-syntax (preceding-char)) ?w) | |
179 (forward-sexp (min -1 count))) | |
180 (setq spos (point)) | |
181 (if (looking-at (concat "@\\w[" scribe-open-parentheses "]")) | |
182 (forward-char 2) | |
183 (goto-char epos) | |
184 (skip-chars-backward "\\W") | |
185 (forward-char -1)) | |
186 (forward-sexp (max count 1)) | |
187 (setq epos (point)))) | |
188 (goto-char spos) | |
189 (while (and (< ccoun (length scribe-open-parentheses)) | |
190 (save-excursion | |
191 (or (search-forward (char-to-string | |
192 (aref scribe-open-parentheses ccoun)) | |
193 epos t) | |
194 (search-forward (char-to-string | |
195 (aref scribe-close-parentheses ccoun)) | |
196 epos t))) | |
197 (setq ccoun (1+ ccoun)))) | |
198 (if (>= ccoun (length scribe-open-parentheses)) | |
199 (progn (goto-char epos) | |
200 (insert "@end(" string ")") | |
201 (goto-char spos) | |
202 (insert "@begin(" string ")")) | |
203 (goto-char epos) | |
204 (insert (aref scribe-close-parentheses ccoun)) | |
205 (goto-char spos) | |
206 (insert "@" string (aref scribe-open-parentheses ccoun)) | |
207 (goto-char epos) | |
208 (forward-char 3) | |
209 (skip-chars-forward scribe-close-parentheses)))) | |
210 | |
211 (defun scribe-underline-word (count) | |
212 "Underline COUNT words around point by means of Scribe constructs." | |
213 (interactive "p") | |
214 (scribe-envelop-word "u" count)) | |
215 | |
216 (defun scribe-bold-word (count) | |
217 "Boldface COUNT words around point by means of Scribe constructs." | |
218 (interactive "p") | |
219 (scribe-envelop-word "b" count)) | |
220 | |
221 (defun scribe-italicize-word (count) | |
222 "Italicize COUNT words around point by means of Scribe constructs." | |
223 (interactive "p") | |
224 (scribe-envelop-word "i" count)) | |
225 | |
226 (defun scribe-begin () | |
227 (interactive) | |
228 (insert "\n") | |
229 (forward-char -1) | |
230 (scribe-envelop-word "Begin" 0) | |
231 (re-search-forward (concat "[" scribe-open-parentheses "]"))) | |
232 | |
233 (defun scribe-end () | |
234 (interactive) | |
235 (insert "\n") | |
236 (forward-char -1) | |
237 (scribe-envelop-word "End" 0) | |
238 (re-search-forward (concat "[" scribe-open-parentheses "]"))) | |
239 | |
240 (defun scribe-chapter () | |
241 (interactive) | |
242 (insert "\n") | |
243 (forward-char -1) | |
244 (scribe-envelop-word "Chapter" 0) | |
245 (re-search-forward (concat "[" scribe-open-parentheses "]"))) | |
246 | |
247 (defun scribe-section () | |
248 (interactive) | |
249 (insert "\n") | |
250 (forward-char -1) | |
251 (scribe-envelop-word "Section" 0) | |
252 (re-search-forward (concat "[" scribe-open-parentheses "]"))) | |
253 | |
254 (defun scribe-subsection () | |
255 (interactive) | |
256 (insert "\n") | |
257 (forward-char -1) | |
258 (scribe-envelop-word "SubSection" 0) | |
259 (re-search-forward (concat "[" scribe-open-parentheses "]"))) | |
260 | |
261 (defun scribe-bracket-region-be (env min max) | |
262 (interactive "sEnvironment: \nr") | |
263 (save-excursion | |
264 (goto-char max) | |
265 (insert "@end(" env ")\n") | |
266 (goto-char min) | |
267 (insert "@begin(" env ")\n"))) | |
268 | |
269 (defun scribe-insert-environment (env) | |
270 (interactive "sEnvironment: ") | |
271 (scribe-bracket-region-be env (point) (point)) | |
272 (forward-line 1) | |
273 (insert ?\n) | |
274 (forward-char -1)) | |
275 | |
276 (defun scribe-insert-quote (count) | |
1539 | 277 "Insert ``, '' or \" according to preceding character. |
278 If `scribe-electric-quote' is non-NIL, insert ``, '' or \" according | |
7 | 279 to preceding character. With numeric arg N, always insert N \" characters. |
280 Else just insert \"." | |
281 (interactive "P") | |
282 (if (or count (not scribe-electric-quote)) | |
283 (self-insert-command (prefix-numeric-value count)) | |
284 (let (lastfore lastback lastquote) | |
285 (insert | |
286 (cond | |
287 ((= (preceding-char) ?\\) ?\") | |
288 ((bobp) "``") | |
289 (t | |
290 (setq lastfore (save-excursion (and (search-backward | |
291 "``" (- (point) 1000) t) | |
292 (point))) | |
293 lastback (save-excursion (and (search-backward | |
294 "''" (- (point) 1000) t) | |
295 (point))) | |
296 lastquote (save-excursion (and (search-backward | |
297 "\"" (- (point) 100) t) | |
298 (point)))) | |
299 (if (not lastquote) | |
300 (cond ((not lastfore) "``") | |
301 ((not lastback) "''") | |
302 ((> lastfore lastback) "''") | |
303 (t "``")) | |
304 (cond ((and (not lastback) (not lastfore)) "\"") | |
305 ((and lastback (not lastfore) (> lastquote lastback)) "\"") | |
306 ((and lastback (not lastfore) (> lastback lastquote)) "``") | |
307 ((and lastfore (not lastback) (> lastquote lastfore)) "\"") | |
308 ((and lastfore (not lastback) (> lastfore lastquote)) "''") | |
309 ((and (> lastquote lastfore) (> lastquote lastback)) "\"") | |
310 ((> lastfore lastback) "''") | |
311 (t "``"))))))))) | |
312 | |
313 (defun scribe-parenthesis (count) | |
314 "If scribe-electric-parenthesis is non-NIL, insertion of an open-parenthesis | |
315 character inserts the following close parenthesis character if the | |
316 preceding text is of the form @Command." | |
317 (interactive "P") | |
318 (self-insert-command (prefix-numeric-value count)) | |
319 (let (at-command paren-char point-save) | |
320 (if (or count (not scribe-electric-parenthesis)) | |
321 nil | |
322 (save-excursion | |
323 (forward-char -1) | |
324 (setq point-save (point)) | |
325 (skip-chars-backward (concat "^ \n\t\f" scribe-open-parentheses)) | |
326 (setq at-command (and (equal (following-char) ?@) | |
327 (/= (point) (1- point-save))))) | |
328 (if (and at-command | |
329 (setq paren-char | |
330 (string-match (regexp-quote | |
331 (char-to-string (preceding-char))) | |
332 scribe-open-parentheses))) | |
333 (save-excursion | |
334 (insert (aref scribe-close-parentheses paren-char))))))) | |
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
258
diff
changeset
|
335 |
18383 | 336 (provide 'scribe) |
337 | |
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
258
diff
changeset
|
338 ;;; scribe.el ends here |