1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-04 11:40:22 +00:00
Commit Graph

60405 Commits

Author SHA1 Message Date
Stefan Monnier
c390e28c87 *** empty log message *** 2005-10-29 16:08:20 +00:00
Stefan Monnier
0e6228bc0b (Fparse_partial_sexp): Fix docstring. 2005-10-29 16:05:41 +00:00
Stefan Monnier
0b6f31bf48 (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.
2005-10-29 16:01:37 +00:00
Romain Francoise
1cf586a447 (describe-simplify-lib-file-name): Fix regexp. 2005-10-29 14:12:08 +00:00
Eli Zaretskii
feb2f36476 *** empty log message *** 2005-10-29 11:40:18 +00:00
Eli Zaretskii
df5725c5fb (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.
2005-10-29 11:39:49 +00:00
Eli Zaretskii
df570e6fe2 (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.
2005-10-29 11:31:08 +00:00
Eli Zaretskii
7c700bd114 (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.
2005-10-29 11:29:41 +00:00
Bill Wohler
50df64d63f * 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.
2005-10-29 05:09:05 +00:00
Bill Wohler
ec397a34fb (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.
2005-10-28 22:28:31 +00:00
Bill Wohler
7000848e07 (Documentation Tips): Help mode now creates hyperlinks for URLs. 2005-10-28 21:53:30 +00:00
Bill Wohler
22e388cda9 (Help): Help mode now creates hyperlinks for URLs. 2005-10-28 21:43:17 +00:00
Bill Wohler
ae3859c022 Help mode now creates hyperlinks for URLs. 2005-10-28 21:37:34 +00:00
Bill Wohler
5c825567d0 (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.
2005-10-28 21:27:13 +00:00
Nick Roberts
7c06485983 (tool-bar-add-item-from-menu)
(tool-bar-local-item-from-menu): Fix doc strings.
2005-10-28 21:03:35 +00:00
Nick Roberts
147ebacae1 *** empty log message *** 2005-10-28 21:02:56 +00:00
Romain Francoise
ab5d87b3e6 (BASE_PURESIZE): Incremented to 1130000. 2005-10-28 17:57:02 +00:00
Romain Francoise
6a9e60bc9d Update. 2005-10-28 17:06:03 +00:00
Romain Francoise
059a552c5c * subr.el (locate-library): Move from help-fns.el.
* help-fns.el (locate-library): Move to subr.el.
2005-10-28 16:55:48 +00:00
Richard M. Stallman
107fb6c995 *** empty log message *** 2005-10-28 16:44:46 +00:00
Richard M. Stallman
30cb17f0c2 (Completion Commands): Clean up prev change. 2005-10-28 16:44:20 +00:00
Richard M. Stallman
185d95fc3e (Eval During Compile): Explain recommended uses
of eval-when-compile and eval-and-compile.
2005-10-28 16:43:12 +00:00
Richard M. Stallman
092b683aa2 (Visiting): Explain how to enter ? in a file name. 2005-10-28 16:41:34 +00:00
Richard M. Stallman
180ff2e577 (Memory Full): Mention !MEM FULL! in mode line. 2005-10-28 16:38:14 +00:00
Richard M. Stallman
49be9d28f7 (syms_of_xfns): Provide `x' as feature. 2005-10-28 16:28:43 +00:00
Richard M. Stallman
fbfde322c1 (decode_mode_spec): Define %e to indicate memory full. 2005-10-28 16:27:47 +00:00
Richard M. Stallman
8f2c9ed8c9 (Fformat): Don't include string padding
between info[n].start and info[n].end.
2005-10-28 16:26:45 +00:00
Richard M. Stallman
745575ff14 (spare_memory): No longer static.
(xfree) [!SYSTEM_MALLOC]: Call refill_memory_reserve.
2005-10-28 16:25:37 +00:00
Richard M. Stallman
4df8d8ecd8 (BASE_PURESIZE): Incremented to 112000. 2005-10-28 16:24:35 +00:00
Richard M. Stallman
8cee983d52 (tramp-completion-mode): defvar moved up. 2005-10-28 16:23:55 +00:00
Richard M. Stallman
81013a6cde (easy-menu-change): Doc fix. 2005-10-28 16:22:47 +00:00
Richard M. Stallman
646cb69e5a (tool-bar-mode): Delete autoload cookie. 2005-10-28 16:22:08 +00:00
Richard M. Stallman
879bae91ca (find-file-noselect): Use %d to format large file size. 2005-10-28 16:20:12 +00:00
Richard M. Stallman
3d88265867 (help-echo): Add %e. 2005-10-28 16:19:16 +00:00
Richard M. Stallman
165b0fa03d ("facemenu"): Load unconditionally.
("image", "international/fontset", "dnd", "mwheel", "tool-bar"):
("x-dnd"): Load, when appropriate.
2005-10-28 16:17:01 +00:00
Richard M. Stallman
ce98f555a7 (command-line): Call before-init-hook earlier.
Warn about some bad characters in -u user name.
2005-10-28 15:43:15 +00:00
Andreas Schwab
a312f21413 (View-revert-buffer-scroll-page-forward): Use
view-page-size-default.
2005-10-28 09:43:01 +00:00
Juri Linkov
895725e10c *** empty log message *** 2005-10-28 06:00:50 +00:00
Juri Linkov
6bbe46e824 Add missing characters from 1st pos of every table of [korean-ksc5601],
and swap incorrectly ordered characters at pos 91 and 90.
2005-10-28 06:00:41 +00:00
Juri Linkov
91a802b0bf (quail-get-current-str): Translate last raw character
for deterministic input methods.
2005-10-28 05:47:31 +00:00
Jay Belanger
887ec6f1cd *** empty log message *** 2005-10-28 04:50:27 +00:00
Jay Belanger
5dee9246a3 (Predefined Units): Fix the symbol for a TeX points, mention other
TeX-related units.
2005-10-28 04:49:41 +00:00
Richard M. Stallman
ca7250cb5a (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.
2005-10-28 04:22:19 +00:00
Jay Belanger
93e7f88942 (calcFunc-writeoutpower, math-write-out-power, calc-writeoutpower):
New functions.
2005-10-28 03:52:38 +00:00
Jay Belanger
5c0e273a4c (calcFunc-inv): Check for symbolic matrices. 2005-10-28 03:52:08 +00:00
Jay Belanger
7199ddd28e (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.
2005-10-28 03:51:36 +00:00
Jay Belanger
cbd4e89bea Add functions to autoloads.
(math-identity-matrix-p, math-ident-row-p): New functions.
2005-10-28 03:51:00 +00:00
Bill Wohler
e069fa61e0 * 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.
2005-10-28 01:59:12 +00:00
Bill Wohler
3b463df019 (mh-insert-signature, mh-insert-auto-fields): Checkdoc fixes. 2005-10-28 01:39:14 +00:00
Chong Yidong
437610c5a2 * data.c (Fmake_variable_frame_local): Add clarification to
docstring.
2005-10-28 01:25:18 +00:00