annotate src/unexfx2800.c @ 27260:ec1a21729421
(xemacsp, version18p, version-20p):
Add ispell- prefix.
Only define dictionaries in menus when they exist.
(version18p): New variable.
(version20p): New variable.
(xemacsp): New variable.
(ispell-choices-win-default-height): Fix for XEmacs visibility.
(ispell-dictionary-alist1): Added Brasileiro dictionary.
(ispell-dictionary-alist6): Russian command lines no longer accept
run-together words.
(ispell-local-dictionary-alist): Add koi8-r to customize definition.
(ispell-dictionary-alist): Add koi8-r to customize definition.
(check-ispell-version): Added documentation string. Returns
library path when called non-interactively.
(ispell-menu-map-needed): Uses new variables.
(ispell-library-path): New variable.
(ispell-decode-string): XEmacs fix for bogus variable bindings.
(ispell-word): Improved documentation string. Test for valid
character mappings. Correctly check typed in word changes that can
result in single words split into multiple words. Returns
replacement word.
(ispell-command-loop): Fixes XEmacs display bugs. Show word to
replace in recursive query replace mode. Help message for
recursive edit mode.
(ispell-show-choices): Protect against bad framepop bindings.
(ispell-help): Fix to work with XEmacs.
(ispell-highlight-spelling-error): Use new variables.
(ispell-overlay-window): Fix to work with XEmacs.
(ispell-parse-output): Passed and returns location information
tracking spelling corrections. Doesn't recheck same word on
current line.
(ispell-init-process): Protect against bogus XEmacs variable binding.
Fix call to single argument in sleep-for. Use new variables.
(ispell-region): Passed and returns location information tracking
spelling corrections. Doesn't check same word on current line.
Improved documentation string. Doesn't resend a line already
checked to the ispell process - fixes bug in LaTeX parsing.
(ispell-begin-skip-region-regexp): No longer skips <TT> in SGML.
(ispell-skip-region): No longer skips <TT> in SGML.
(ispell-process-line): Tracks location information with spelling
corrections. Added documentation string. Accounts for words
already accepted on this line. Don't allow query-replace on line
starting with math characters. Doesn't resend a line already sent
to ispell process. Fixes alignment error bug.
author |
Gerd Moellmann <gerd@gnu.org> |
date |
Mon, 10 Jan 2000 12:02:49 +0000 |
parents |
79ea818b6aed |
children |
|
rev |
line source |
524
|
1 /* Unexec for the Alliant FX/2800. */
|
|
2
|
|
3 #include <stdio.h>
|
|
4
|
|
5 unexec (new_name, a_name, data_start, bss_start, entry_address)
|
|
6 char *new_name, *a_name;
|
|
7 unsigned data_start, bss_start, entry_address;
|
|
8 {
|
|
9 int stat;
|
|
10
|
|
11 stat = elf_write_modified_data (a_name, new_name);
|
|
12 if (stat < 0)
|
|
13 perror ("emacs: elf_write_modified_data");
|
|
14 else if (stat > 0)
|
|
15 fprintf (stderr, "Unspecified error from elf_write_modified_data.\n");
|
|
16 }
|