]> code.delx.au - gnu-emacs/log
gnu-emacs
18 years ago(timer-activate, timer-activate-when-idle): New arg REUSE-CELL.
Richard M. Stallman [Sat, 29 Oct 2005 19:47:23 +0000 (19:47 +0000)]
(timer-activate, timer-activate-when-idle): New arg REUSE-CELL.
(cancel-timer-internal): New function.
(timer-event-handler): Use cancel-timer-internal,
and pass the cell it returns to timer-activate...

18 years ago(jit-lock-function, jit-lock-stealth-fontify)
Richard M. Stallman [Sat, 29 Oct 2005 19:45:40 +0000 (19:45 +0000)]
(jit-lock-function, jit-lock-stealth-fontify)
(jit-lock-deferred-fontify, jit-lock-context-fontify)
(jit-lock-after-change): Test memory-full.

18 years ago(handle_fontified_prop): Do nothing if memory full.
Richard M. Stallman [Sat, 29 Oct 2005 19:44:25 +0000 (19:44 +0000)]
(handle_fontified_prop): Do nothing if memory full.
(format_mode_line_unwind_data): New arg SAVE_PROPTRANS
controls whether to save and restore mode_line_proptrans_alist.
Callers changed.
(unwind_format_mode_line): Work with that feature.
(redisplay_internal): Don't call prepare_menu_bars if memory full.
(move_elt_to_front): New function.
(display_mode_element): Use move_elt_to_front.
Don't bother munging text props on a null string.
Delete obsolete elts from mode_line_proptrans_alist.
(decode_mode_spec): Test Vmemory_full, not spare_memory.

18 years ago(memory_full_cons_threshold): Declared.
Richard M. Stallman [Sat, 29 Oct 2005 19:40:49 +0000 (19:40 +0000)]
(memory_full_cons_threshold): Declared.
(internal_lisp_condition_case): Declared.

18 years ago(syms_of_alloc) <memory-full>: Doc fix.
Richard M. Stallman [Sat, 29 Oct 2005 19:39:50 +0000 (19:39 +0000)]
(syms_of_alloc) <memory-full>: Doc fix.
(Fmemory_full_p): Function deleted.
(syms_of_alloc): Don't defsubr it.
(memory_full_cons_threshold): New variable.
(spare_memory): Now a vector of 7 elts.
(buffer_memory_full): Don't set Vmemory_full here.
(xfree): Don't try to refill here.
(emacs_blocked_free): Record BYTES_USED in local var.
(memory_full): Now free all the slots in spare_memory.
(refill_memory_reserve): Allocate each slot in spare_memory.
(init_alloc_once): Call refill_memory_reserve.

18 years ago(command_loop_1): Don't set Vmemory_full here.
Richard M. Stallman [Sat, 29 Oct 2005 19:34:58 +0000 (19:34 +0000)]
(command_loop_1): Don't set Vmemory_full here.

18 years ago(internal_lisp_condition_case): New function.
Richard M. Stallman [Sat, 29 Oct 2005 19:34:12 +0000 (19:34 +0000)]
(internal_lisp_condition_case): New function.
(Fcondition_case): Use internal_lisp_condition_case.
(Feval): Test Vmemory_full and memory_full_cons_threshold.
(Ffuncall): Likewise.

18 years ago(Fbyte_code): Use internal_lisp_condition_case.
Richard M. Stallman [Sat, 29 Oct 2005 19:32:27 +0000 (19:32 +0000)]
(Fbyte_code): Use internal_lisp_condition_case.

18 years ago*** empty log message ***
Stefan Monnier [Sat, 29 Oct 2005 16:08:20 +0000 (16:08 +0000)]
*** empty log message ***

18 years ago(Fparse_partial_sexp): Fix docstring.
Stefan Monnier [Sat, 29 Oct 2005 16:05:41 +0000 (16:05 +0000)]
(Fparse_partial_sexp): Fix docstring.

18 years ago(conf-mode-initialize): New function.
Stefan Monnier [Sat, 29 Oct 2005 16:01:37 +0000 (16:01 +0000)]
(conf-mode-initialize): New function.
(conf-mode): Remove optional args.  Use delay-mode-hooks to
recognize recursive calls.
(conf-unix-mode, conf-windows-mode, conf-javaprop-mode, conf-space-mode)
(conf-colon-mode, conf-ppd-mode, conf-xdefaults-mode):
Use define-derived-mode and conf-mode-initialize.

18 years ago(describe-simplify-lib-file-name): Fix regexp.
Romain Francoise [Sat, 29 Oct 2005 14:12:08 +0000 (14:12 +0000)]
(describe-simplify-lib-file-name): Fix regexp.

18 years ago*** empty log message ***
Eli Zaretskii [Sat, 29 Oct 2005 11:40:18 +0000 (11:40 +0000)]
*** empty log message ***

18 years ago(How to use): Update the example to add autoload of
Eli Zaretskii [Sat, 29 Oct 2005 11:39:49 +0000 (11:39 +0000)]
(How to use): Update the example to add autoload of
pgg-encrypt-symmetric-region.
(User Commands): Document pgg-encrypt-symmetric-region.
(Backend methods): Document pgg-scheme-encrypt-symmetric-region.

18 years ago(pgg-gpg-select-matching-key): Fixed: look at the right part of the
Eli Zaretskii [Sat, 29 Oct 2005 11:31:08 +0000 (11:31 +0000)]
(pgg-gpg-select-matching-key): Fixed: look at the right part of the
decoded armor to find the key-identifier.
(pgg-gpg-lookup-key-owner): New function to return the
human-readable identifier of a key owner.
(pgg-gpg-lookup-id-from-key-owner): Make it easy to identify the
key itself.
(pgg-gpg-decrypt-region): Prompt with the key owner (rather
than the key value) if we have a key and can match it against a
secret key.  Also, added an XXX note pointing out fact that the
prompt only indicates the first matching key.
(pgg-pgp-encrypt-region)
(pgg-pgp-encrypt-symmetric-region, pgg-pgp-encrypt-symmetric)
(pgg-pgp-encrypt, pgg-pgp-decrypt-region, pgg-pgp-decrypt)
(pgg-pgp-sign-region, pgg-pgp-sign): Add optional 'passphrase'
argument to all these routines, so the passphrase can be managed
externally and passed in to the system.
(pgg-gpg-possibly-cache-passphrase): Add optional
'notruncate' argument, so the passphrase cache can be used
reliably with identifiers besides a pgp packet's key id.
(pgg-gpg-encrypt-symmetric-region): New function for
symmetric encryption.
(pgg-gpg-symmetric-key-p): New function to check for an symmetric
encrypted session key.
(pgg-gpg-decrypt-region): When decrypting a symmetric encrypted
message ask for the passphrase in a proper way.

18 years ago(pgg-decrypt): Passing along 'passphrase' in call to pgg-decrypt-region.
Eli Zaretskii [Sat, 29 Oct 2005 11:29:41 +0000 (11:29 +0000)]
(pgg-decrypt): Passing along 'passphrase' in call to pgg-decrypt-region.
(pgg-pending-timers): A new hash for tracking the passphrase cache
timers, so that new ones supercede old ones.
(pgg-add-passphrase-to-cache): Renamed from
`pgg-add-passphrase-cache' to reduce confusion (all callers
changed).  Modified to cancel old timers when new ones are added.
(pgg-remove-passphrase-from-cache): Renamed from
`pgg-remove-passphrase-cache' to reduce confusion (all callers
changed).  Modified to cancel old timers when their keys are
removed from the cache.
(pgg-cancel-timer): In Emacs, an alias for cancel-timer; in
XEmacs, an indirection to delete-itimer.
(pgg-read-passphrase-from-cache, pgg-read-passphrase): Extracted
pgg-read-passphrase-from-cache from pgg-read-passphrase so users
can only check cache without risk of prompting.  Corrected bug in
notruncate  behavior.
(pgg-read-passphrase-from-cache, pgg-read-passphrase)
(pgg-add-passphrase-cache, pgg-remove-passphrase-cache): Added
informative docstrings.
(pgg-decrypt): Convey provided passphrase in subordinate call to
pgg-decrypt-region.
(pgg-encrypt-region, pgg-encrypt-symmetric-region)
(pgg-encrypt-symmetric, pgg-encrypt, pgg-decrypt-region)
(pgg-decrypt, pgg-sign-region, pgg-sign): Add optional
'passphrase' argument, so the passphrase can be managed externally
and then passed in to the system.
(pgg-read-passphrase, pgg-add-passphrase-cache)
(pgg-remove-passphrase-cache): Add optional 'notruncate' argument,
so the passphrase cache can be used reliably with identifiers
besides a pgp packet's key id.
(pgg-encrypt-symmetric, pgg-encrypt-symmetric-region):
New user commands for symmetric encryption.

18 years ago* mh-comp.el (mh-annotate-msg): Use new variable
Bill Wohler [Sat, 29 Oct 2005 05:09:05 +0000 (05:09 +0000)]
* mh-comp.el (mh-annotate-msg): Use new variable
mh-scan-field-destination-offset rather than hard-coding 1.

* mh-customize.el (mh-interpret-number-as-range-flag): Add * to
docstring.
(mh-adaptive-cmd-note-flag-check, mh-scan-format-file-check): New
functions to check input for mh-adaptive-cmd-note-flag and
mh-scan-format-file respectively.
(mh-adaptive-cmd-note-flag, mh-scan-format-file): Docstring fixes, add
:set.

* mh-e.el: (mh-scan-field-destination-offset): New variable. The
destination is the -, t, b, c, or n character for Replied, To, cc,
Bcc, or Newsgroups respectively. (mh-make-folder,
mh-regenerate-headers, mh-generate-new-cmd-note) Call new function
mh-msg-num-width-to-column to make leap between width and column more
explicit.
(mh-msg-num-width-to-column): New function that steals logic from old
mh-set-cmd-note. Also, throw error if mh-scan-format-file isn't t
since we can't adapt the scan lines in this case.
(mh-set-cmd-note): Now just simply sets mh-cmd-note which will make
the documentation more clear.
(mh-generate-new-cmd-note): Docstring fix--mh-cmd-note is a column,
not a width.
(mh-add-sequence-notation, mh-remove-sequence-notation): Use new
variable mh-scan-field-destination-offset rather than hard-coding 1.

* mh-utils.el (mh-cmd-note) Synced docstring with manual.
(mh-notate): Use new variable mh-scan-field-destination-offset rather
than hard-coding 1.
(mh-message-number-width): Rename to mh-msg-num-width to be consistent
with mh-get-msg-num and mh-msg-num-width-to-column.

18 years ago(mh-x-face-file, mh-show-use-xface-flag)
Bill Wohler [Fri, 28 Oct 2005 22:28:31 +0000 (22:28 +0000)]
(mh-x-face-file, mh-show-use-xface-flag)
(mail-citation-hook): Quote URLs in docstrings and precede with `URL'.
The former will suppress checkdoc warnings, the latter will turn them
into hyperlinks in Emacs 22 (I just added the code to do that today).
(mh-scan-format-file): Checkdoc fix.

18 years ago(Documentation Tips): Help mode now creates hyperlinks for URLs.
Bill Wohler [Fri, 28 Oct 2005 21:53:30 +0000 (21:53 +0000)]
(Documentation Tips): Help mode now creates hyperlinks for URLs.

18 years ago(Help): Help mode now creates hyperlinks for URLs.
Bill Wohler [Fri, 28 Oct 2005 21:43:17 +0000 (21:43 +0000)]
(Help): Help mode now creates hyperlinks for URLs.

18 years agoHelp mode now creates hyperlinks for URLs.
Bill Wohler [Fri, 28 Oct 2005 21:37:34 +0000 (21:37 +0000)]
Help mode now creates hyperlinks for URLs.

18 years ago(help-url): New button type. Calls browse-url.
Bill Wohler [Fri, 28 Oct 2005 21:27:13 +0000 (21:27 +0000)]
(help-url): New button type. Calls browse-url.
(help-xref-url-regexp): New regexp to recognize URLs in docstring.
Similar to Info nodes: URL `url'.
(help-make-xrefs): Create help-url buttons for help-xref-url-regexp
matches.

18 years ago(tool-bar-add-item-from-menu)
Nick Roberts [Fri, 28 Oct 2005 21:03:35 +0000 (21:03 +0000)]
(tool-bar-add-item-from-menu)
(tool-bar-local-item-from-menu): Fix doc strings.

18 years ago*** empty log message ***
Nick Roberts [Fri, 28 Oct 2005 21:02:56 +0000 (21:02 +0000)]
*** empty log message ***

18 years ago(BASE_PURESIZE): Incremented to 1130000.
Romain Francoise [Fri, 28 Oct 2005 17:57:02 +0000 (17:57 +0000)]
(BASE_PURESIZE): Incremented to 1130000.

18 years agoUpdate.
Romain Francoise [Fri, 28 Oct 2005 17:06:03 +0000 (17:06 +0000)]
Update.

18 years ago* subr.el (locate-library): Move from help-fns.el.
Romain Francoise [Fri, 28 Oct 2005 16:55:48 +0000 (16:55 +0000)]
* subr.el (locate-library): Move from help-fns.el.
* help-fns.el (locate-library): Move to subr.el.

18 years ago*** empty log message ***
Richard M. Stallman [Fri, 28 Oct 2005 16:44:46 +0000 (16:44 +0000)]
*** empty log message ***

18 years ago(Completion Commands): Clean up prev change.
Richard M. Stallman [Fri, 28 Oct 2005 16:44:20 +0000 (16:44 +0000)]
(Completion Commands): Clean up prev change.

18 years ago(Eval During Compile): Explain recommended uses
Richard M. Stallman [Fri, 28 Oct 2005 16:43:12 +0000 (16:43 +0000)]
(Eval During Compile): Explain recommended uses
of eval-when-compile and eval-and-compile.

18 years ago(Visiting): Explain how to enter ? in a file name.
Richard M. Stallman [Fri, 28 Oct 2005 16:41:34 +0000 (16:41 +0000)]
(Visiting): Explain how to enter ? in a file name.

18 years ago(Memory Full): Mention !MEM FULL! in mode line.
Richard M. Stallman [Fri, 28 Oct 2005 16:38:14 +0000 (16:38 +0000)]
(Memory Full): Mention !MEM FULL! in mode line.

18 years ago(syms_of_xfns): Provide `x' as feature.
Richard M. Stallman [Fri, 28 Oct 2005 16:28:43 +0000 (16:28 +0000)]
(syms_of_xfns): Provide `x' as feature.

18 years ago(decode_mode_spec): Define %e to indicate memory full.
Richard M. Stallman [Fri, 28 Oct 2005 16:27:47 +0000 (16:27 +0000)]
(decode_mode_spec): Define %e to indicate memory full.

18 years ago(Fformat): Don't include string padding
Richard M. Stallman [Fri, 28 Oct 2005 16:26:45 +0000 (16:26 +0000)]
(Fformat): Don't include string padding
between info[n].start and info[n].end.

18 years ago(spare_memory): No longer static.
Richard M. Stallman [Fri, 28 Oct 2005 16:25:37 +0000 (16:25 +0000)]
(spare_memory): No longer static.
(xfree) [!SYSTEM_MALLOC]: Call refill_memory_reserve.

18 years ago(BASE_PURESIZE): Incremented to 112000.
Richard M. Stallman [Fri, 28 Oct 2005 16:24:35 +0000 (16:24 +0000)]
(BASE_PURESIZE): Incremented to 112000.

18 years ago(tramp-completion-mode): defvar moved up.
Richard M. Stallman [Fri, 28 Oct 2005 16:23:55 +0000 (16:23 +0000)]
(tramp-completion-mode): defvar moved up.

18 years ago(easy-menu-change): Doc fix.
Richard M. Stallman [Fri, 28 Oct 2005 16:22:47 +0000 (16:22 +0000)]
(easy-menu-change): Doc fix.

18 years ago(tool-bar-mode): Delete autoload cookie.
Richard M. Stallman [Fri, 28 Oct 2005 16:22:08 +0000 (16:22 +0000)]
(tool-bar-mode): Delete autoload cookie.

18 years ago(find-file-noselect): Use %d to format large file size.
Richard M. Stallman [Fri, 28 Oct 2005 16:20:12 +0000 (16:20 +0000)]
(find-file-noselect): Use %d to format large file size.

18 years ago(help-echo): Add %e.
Richard M. Stallman [Fri, 28 Oct 2005 16:19:16 +0000 (16:19 +0000)]
(help-echo): Add %e.

18 years ago("facemenu"): Load unconditionally.
Richard M. Stallman [Fri, 28 Oct 2005 16:17:01 +0000 (16:17 +0000)]
("facemenu"): Load unconditionally.
("image", "international/fontset", "dnd", "mwheel", "tool-bar"):
("x-dnd"): Load, when appropriate.

18 years ago(command-line): Call before-init-hook earlier.
Richard M. Stallman [Fri, 28 Oct 2005 15:43:15 +0000 (15:43 +0000)]
(command-line): Call before-init-hook earlier.
Warn about some bad characters in -u user name.

18 years ago(View-revert-buffer-scroll-page-forward): Use
Andreas Schwab [Fri, 28 Oct 2005 09:43:01 +0000 (09:43 +0000)]
(View-revert-buffer-scroll-page-forward): Use
view-page-size-default.

18 years ago*** empty log message ***
Juri Linkov [Fri, 28 Oct 2005 06:00:50 +0000 (06:00 +0000)]
*** empty log message ***

18 years agoAdd missing characters from 1st pos of every table of [korean-ksc5601],
Juri Linkov [Fri, 28 Oct 2005 06:00:41 +0000 (06:00 +0000)]
Add missing characters from 1st pos of every table of [korean-ksc5601],
and swap incorrectly ordered characters at pos 91 and 90.

18 years ago(quail-get-current-str): Translate last raw character
Juri Linkov [Fri, 28 Oct 2005 05:47:31 +0000 (05:47 +0000)]
(quail-get-current-str): Translate last raw character
for deterministic input methods.

18 years ago*** empty log message ***
Jay Belanger [Fri, 28 Oct 2005 04:50:27 +0000 (04:50 +0000)]
*** empty log message ***

18 years ago(Predefined Units): Fix the symbol for a TeX points, mention other
Jay Belanger [Fri, 28 Oct 2005 04:49:41 +0000 (04:49 +0000)]
(Predefined Units):  Fix the symbol for a TeX points, mention other
TeX-related units.

18 years ago(flyspell-large-region): Pass -t if Tex file.
Richard M. Stallman [Fri, 28 Oct 2005 04:22:19 +0000 (04:22 +0000)]
(flyspell-large-region): Pass -t if Tex file.
(flyspell-external-point-words): Error if misspelled word is not found.
Set flyspell-large-region-beg at end of word.

18 years ago(calcFunc-writeoutpower, math-write-out-power, calc-writeoutpower):
Jay Belanger [Fri, 28 Oct 2005 03:52:38 +0000 (03:52 +0000)]
(calcFunc-writeoutpower, math-write-out-power, calc-writeoutpower):
New functions.

18 years ago(calcFunc-inv): Check for symbolic matrices.
Jay Belanger [Fri, 28 Oct 2005 03:52:08 +0000 (03:52 +0000)]
(calcFunc-inv): Check for symbolic matrices.

18 years ago(calc-mul-symb-fancy): Add checks for multiplication by an identity
Jay Belanger [Fri, 28 Oct 2005 03:51:36 +0000 (03:51 +0000)]
(calc-mul-symb-fancy): Add checks for multiplication by an identity
matrix, don't turn multiplication by an inverse matrix into division.
(math-div-symbol-fancy):  Replace division by matrices with
multiplication by inverse.

18 years agoAdd functions to autoloads.
Jay Belanger [Fri, 28 Oct 2005 03:51:00 +0000 (03:51 +0000)]
Add functions to autoloads.
(math-identity-matrix-p, math-ident-row-p): New functions.

18 years ago* mh-customize.el (mh-adaptive-cmd-note-flag)
Bill Wohler [Fri, 28 Oct 2005 01:59:12 +0000 (01:59 +0000)]
* mh-customize.el (mh-adaptive-cmd-note-flag)
(mh-scan-format-file, mh-scan-prog): Sync docstrings with manual.

* mh-e.el (mh-scan-format-mh, mh-note-deleted, mh-note-refiled)
(mh-note-cur, mh-scan-good-msg-regexp)
(mh-scan-deleted-msg-regexp, mh-scan-refiled-msg-regexp)
(mh-scan-valid-regexp, mh-scan-cur-msg-number-regexp)
(mh-scan-date-regexp, mh-scan-rcpt-regexp, mh-scan-body-regexp)
(mh-scan-subject-regexp, mh-scan-format-regexp)
(mh-folder-font-lock-keywords, mh-set-cmd-note): Sync docstrings with
manual.

* mh-funcs.el (mh-note-copied): Sync docstrings with manual.

* mh-utils.el (mh-goto-msg): Use mh-scan-msg-search-regexp instead of
hard-coded string.
(mh-mail-header-separator, mh-signature-separator-regexp): Use
"regular expression" in docstring instead of regexp.
(mh-scan-msg-number-regexp)
(mh-scan-msg-overflow-regexp, mh-scan-msg-format-regexp)
(mh-scan-msg-format-string, mh-scan-msg-search-regexp)
(mh-cmd-note): Sync docstrings with manual.

18 years ago(mh-insert-signature, mh-insert-auto-fields): Checkdoc fixes.
Bill Wohler [Fri, 28 Oct 2005 01:39:14 +0000 (01:39 +0000)]
(mh-insert-signature, mh-insert-auto-fields): Checkdoc fixes.

18 years ago* data.c (Fmake_variable_frame_local): Add clarification to
Chong Yidong [Fri, 28 Oct 2005 01:25:18 +0000 (01:25 +0000)]
* data.c (Fmake_variable_frame_local): Add clarification to
docstring.

18 years ago* mh-customize.el (mh-compose-insertion, mh-x-face-file): Checkdoc
Bill Wohler [Thu, 27 Oct 2005 22:57:30 +0000 (22:57 +0000)]
* mh-customize.el (mh-compose-insertion, mh-x-face-file): Checkdoc
fixes.

* mh-mime.el (mh-mh-to-mime, mh-mml-attach-file)
(mh-mml-secure-message-sign, mh-mml-secure-message-encrypt)
(mh-mml-secure-message-signencrypt): Ditto

18 years ago(occur-engine): Include colon in mouse-face highlight.
Romain Francoise [Thu, 27 Oct 2005 18:22:00 +0000 (18:22 +0000)]
(occur-engine): Include colon in mouse-face highlight.

18 years ago* FOR-RELEASE: Fringe angle bitmap at eob fixed.
Chong Yidong [Thu, 27 Oct 2005 15:04:41 +0000 (15:04 +0000)]
* FOR-RELEASE: Fringe angle bitmap at eob fixed.

18 years ago* fringe.c (update_window_fringes): Handle case where buffer ends
Chong Yidong [Thu, 27 Oct 2005 15:03:53 +0000 (15:03 +0000)]
* fringe.c (update_window_fringes): Handle case where buffer ends
with a newline.

18 years ago(el1): Undo 2005-10-23 change.
Dan Nicolaescu [Thu, 27 Oct 2005 07:05:04 +0000 (07:05 +0000)]
(el1): Undo 2005-10-23 change.
Add some comments on how to update this file. Add ri
capability that has long been supported by term.el.

18 years agoChange Maintainer field.
Romain Francoise [Thu, 27 Oct 2005 06:34:30 +0000 (06:34 +0000)]
Change Maintainer field.

18 years agoWrite about new optional argument for `display-completion-list'.
Masatake YAMATO [Thu, 27 Oct 2005 05:43:37 +0000 (05:43 +0000)]
Write about new optional argument for `display-completion-list'.

18 years ago("TeX"): Change "\," mapping to U+202F (not U+2006). Add more
Kenichi Handa [Thu, 27 Oct 2005 01:56:54 +0000 (01:56 +0000)]
("TeX"): Change "\," mapping to U+202F (not U+2006).  Add more
mappings from TeX's textcomp package.

18 years ago* longlines.el (longlines-mode): Bind after-change-functions to
Chong Yidong [Thu, 27 Oct 2005 01:36:31 +0000 (01:36 +0000)]
* longlines.el (longlines-mode): Bind after-change-functions to
nil during initial decoding and final encoding.

18 years ago(DECODE_SYSTEM): Fix argument name; name->str.
Kenichi Handa [Thu, 27 Oct 2005 00:45:44 +0000 (00:45 +0000)]
(DECODE_SYSTEM): Fix argument name; name->str.

18 years ago*** empty log message ***
Richard M. Stallman [Thu, 27 Oct 2005 00:29:48 +0000 (00:29 +0000)]
*** empty log message ***

18 years ago(term-emulate-terminal, term-handle-colors-array)
Dan Nicolaescu [Wed, 26 Oct 2005 18:57:45 +0000 (18:57 +0000)]
(term-emulate-terminal, term-handle-colors-array)
(term-handle-ansi-escape): Specify the terminfo capabilities
implemented.

18 years ago(Info-fontify-node): Fix detection of sentence-break before *Note.
Richard M. Stallman [Wed, 26 Oct 2005 16:39:23 +0000 (16:39 +0000)]
(Info-fontify-node): Fix detection of sentence-break before *Note.

18 years agoAdd 'tools' to file keywords.
Romain Francoise [Wed, 26 Oct 2005 08:38:07 +0000 (08:38 +0000)]
Add 'tools' to file keywords.

18 years ago(gud-menu-map): Only display gud-until icon
Nick Roberts [Wed, 26 Oct 2005 01:02:31 +0000 (01:02 +0000)]
(gud-menu-map): Only display gud-until icon
when the fringe is not available.

18 years ago(def-gdb-auto-updated-buffer)
Nick Roberts [Wed, 26 Oct 2005 01:01:34 +0000 (01:01 +0000)]
(def-gdb-auto-updated-buffer)
(def-gdb-auto-update-trigger): Simplify construction.
(gdb-locals-buffer): Use def-gdb-auto-update-trigger instead of
def-gdb-auto-updated-buffer as gdb-info-locals-handler is
defined explicitly.
(gdb-assembler-buffer): Use def-gdb-auto-update-handler instead of
def-gdb-auto-updated-buffer as gdb-invalidate-assembler is
defined explicitly.
(gdb-info-locals-custom): Remove as it's a no-op.

18 years ago*** empty log message ***
Nick Roberts [Wed, 26 Oct 2005 01:00:30 +0000 (01:00 +0000)]
*** empty log message ***

18 years agoRevision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-621
Miles Bader [Tue, 25 Oct 2005 23:34:40 +0000 (23:34 +0000)]
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-621

Merge from gnus--rel--5.10

Patches applied:

 * gnus--rel--5.10  (patch 147-148)

   - Update from CVS

2005-10-25  Reiner Steib  <Reiner.Steib@gmx.de>

   * lisp/gnus/gnus-score.el (gnus-default-adaptive-score-alist): Set defaults
   depending on gnus-score-decay-constant.

2005-10-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>

   * lisp/gnus/nnslashdot.el (nnslashdot-request-article)
   (nnslashdot-retrieve-headers-1): Update to new HTML.

2005-10-23  Simon Josefsson  <jas@extundo.com>

   * lisp/gnus/imap.el (imap-gssapi-program): Align command line parameters
   with latest GNU SASL.
   (imap-gssapi-open): Ignore 'Trying ...' messages from GNU SASL.

18 years ago* longlines.el (longlines-mode): Remove narrowing before
Chong Yidong [Tue, 25 Oct 2005 23:24:47 +0000 (23:24 +0000)]
* longlines.el (longlines-mode): Remove narrowing before
performing the initial decoding or final encoding.

18 years agoAdded note about create-fontset-from-ascii-font problem on MS-Windows.
Jason Rumney [Tue, 25 Oct 2005 21:28:54 +0000 (21:28 +0000)]
Added note about create-fontset-from-ascii-font problem on MS-Windows.

18 years agoRemoved quadruple-width Chinese character problem. Lesser related
Jason Rumney [Tue, 25 Oct 2005 21:22:20 +0000 (21:22 +0000)]
Removed quadruple-width Chinese character problem. Lesser related
problem added to etc/PROBLEMS.

18 years ago(w32_to_x_font): Avoid forcing font widths.
Jason Rumney [Tue, 25 Oct 2005 21:14:39 +0000 (21:14 +0000)]
(w32_to_x_font): Avoid forcing font widths.

18 years ago*** empty log message ***
Richard M. Stallman [Tue, 25 Oct 2005 20:13:44 +0000 (20:13 +0000)]
*** empty log message ***

18 years ago*** empty log message ***
Romain Francoise [Tue, 25 Oct 2005 20:11:17 +0000 (20:11 +0000)]
*** empty log message ***

18 years ago(find-library-name): Also strip extension if library name ends in .el,
Romain Francoise [Tue, 25 Oct 2005 19:25:23 +0000 (19:25 +0000)]
(find-library-name): Also strip extension if library name ends in .el,
to take advantage of `find-library-suffixes'.

18 years ago(menu-bar-help-menu): Say which kind of therapist.
Richard M. Stallman [Tue, 25 Oct 2005 19:20:22 +0000 (19:20 +0000)]
(menu-bar-help-menu): Say which kind of therapist.

18 years ago*** empty log message ***
Juri Linkov [Tue, 25 Oct 2005 16:15:55 +0000 (16:15 +0000)]
*** empty log message ***

18 years ago("cyrillic-translit"): Set 4th arg `guidance' to t
Juri Linkov [Tue, 25 Oct 2005 16:15:45 +0000 (16:15 +0000)]
("cyrillic-translit"): Set 4th arg `guidance' to t
for this multi-key input method.

18 years ago(texinfo-mode): Change charset of one quotation mark
Juri Linkov [Tue, 25 Oct 2005 16:14:44 +0000 (16:14 +0000)]
(texinfo-mode): Change charset of one quotation mark
from [mule-unicode-0100-24ff] to [japanese-jisx0208].

18 years ago(blackbox-mode-map): Move init into declaration.
Stefan Monnier [Tue, 25 Oct 2005 15:28:00 +0000 (15:28 +0000)]
(blackbox-mode-map): Move init into declaration.
(blackbox-redefine-key): Add argument `map'.

18 years ago(jit-lock-fontify-now): Be careful not to skip multiline
Stefan Monnier [Tue, 25 Oct 2005 15:26:41 +0000 (15:26 +0000)]
(jit-lock-fontify-now): Be careful not to skip multiline
regions when moving the jit-lock-context-unfontify-pos boundary.

18 years ago(browse-url-of-buffer): Add ".html" to filename.
Reiner Steib [Tue, 25 Oct 2005 13:18:52 +0000 (13:18 +0000)]
(browse-url-of-buffer): Add ".html" to filename.

18 years ago(dired-virtual): Don't use `dired-insert-headerline'.
Masatake YAMATO [Tue, 25 Oct 2005 12:02:47 +0000 (12:02 +0000)]
(dired-virtual): Don't use `dired-insert-headerline'.

18 years agoColour correction.
Nick Roberts [Tue, 25 Oct 2005 10:39:14 +0000 (10:39 +0000)]
Colour correction.

18 years ago*** empty log message ***
Nick Roberts [Tue, 25 Oct 2005 10:38:41 +0000 (10:38 +0000)]
*** empty log message ***

18 years ago(blackbox-redefine-key): New function.
Eli Zaretskii [Tue, 25 Oct 2005 08:40:16 +0000 (08:40 +0000)]
(blackbox-redefine-key): New function.
(blackbox-mode-map): Use it to remap existing bindings for cursor motion
instead of binding literal keys.

18 years ago(last_mouse_glyph_frame): New var.
YAMAMOTO Mitsuharu [Tue, 25 Oct 2005 08:13:44 +0000 (08:13 +0000)]
(last_mouse_glyph_frame): New var.
(note_mouse_movement): Say mouse moved if current frame differs
from last_mouse_glyph_frame, and update last_mouse_glyph_frame.
(XTmouse_position): Set last_mouse_glyph_frame.
(XTread_socket): Clear last_mouse_glyph_frame on mouse up/down event.
(mac_draw_string_common) [MAC_OSX && WORDS_BIG_ENDIAN]: Fix typo.
Use EndianU16_BtoN.
(mac_draw_string_common) [MAC_OSX]: Don't use ATSUClearLayoutControls.
(x_per_char_metric, XLoadQueryFont)
[MAC_OS_X_VERSION_MAX_ALLOWED < 1020]: Use device origins to get
glyph bounds.
(mac_to_x_fontname, mac_do_list_fonts)
(mac_initialize_display_info): Change screen resolutions to 72dpi.

18 years ago[MAC_OS] (image_load_qt_1): Check image size.
YAMAMOTO Mitsuharu [Tue, 25 Oct 2005 08:12:44 +0000 (08:12 +0000)]
[MAC_OS] (image_load_qt_1): Check image size.
Use GraphicsImportGetImageDescription instead of
GraphicsImportGetNaturalBounds.
[MAC_OSX] (image_load_quartz2d): Check image size.
[MAC_OS] (xpm_load_image): Likewise.

18 years ago(diary-list-entries): Prevent infloop when diary does not end in a
Glenn Morris [Tue, 25 Oct 2005 07:33:34 +0000 (07:33 +0000)]
(diary-list-entries): Prevent infloop when diary does not end in a
newline.  Do not assume a blank line at the start of the diary file.

18 years ago*** empty log message ***
Glenn Morris [Tue, 25 Oct 2005 07:32:56 +0000 (07:32 +0000)]
*** empty log message ***

18 years ago(quail-translate-key): If the input
Kenichi Handa [Tue, 25 Oct 2005 06:13:01 +0000 (06:13 +0000)]
(quail-translate-key): If the input
method is deterministic and failed to handle the last key, restart
the key handling loop from an appropriate key.

18 years ago* vc.el (vc-dired-mode): Extend comment for binding of
Michael Albinus [Tue, 25 Oct 2005 05:52:28 +0000 (05:52 +0000)]
* vc.el (vc-dired-mode): Extend comment for binding of
`directory-listing-before-filename-regexp'.