]> code.delx.au - gnu-emacs/log
gnu-emacs
26 years ago(latex-mode): Set fill-nobreak-predicate.
Richard M. Stallman [Mon, 9 Mar 1998 06:36:25 +0000 (06:36 +0000)]
(latex-mode): Set fill-nobreak-predicate.
(slitex-mode): Set fill-nobreak-predicate, tex-face-alist,
and imenu-create-index-function.
(latex-fill-nobreak-predicate): New function.

26 years ago(make-help-screen): Mention DEL in the prompt.
Richard M. Stallman [Mon, 9 Mar 1998 05:26:05 +0000 (05:26 +0000)]
(make-help-screen): Mention DEL in the prompt.

26 years ago(update-file-autoloads):
Richard M. Stallman [Mon, 9 Mar 1998 01:01:36 +0000 (01:01 +0000)]
(update-file-autoloads):
Undo 1997-08-23 change.

26 years ago(quit-window): New command.
Richard M. Stallman [Mon, 9 Mar 1998 00:37:11 +0000 (00:37 +0000)]
(quit-window): New command.

(shrink-window-if-larger-than-buffer):
Bind text-height in the let*.
(view-return-to-alist): Add defvar.

26 years ago(simple_search): Don't count a character until it matches!
Richard M. Stallman [Mon, 9 Mar 1998 00:25:30 +0000 (00:25 +0000)]
(simple_search): Don't count a character until it matches!
Call set_search_regs differently in a forward search.
(boyer_moore): Fix up the code that translates the pattern
and loops thru equivalent characters.

26 years ago(lisp-interaction-mode-map)
Richard M. Stallman [Sun, 8 Mar 1998 23:40:28 +0000 (23:40 +0000)]
(lisp-interaction-mode-map)
(emacs-lisp-mode-map, lisp-mode-map): Use set-keymap-parent.

26 years ago1998-03-08 Carsten Dominik <cd@gnu.org>
Carsten Dominik [Sun, 8 Mar 1998 16:29:08 +0000 (16:29 +0000)]
1998-03-08  Carsten Dominik  <cd@gnu.org>

* (reftex-offer-label-menu, reftex-select-item): removed
match-everywhere interpretation.

26 years ago1998-03-08 Carsten Dominik <cd@gnu.org>
Carsten Dominik [Sun, 8 Mar 1998 11:40:12 +0000 (11:40 +0000)]
1998-03-08  Carsten Dominik  <cd@gnu.org>

* (reftex-cursor-selected-face,
reftex-mouse-selected-face, reftex-file-boundary-face,
reftex-label-face, reftex-section-heading-face,
reftex-toc-header-face, reftex-bib-author-face,
reftex-bib-year-face, reftex-bib-title-face,
reftex-bib-extra-face): New options.
(reftex-toc, reftex-make-and-insert-label-list,
reftex-format-bib-entry, reftex-section-info): Use fonts defined
in the new options.
(reftex-do-citation): Kill buffer *RefTeX Select* to avoid
problems with lazy-lock.

26 years ago(vc-context-matches-p): New function.
André Spiegel [Sun, 8 Mar 1998 10:03:50 +0000 (10:03 +0000)]
(vc-context-matches-p): New function.
(vc-restore-buffer-context): Restore point and mark only if they don't
match the context.
(vc-revert-buffer1, vc-clear-headers): Use save-excursion to relocate
point and mark, and vc-restore-buffer-context as a backup.
(vc-resynch-buffer): When operating on the current buffer, don't use
save-excursion, because that would undo the effects of the above
functions.
(vc-resynch-window): Deleted code that removed vc-find-file-hook
temporarily.  This was unnecessary, because find-file-hooks are not
called when the buffer is reverted.
(vc-register): Added comment for prev change.

26 years ago(c-emacs-features): Var moved to cc-vars.el.
Richard M. Stallman [Sun, 8 Mar 1998 06:55:27 +0000 (06:55 +0000)]
(c-emacs-features): Var moved to cc-vars.el.

26 years ago(c-emacs-features): Var moved from cc-defs.el.
Richard M. Stallman [Sun, 8 Mar 1998 06:55:04 +0000 (06:55 +0000)]
(c-emacs-features): Var moved from cc-defs.el.

26 years agoDon't require cc-defs.
Richard M. Stallman [Sun, 8 Mar 1998 06:53:15 +0000 (06:53 +0000)]
Don't require cc-defs.

26 years ago(c-initialize-cc-mode): Moved require's to top level.
Richard M. Stallman [Sun, 8 Mar 1998 06:52:23 +0000 (06:52 +0000)]
(c-initialize-cc-mode): Moved require's to top level.

(c-initialize-on-load): Variable removed.

26 years ago(c-Java-javadoc-paragraph-start): New variable for use in c-fill-paragraph.
Richard M. Stallman [Sun, 8 Mar 1998 06:51:26 +0000 (06:51 +0000)]
(c-Java-javadoc-paragraph-start): New variable for use in c-fill-paragraph.

26 years ago(c-fill-paragraph): Bind fill-paragraph-function to
Richard M. Stallman [Sun, 8 Mar 1998 06:50:21 +0000 (06:50 +0000)]
(c-fill-paragraph): Bind fill-paragraph-function to
nil when calling fill-paragraph, to avoid bogus recursion which
will signal an error.

(c-fill-paragraph): Always keep point in the same
relative position.  Fill comment before point if there's nothing
else on the same line.  Fill block comments after code a little
better.  Try harder to find a good fill-prefix when point is on a
block comment ender line.  Use c-Java-javadoc-paragraph-start in
block comments in Java mode.  Leave block comment ender alone when
c-hanging-comment-ender-p is nil and point is on that line.
Detect paragraph-separate in multiparagraph comments.  Fix for bug
that may strip the `*' off `*/' if fill-prefix ends with `*' and
c-hanging-comment-ender-p is t.  Added filling of multiline string
literals.  Always return t to disable filling in any unhandled
area, i.e. actual code where fill-paragraph only mess things up.

26 years ago(c-inside-bracelist-p): Fix for enum test.
Richard M. Stallman [Sun, 8 Mar 1998 06:49:04 +0000 (06:49 +0000)]
(c-inside-bracelist-p): Fix for enum test.

(c-collect-line-comments): Require same comment start column.

(c-guess-basic-syntax): Fixes for nesting of and
repeated defun-open's inside extern and namespace clauses.  This
is done by passing a relpos to `inextern-lang' and `innamespace'.
Also, the relpos in `defun-open' is no longer always bol.  It's
always bol when on the top level, however.  Changed cases: 5A.5, 5I, 14A.

(c-forward-token-1, c-backward-token-1): New functions to move by tokens.
c-guess-basic-syntax): Fixes for Java 1.1 array initialization brace lists.

26 years ago(c-enable-xemacs-performance-kludge-p): New variable.
Richard M. Stallman [Sun, 8 Mar 1998 06:45:26 +0000 (06:45 +0000)]
(c-enable-xemacs-performance-kludge-p): New variable.

26 years agoInitial revision
Richard M. Stallman [Sun, 8 Mar 1998 00:53:39 +0000 (00:53 +0000)]
Initial revision

26 years ago(fill-region): If JUSTIFY is non-nil
Richard M. Stallman [Sun, 8 Mar 1998 00:27:23 +0000 (00:27 +0000)]
(fill-region): If JUSTIFY is non-nil
and not a known value, treat it as `full'.
(fill-region-as-paragraph): Likewise.

26 years agoWhitespace changes.
Richard M. Stallman [Sun, 8 Mar 1998 00:26:27 +0000 (00:26 +0000)]
Whitespace changes.

26 years ago(mh-quit): Use quit-window.
Richard M. Stallman [Sun, 8 Mar 1998 00:25:49 +0000 (00:25 +0000)]
(mh-quit): Use quit-window.

26 years ago(rmail-next-same-subject): Ignore leading and
Richard M. Stallman [Sun, 8 Mar 1998 00:24:12 +0000 (00:24 +0000)]
(rmail-next-same-subject): Ignore leading and
trailing whitespace in this message's subject.

(rmail-bury, rmail-quit): Use quit-window.

26 years ago(news-exit): Use quit-window.
Richard M. Stallman [Sun, 8 Mar 1998 00:23:16 +0000 (00:23 +0000)]
(news-exit): Use quit-window.

26 years ago(solitaire-quit): Function deleted.
Richard M. Stallman [Sun, 8 Mar 1998 00:22:53 +0000 (00:22 +0000)]
(solitaire-quit): Function deleted.
(solitaire-mode-map): Use quit-window for q.

26 years ago(select-tags-table-quit): Use quit-window.
Richard M. Stallman [Sun, 8 Mar 1998 00:22:03 +0000 (00:22 +0000)]
(select-tags-table-quit): Use quit-window.

26 years ago(makefile-browser-quit): Use quit-window.
Richard M. Stallman [Sun, 8 Mar 1998 00:21:26 +0000 (00:21 +0000)]
(makefile-browser-quit): Use quit-window.

26 years ago(dired-quit): Function deleted.
Richard M. Stallman [Sun, 8 Mar 1998 00:20:56 +0000 (00:20 +0000)]
(dired-quit): Function deleted.
(dired-mode-map): Use quit-window for q.

26 years ago(bookmark-bmenu-mode-map): Use quit-window for q.
Richard M. Stallman [Sun, 8 Mar 1998 00:20:23 +0000 (00:20 +0000)]
(bookmark-bmenu-mode-map): Use quit-window for q.
(bookmark-bmenu-quit): Function deleted.

26 years ago(Buffer-menu-quit): Function deleted.
Richard M. Stallman [Sun, 8 Mar 1998 00:19:56 +0000 (00:19 +0000)]
(Buffer-menu-quit): Function deleted.
(Buffer-menu-mode-map): Use quit-window for q.

26 years ago(read-passwd): Renamed from read-password. New second arg CONFIRM.
Richard M. Stallman [Sun, 8 Mar 1998 00:16:38 +0000 (00:16 +0000)]
(read-passwd): Renamed from read-password.  New second arg CONFIRM.

26 years agoPROBLEMS is now in etc, not top level dir.
Richard M. Stallman [Sat, 7 Mar 1998 22:34:50 +0000 (22:34 +0000)]
PROBLEMS is now in etc, not top level dir.

26 years ago(SOURCES): Delete PROBLEMS.
Richard M. Stallman [Sat, 7 Mar 1998 22:33:40 +0000 (22:33 +0000)]
(SOURCES): Delete PROBLEMS.

26 years agoPROBLEMS is now in the etc directory.
Richard M. Stallman [Sat, 7 Mar 1998 22:31:13 +0000 (22:31 +0000)]
PROBLEMS is now in the etc directory.

26 years agoCustomized.
Stephen Eglen [Sat, 7 Mar 1998 18:19:38 +0000 (18:19 +0000)]
Customized.

26 years agoCustomized.
Stephen Eglen [Sat, 7 Mar 1998 15:27:01 +0000 (15:27 +0000)]
Customized.

26 years agoSome comment, doc and bug fixes.
Richard M. Stallman [Sat, 7 Mar 1998 06:04:46 +0000 (06:04 +0000)]
Some comment, doc and bug fixes.
(ps-print-version): New version number (3.06) and doc fix.
(ps-print-only-one-header, ps-font-type): New var.
(ps-font-info-database): Better font database management.
(ps-error-scale-font, ps-select-header-font): Funs eliminated.
(ps-font, ps-font-bold, ps-font-italic, ps-font-bold-italic)
(ps-avg-char-width, ps-space-width, ps-line-height)
(ps-header-font, ps-header-title-font, ps-header-line-height)
(ps-header-title-line-height): Vars eliminated.
(ps-font-list, ps-font, ps-fonts, ps-font-number, ps-line-height)
(ps-title-line-height, ps-space-width, ps-avg-char-width,): New funs.
(ps-print-prologue-1): Adjust PostScript programming.
(ps-color-format): Doc indentation.
(ps-print-hook, ps-print-begin-page-hook, ps-print-begin-column-hook):
New hook vars.
(ps-spool-without-faces, ps-spool-with-faces): Run hook var.
(ps-line-lengths-internal, ps-nb-pages, ps-select-font)
(ps-get-page-dimensions, ps-begin-file, ps-end-file, ps-header-page)
(ps-begin-page, ps-dummy-page, ps-next-line, ps-continue-line)
(ps-basic-plot-string, ps-basic-plot-whitespace, ps-plot-region)
(ps-control-character, ps-color-values, ps-generate): Adjust programming.
(ps-page-number): New macro.
(ps-plot-with-face, ps-generate-postscript-with-faces): Fix invisible
text printing.

26 years ago(advance_to_char_boundary): Handle the case the code
Richard M. Stallman [Fri, 6 Mar 1998 21:57:04 +0000 (21:57 +0000)]
(advance_to_char_boundary): Handle the case the code
0240..0377 is not a constituent of a multibyte sequence.

26 years ago(Fmake_string): Handle the case INIT is a multibyte character correctly.
Richard M. Stallman [Fri, 6 Mar 1998 21:50:44 +0000 (21:50 +0000)]
(Fmake_string): Handle the case INIT is a multibyte character correctly.

26 years ago(alloc.o): Depend on charset.h.
Richard M. Stallman [Fri, 6 Mar 1998 21:49:18 +0000 (21:49 +0000)]
(alloc.o): Depend on charset.h.

26 years ago(quail-defrule-internal): New arg REPLACE.
Richard M. Stallman [Fri, 6 Mar 1998 21:33:37 +0000 (21:33 +0000)]
(quail-defrule-internal): New arg REPLACE.
(quail-defrule): Call quail-defrule-internal with REPLACE t.

26 years ago(titdic-convert): Use set-buffer-multibyte.
Richard M. Stallman [Fri, 6 Mar 1998 21:32:55 +0000 (21:32 +0000)]
(titdic-convert): Use set-buffer-multibyte.

26 years ago(${TIT}): To byte-compile quail packages, use just built quail.
Richard M. Stallman [Fri, 6 Mar 1998 20:59:54 +0000 (20:59 +0000)]
(${TIT}): To byte-compile quail packages, use just built quail.

26 years ago(fortran-column-ruler-fixed,
Dave Love [Fri, 6 Mar 1998 19:14:13 +0000 (19:14 +0000)]
(fortran-column-ruler-fixed,
fortran-column-ruler-tab): Doc fix.
(fortran-mode-map): Bind fortran-narrow-to-subprogram.
(bug-fortran-mode): Variable deleted.

26 years agoVarious doc fixes, mainly to remove innappropriate
Dave Love [Fri, 6 Mar 1998 18:56:39 +0000 (18:56 +0000)]
Various doc fixes, mainly to remove innappropriate
leading "*"s.
(browse-url-new-window-p, browse-url-netscape-display,
browse-url-save-file, browse-url-generic-program): Add autoload
cookie.
(browse-url-mosaic-program, browse-url-lynx-input-field,
browse-url-lynx-input-attempts, browse-url-lynx-input-delay): Add
:version.
(browse-url-of-file-hook): Add :options.
(browse-url-lynx-emacs-args): New option.
(browse-url-lynx-emacs): Use it.
(browse-url-lynx-xterm): Use backquote.
(browse-url-emacs-display): Use Emacs version, not XEmacs.
((require 'term)): When compiling.

26 years ago(generic-mode-ini-file-find-file-hook): Use and-s instead of if-s.
Richard M. Stallman [Fri, 6 Mar 1998 18:45:39 +0000 (18:45 +0000)]
(generic-mode-ini-file-find-file-hook): Use and-s instead of if-s.
(generic-use-find-file-hook): Changed from defvar to defcustom.
(generic-lines-to-scan): Changed from defvar to defcustom.
(generic-find-file-regexp): Changed from defvar to defcustom.

26 years agoFixed spelling of `autoload' magic cookies.
Richard M. Stallman [Fri, 6 Mar 1998 17:45:55 +0000 (17:45 +0000)]
Fixed spelling of `autoload' magic cookies.

26 years ago1998-03-06 Carsten Dominik <cd@delysid.gnu.org>
Carsten Dominik [Fri, 6 Mar 1998 09:09:20 +0000 (09:09 +0000)]
1998-03-06  Carsten Dominik  <cd@delysid.gnu.org>

* (reftex-select-item): A set-buffer in the unwind-protect form makes
sure we deinstall in the correct hooks.

26 years ago(backward-delete-char-untabify-method): New user option.
Richard M. Stallman [Fri, 6 Mar 1998 05:51:51 +0000 (05:51 +0000)]
(backward-delete-char-untabify-method): New user option.
(backward-delete-char-untabify): Obey it.
This implements "hungry" delete.

26 years ago(time-stamp-pattern): New variable.
Richard M. Stallman [Fri, 6 Mar 1998 03:48:15 +0000 (03:48 +0000)]
(time-stamp-pattern): New variable.
(time-stamp): Use that new variable.
(time-stamp-string): Take optional format arg.

26 years ago(install): Use INSTALL_STRIP with INSTALL_PROGRAM for the utilities.
Richard M. Stallman [Fri, 6 Mar 1998 01:12:57 +0000 (01:12 +0000)]
(install): Use INSTALL_STRIP with INSTALL_PROGRAM for the utilities.

26 years ago(basic-save-buffer): Use save-current-buffer not save-excursion.
Richard M. Stallman [Thu, 5 Mar 1998 04:00:53 +0000 (04:00 +0000)]
(basic-save-buffer):  Use save-current-buffer not save-excursion.

26 years ago(isearch-*-char): Do nothing special if quoted with \.
Richard M. Stallman [Thu, 5 Mar 1998 02:28:44 +0000 (02:28 +0000)]
(isearch-*-char): Do nothing special if quoted with \.

26 years ago(auto-mode-alist): Recognize zone-mode.
Richard M. Stallman [Thu, 5 Mar 1998 02:17:48 +0000 (02:17 +0000)]
(auto-mode-alist): Recognize zone-mode.

26 years agoUse browse-url directly.
Per Abrahamsen [Wed, 4 Mar 1998 10:48:19 +0000 (10:48 +0000)]
Use browse-url directly.

26 years ago(code_convert_region): Fix previous change.
Kenichi Handa [Wed, 4 Mar 1998 08:05:14 +0000 (08:05 +0000)]
(code_convert_region): Fix previous change.

26 years ago(sref): Increase CHAR in the while loop.
Kenichi Handa [Wed, 4 Mar 1998 07:42:24 +0000 (07:42 +0000)]
(sref): Increase CHAR in the while loop.

26 years ago(Fset_buffer_multibyte): Fix arg for chars_in_text.
Kenichi Handa [Wed, 4 Mar 1998 07:41:41 +0000 (07:41 +0000)]
(Fset_buffer_multibyte): Fix arg for chars_in_text.
Be sure not to have a multibyte sequence striding over the GAP

26 years ago(Fformat): Format multibyte characters by "%c"
Kenichi Handa [Wed, 4 Mar 1998 07:41:41 +0000 (07:41 +0000)]
(Fformat): Format multibyte characters by "%c"
correctly.  Handle padding for multibyte characters correctly.

26 years ago(strwidth): Make it work for invalid bytes sequence.
Kenichi Handa [Wed, 4 Mar 1998 07:41:41 +0000 (07:41 +0000)]
(strwidth): Make it work for invalid bytes sequence.
(Fstring_width): Give byte length of STR to strwidth.

26 years ago(code_convert_region): Handle the case that codes
Kenichi Handa [Wed, 4 Mar 1998 07:41:41 +0000 (07:41 +0000)]
(code_convert_region): Handle the case that codes
0240..0377 are generated just after a multibyte character.

26 years agoSome support for character terminals provided.
Richard M. Stallman [Tue, 3 Mar 1998 22:33:15 +0000 (22:33 +0000)]
Some support for character terminals provided.
Various functions are smarter about using the correct windows
and the appropriate keymaps.
(vcursor-string): New variable, shows vcursor on dumb terminals.
(vcursor-map): New variable, holds keymap for vcursor commands.
(vcursor-use-vcursor-map): New variable, non-nil if vcursor
keys are overlaid onto main keymap.
(vcursor-toggle-vcursor-map): New function to implement this.
(vcursor-interpret-input): New variable, copy input as if typed.
(vcursor-window-funcall): With list instead of symbol, now calls interactively.
(vcursor-isearch-backward): New function to match forward isearch.

26 years ago(BASE_PURESIZE): Increased.
Richard M. Stallman [Tue, 3 Mar 1998 22:29:16 +0000 (22:29 +0000)]
(BASE_PURESIZE): Increased.

26 years agoComment change.
Richard M. Stallman [Tue, 3 Mar 1998 19:36:31 +0000 (19:36 +0000)]
Comment change.

26 years ago(iswitchb-default-method): Remove :tag entries.
Stephen Eglen [Tue, 3 Mar 1998 18:29:55 +0000 (18:29 +0000)]
(iswitchb-default-method): Remove :tag entries.
Doc fixes.

26 years agoComment change.
Richard M. Stallman [Tue, 3 Mar 1998 18:18:31 +0000 (18:18 +0000)]
Comment change.

26 years ago(locate-update): New function.
Richard M. Stallman [Tue, 3 Mar 1998 18:17:02 +0000 (18:17 +0000)]
(locate-update): New function.
(locate-current-line-number): Renamed from `current-line'.
(locate-default-make-command-line): Use list, not cons.
(locate): Added a `save-window-excursion' form.
(locate): Used an `apply' form for the start-process call.
(locate-mode): Now has a `revert-buffer-function'
(locate-do-setup): Now longer deletes window.
(locate-header-face): Use underline, not region.
(locate-update-command): New option.
(locate-command): Changed from defvar to defcustom.
(locate-make-command-line): Changed from defvar to defcustom.
(locate-fcodes-file): Changed from defvar to defcustom.
(locate-mouse-face): Changed from defvar to defcustom.

26 years ago(dired.o): Depend on charset.h and coding.h.
Kenichi Handa [Tue, 3 Mar 1998 07:18:46 +0000 (07:18 +0000)]
(dired.o): Depend on charset.h and coding.h.

26 years ago(insert_1_both): If enable-multibyte-characters is nil,
Kenichi Handa [Tue, 3 Mar 1998 07:18:46 +0000 (07:18 +0000)]
(insert_1_both): If enable-multibyte-characters is nil,
insert each byte as one character.

26 years ago(Vdefault_file_name_coding_system): Extern it.
Kenichi Handa [Tue, 3 Mar 1998 07:18:46 +0000 (07:18 +0000)]
(Vdefault_file_name_coding_system): Extern it.
(Fcall_process): Use ENCODE_FILE.

26 years ago(Fformat): Fix previous change.
Kenichi Handa [Tue, 3 Mar 1998 07:18:46 +0000 (07:18 +0000)]
(Fformat): Fix previous change.

26 years ago(ENCODE_FILE): Moved from fileio.c. Use
Kenichi Handa [Tue, 3 Mar 1998 07:18:46 +0000 (07:18 +0000)]
(ENCODE_FILE): Moved from fileio.c.  Use
default-file-name-coding-system if file-name-coding-system is nil.
(DECODE_FILE): New macro.

26 years agoInclude charset.h and coding.h.
Kenichi Handa [Tue, 3 Mar 1998 07:18:46 +0000 (07:18 +0000)]
Include charset.h and coding.h.
(ENCODE_FILE): This macro is moved to coding.h.
(Vdefault_file_name_coding_system): Extern it.
(Fdirectory_files): Use DECODE_FILE.
(file_name_completion): Likewise.

26 years ago(Vdefault_file_name_coding_system): Extern it.
Kenichi Handa [Tue, 3 Mar 1998 07:18:46 +0000 (07:18 +0000)]
(Vdefault_file_name_coding_system): Extern it.
(create_process): Use ENCODE_FILE.

26 years ago(ENCODE_FILE): This macro is moved to coding.h.
Kenichi Handa [Tue, 3 Mar 1998 07:18:46 +0000 (07:18 +0000)]
(ENCODE_FILE): This macro is moved to coding.h.
(Vdefault_file_name_coding_system): New variable.
(syms_of_fileio): Defsubr it.
(Ffile_symlink_p): Use DECODE_FILE.
(Ffile_name_directory): Use size_byte member of XSTRING (filename).
(Ffile_name_as_directory): Likewise.
(Fdirectory_file_name): Likewise.
(Fsubstitute_in_file_name): Likewise.
(expand_and_dir_to_file): Likewise.
(Fdo_auto_save): Likewise.
(Fread_file_name): Likewise.

26 years ago(dired-get-filename): Don't call encode-coding-string
Kenichi Handa [Tue, 3 Mar 1998 07:17:56 +0000 (07:17 +0000)]
(dired-get-filename): Don't call encode-coding-string
if default-file-name-coding-system is non-nil.

26 years ago(insert-directory): Bind coding-system-for-write.
Kenichi Handa [Tue, 3 Mar 1998 07:17:56 +0000 (07:17 +0000)]
(insert-directory): Bind coding-system-for-write.
Don't encode filename here because call-process encodes the
arguments by codign-system-for-write.

26 years agoComment change.
Richard M. Stallman [Tue, 3 Mar 1998 02:02:53 +0000 (02:02 +0000)]
Comment change.

26 years ago(gulp-send-requests): Call sort properly.
Richard M. Stallman [Tue, 3 Mar 1998 01:57:04 +0000 (01:57 +0000)]
(gulp-send-requests): Call sort properly.
When showing the message, put point at beginning of buffer.

26 years ago(setup-japanese-environment): Set
Kenichi Handa [Tue, 3 Mar 1998 01:36:51 +0000 (01:36 +0000)]
(setup-japanese-environment): Set
default-file-name-coding-system to japanese-iso-8bit.

26 years ago(set-default-coding-systems): Set
Kenichi Handa [Tue, 3 Mar 1998 01:36:35 +0000 (01:36 +0000)]
(set-default-coding-systems): Set
default-file-name-coding-system.  Doc-string modified.
(prefer-coding-system): Doc-string modified.

26 years ago(insert-directory): Bind coding-system-for-read to
Kenichi Handa [Tue, 3 Mar 1998 01:35:39 +0000 (01:35 +0000)]
(insert-directory): Bind coding-system-for-read to
file-name-coding-system or default-file-name-coding-system if
enable-multibyte-characters is non-nil

26 years ago(quoted-insert): Allow direct insertion of codes in
Kenichi Handa [Tue, 3 Mar 1998 01:35:39 +0000 (01:35 +0000)]
(quoted-insert): Allow direct insertion of codes in
the range 0200..0237.  Use unibyte-char-to-multibyte for codes in
the range 0240..0377.

26 years ago(sref): Typo in doc-string fixed.
Kenichi Handa [Tue, 3 Mar 1998 01:35:39 +0000 (01:35 +0000)]
(sref): Typo in doc-string fixed.

26 years ago(Vnonascii_translate_table, Qcharset): New variable decls.
Richard M. Stallman [Tue, 3 Mar 1998 01:31:11 +0000 (01:31 +0000)]
(Vnonascii_translate_table, Qcharset): New variable decls.
(Fstring_make_multibyte, Fstring_make_unibyte): New function decl.
(Fstring_as_multibyte, Fstring_as_unibyte): New function decl.
(list2, list3, list4, list5): New function decl.
(Fwrite_region): Add an argument.
(compare_window_configurations): New function decl.

26 years ago(DEFAULT_NONASCII_INSERT_OFFSET): Macro definition is
Kenichi Handa [Tue, 3 Mar 1998 01:29:16 +0000 (01:29 +0000)]
(DEFAULT_NONASCII_INSERT_OFFSET): Macro definition is
moved to charset.h.
(copy_text): Don't convert codes in the range 0200..0237 to
multibyte characters.  For codes in the range 0240..0377, use
unibyte_char_to_multibyte.
(count_size_as_multibyte): Likewise.
(adjust_before_replace): Comment fixed.

26 years ago(Fcall_process): Calculate CARRYOVER correctly.
Kenichi Handa [Tue, 3 Mar 1998 01:29:16 +0000 (01:29 +0000)]
(Fcall_process): Calculate CARRYOVER correctly.

26 years ago(general_insert_function): Use
Kenichi Handa [Tue, 3 Mar 1998 01:29:16 +0000 (01:29 +0000)]
(general_insert_function): Use
unibyte_char_to_multibyte if an argument is character code.
(Finsert_char): Use unibyte_char_to_multibyte.
(string1): Cast ARGS to `char **' to avoid compiler warning.

26 years ago(DEFAULT_NONASCII_INSERT_OFFSET): Macro definition is
Kenichi Handa [Tue, 3 Mar 1998 01:29:16 +0000 (01:29 +0000)]
(DEFAULT_NONASCII_INSERT_OFFSET): Macro definition is
moved to charset.h.
(unibyte_char_to_multibyte): Always return a valid character.
(Funibyte_char_to_multibyte): New function.
(syms_of_charset): Defsubr it.  Doc-string of
nonascii-insert-offset is modified.

26 years ago(NONASCII_INSERT_OFFSET): New macro.
Kenichi Handa [Tue, 3 Mar 1998 01:29:16 +0000 (01:29 +0000)]
(NONASCII_INSERT_OFFSET): New macro.
(VALID_MULTIBYTE_CHAR_P): New macro.

26 years ago(internal_self_insert): Avoid checking enable-multibyte-characters
Kenichi Handa [Tue, 3 Mar 1998 01:29:16 +0000 (01:29 +0000)]
(internal_self_insert): Avoid checking enable-multibyte-characters
twice.

26 years agoTypo in comment fixed.
Kenichi Handa [Tue, 3 Mar 1998 01:29:16 +0000 (01:29 +0000)]
Typo in comment fixed.

26 years ago(Ffile_name_nondirectory): Use size_byte member of
Kenichi Handa [Tue, 3 Mar 1998 01:29:16 +0000 (01:29 +0000)]
(Ffile_name_nondirectory): Use size_byte member of
XSTRING (filename).

26 years ago(DEFAULT_NONASCII_INSERT_OFFSET): Macro definition is
Kenichi Handa [Tue, 3 Mar 1998 01:29:16 +0000 (01:29 +0000)]
(DEFAULT_NONASCII_INSERT_OFFSET): Macro definition is
moved to charset.h.
(concat): Use unibyte_char_to_multibyte.

26 years ago(try_window_id): Use DEC_BOTH unconditionally.
Kenichi Handa [Tue, 3 Mar 1998 01:29:16 +0000 (01:29 +0000)]
(try_window_id): Use DEC_BOTH unconditionally.
(display_text_line): Likewise.

26 years ago(easy-menu-change): Handle case of no keywords.
Richard M. Stallman [Tue, 3 Mar 1998 01:01:55 +0000 (01:01 +0000)]
(easy-menu-change): Handle case of no keywords.

26 years ago(ange-ftp-call-chmod): Don't try to chmod file `--'.
Richard M. Stallman [Mon, 2 Mar 1998 22:21:46 +0000 (22:21 +0000)]
(ange-ftp-call-chmod): Don't try to chmod file `--'.

26 years ago(keyboard.o): Depend on syntax.h.
Richard M. Stallman [Mon, 2 Mar 1998 20:03:55 +0000 (20:03 +0000)]
(keyboard.o): Depend on syntax.h.

26 years agoInclude syntax.h.
Richard M. Stallman [Mon, 2 Mar 1998 20:02:33 +0000 (20:02 +0000)]
Include syntax.h.
(interrupt_signal): Save and restore gl_state
around an immediate quit, in case debugger returns.

26 years ago(load-with-code-conversion):
Karl Heuer [Mon, 2 Mar 1998 20:01:46 +0000 (20:01 +0000)]
(load-with-code-conversion):
Don't bind enable-multibyte-characters; instead,
bind default-enable-multibyte-characters before creating buffer.
(after-insert-file-set-buffer-file-coding-system):
Use set-buffer-multibyte.
Use add-hook to add this to after-insert-file-functions.

26 years ago(compare_window_configurations): New arg ignore_positions.
Richard M. Stallman [Mon, 2 Mar 1998 19:12:51 +0000 (19:12 +0000)]
(compare_window_configurations): New arg ignore_positions.
(Fcompare_window_configurations): New function.
(syms_of_window): defsubr it.