Kim F. Storm [Thu, 8 Dec 2005 14:12:12 +0000 (14:12 +0000)]
(cua--select-keymaps): Enable repeat
keymap if cua--prefix-override-timer equals 'shift.
(cua--shift-control-prefix): New function; emulate "type prefix
key twice" functionality to handle shifted prefix key override.
(cua--shift-control-c-prefix, cua--shift-control-x-prefix): New
commands.
(cua--init-keymaps): Bind them to S-C-c and S-C-x.
Carsten Dominik [Thu, 8 Dec 2005 13:08:54 +0000 (13:08 +0000)]
(org-insert-heading): Try to do items before headings.
(org-agenda-mode): Quote `org-agenda-mode-hook'.
(org-insert-item): New function.
(org-renumber-ordered-list): Don't skip to higher level lists.
Nick Roberts [Wed, 7 Dec 2005 23:05:47 +0000 (23:05 +0000)]
(gdb-find-file-unhook): Delete variable.
(gdb-set-gud-minor-mode, gdb-set-gud-minor-mode): Delete functions.
(gdb-set-gud-minor-mode-existing-buffers, gdb-init-2): Use GDB
command "info sources". Move calls to GDB command "list".
(gdb-find-file-hook): Just use gdb-source-file-list.
(gdb-source-file-regexp): Use regexp for pre-GDB 6.4.
(gdb-source-file-regexp-1): New regexp for GDB 6.4+ only.
(gdb-set-gud-minor-mode-existing-buffers-1): Use it.
(gdb-data-list-register-values-handler): Use correct trigger name.
Kim F. Storm [Wed, 7 Dec 2005 09:22:53 +0000 (09:22 +0000)]
(ido-completion-map): Renamed from ido-mode-map.
(ido-common-completion-map, ido-file-completion-map)
(ido-file-dir-completion-map, ido-buffer-completion-map):
Renamed from ido-mode-....-map.
(ido-init-completion-maps): Renamed from ido-init-mode-maps.
(ido-setup-completion-map): Renamed from ido-define-mode-map.
(ido-read-internal): Bind minibuffer-local-filename-completion-map
to ido-completion-map.
Kenichi Handa [Wed, 7 Dec 2005 07:28:37 +0000 (07:28 +0000)]
(set-display-table-and-terminal-coding-system): If the coding
system specified in `unibyte-display' property is different from
the arg coding-system, don't setup standard-display-table.
Nick Roberts [Tue, 6 Dec 2005 21:42:54 +0000 (21:42 +0000)]
(gdb-error-regexp, gdb-first-post-prompt)
(gdb-version): New variables.
(gdb-source-file-list, gdb-register-names)
(gdb-changed-registers): New variables for use with GDB 6.4+.
(gdb-ann3): Replace with...
(gdb-init-1, gdb-init-2): ...two new functions.
(gdba, gdb-prompt): Call gdb-init-1.
(gdb-get-version): New function. Call gdb-init-2 from here.
(gud-watch): Make it work with mouse events too.
(gdb-post-prompt): Don't add to queue until GDB version is known.
(gdb-speedbar-expand-node, gdb-post-prompt, gdb-registers-mode)
(gdb-locals-mode): Use gdb-version.
(gdb-memory-format-map, gdb-memory-unit-map)
(gdb-locals-watch-map): Rename from gdb-*-*-keymap.
(gdb-locals-font-lock-keywords-1)
(gdb-locals-font-lock-keywords-2): New variables.
(gdb-find-file-hook): fgfg.
(gdb-set-gud-minor-mode-existing-buffers-1)
(gdb-var-list-children-1, gdb-var-list-children-handler-1)
(gdb-var-update-1, gdb-var-update-handler-1)
(gdb-data-list-register-values-handler)
(gdb-data-list-register-values-custom)
(gdb-get-changed-registers, gdb-get-changed-registers-handler)
(gdb-stack-list-locals-handler, gdb-get-register-names): New
functions for use with GDB 6.4+.
(gdb-locals-watch-map-1): New variable for use with GDB 6.4+.
(gdb-source-file-regexp, gdb-var-list-children-regexp-1)
(gdb-var-update-regexp-1, gdb-data-list-register-values-regexp)
(gdb-stack-list-locals-regexp)
(gdb-data-list-register-names-regexp): New regexps for use with
GDB 6.4+.
Stefan Monnier [Tue, 6 Dec 2005 15:53:58 +0000 (15:53 +0000)]
(keys_of_minibuf): Just unbind SPC in Vminibuffer_local_filename_completion_map
rather than forcing it explicitly to the same binding as the global map.
Carsten Dominik [Tue, 6 Dec 2005 10:51:28 +0000 (10:51 +0000)]
(org-occur-highlights): New variable.
(org-highlight-new-match, org-remove-occur-highlights): New
functions.
(org-highlight-sparse-tree-matches): New option.
(org-do-occur): New function.
(org-get-heading): Make it work also at beginning of line.
(org-category-table): New variable.
(org-get-category-table, org-get-category)
(org-camel-to-words, org-link-search): New functions.
(org-select-this-todo-keyword): New variable.
(org-todo-list): New command.
(org-shiftright, org-shiftleft): New commands.
(org-agenda-todo): Added prefix argument.
(org-show-hierarchy-above): New option.
(org-show-todo-tree): Numerical prefix creates tree for
specific
TODO keyword.
(org-outline-level): New function, to assign a level to plain
lists items.
(org-cycle-include-plain-lists): New option.
(org-mode): Use `org-outline-level' as value of
`outline-level'.
(org-cycle): Temporarily switch `outline-regexp' if
`org-cycle-include-plain-lists' is non-nil.
(org-start-icalendar-file): Fixed format bug.
(org-agenda-get-day-entries): Create category table.
(org-agenda-get-todos, org-agenda-get-timestamps)
(org-agenda-get-deadlines, org-agenda-get-scheduled)
(org-agenda-get-blocks): Use `org-get-category'.
(org-context-in-file-links): Renamed from
`org-line-numbers-in-file-links' .
Nick Roberts [Tue, 6 Dec 2005 02:31:16 +0000 (02:31 +0000)]
(gdb-var-create-handler)
(gdb-var-evaluate-expression-handler, gdb-frame-handler)
(gdb-var-list-children-handler, gdb-var-update-handler):
Current buffer is already gdb-partial-output-buffer, don't
make it current again.
Stefan Monnier [Mon, 5 Dec 2005 17:08:00 +0000 (17:08 +0000)]
Remove unnecessary leading-star in docstrings.
(mail-yank-ignored-headers): Use regexp-opt.
(mail-mode-map): Move initialization into declaration.
(mail-sent-via): Remove unused shadowed var `to-line'.
(mail-mailer-swallows-blank-line): Use with-temp-buffer.
(mail-bury, sendmail-send-it, mail-do-fcc): Use with-current-buffer.
(mail-do-fcc): Use dolist and push.
(mail-mode-fill-paragraph): Pass the arg to fill-region-as-paragraph.
Kenichi Handa [Mon, 5 Dec 2005 07:39:01 +0000 (07:39 +0000)]
(set-language-info-internal): New
function.
(set-language-info): Call set-language-info-internal to update
language-info-alist. If LANG-ENV is the current one, call
set-language-environment to make INFO effective now.
(set-language-info-alist): Likewise.
(locale-language-names): With locale "en", use English
lang. env. but set the default codings to iso-8859-1.
Bill Wohler [Mon, 5 Dec 2005 01:31:04 +0000 (01:31 +0000)]
(mh-fetch-x-image-url): Change default from 'ask to
nil. Remove t option. Sync docstring with manual (closes SF #831278).
(mh-invisible-header-fields-internal): Remove X-Image-URL so that
users can see it, look it up in the manual's index, and discover
mh-fetch-x-image-url (closes SF #831278).
Bill Wohler [Mon, 5 Dec 2005 00:52:57 +0000 (00:52 +0000)]
* mh-customize.el (mh-new-messages-folders): Rename from
mh-index-new-messages-folders.
(mh-ticked-messages-folders): Rename from
mh-index-ticked-messages-folders.
Bill Wohler [Sun, 4 Dec 2005 22:34:49 +0000 (22:34 +0000)]
* mh-comp.el (mh-forward): Went over all uses of the word "RANGE" in
the docstrings and made usage consistent. Generally speaking,
"messages in range" and "range of messages" is redundant and just
"range" can be used in most circumstances. Also ensured that
mh-interactive-range was mentioned in all interactive functions that
use a range which describes the range argument for both users and
programmers.
Nick Roberts [Sun, 4 Dec 2005 09:12:07 +0000 (09:12 +0000)]
(gdb-use-inferior-io-buffer, gdb-speedbar-auto-raise):
Echo new state in minibuffer.
(gdb-var-create-handler, gdb-assembler-custom): Use search-forward
for plain strings.
(gdb-frames-mode): Remove redundant call to font-lock-mode.
(gdb-all-registers): Rename from toggle-gdb-all-registers. Create
registers buffer if necessary. Echo new state in minibuffer.
(gdb-registers-mode-map, gdb-registers-mode): Use gdb-all-registers.
Juri Linkov [Sun, 4 Dec 2005 02:42:29 +0000 (02:42 +0000)]
(completion-setup-function): Put completions-common-part
face on full completion string too (i.e. completion string without
completions-first-difference face).
Juri Linkov [Sun, 4 Dec 2005 02:39:24 +0000 (02:39 +0000)]
(customize-group, customize-group-other-window):
Filter out autoloaded options from the group completion list by
using heuristics that autoloaded groups don't have `custom-autoload'
property on their symbols (they have only `custom-loads').
Juri Linkov [Sun, 4 Dec 2005 02:36:13 +0000 (02:36 +0000)]
Put `doc-string-elt' property on
easy-mmode-define-global-mode and define-global-minor-mode.
(lisp-imenu-generic-expression): Add define-global-minor-mode.
Eli Zaretskii [Sat, 3 Dec 2005 11:52:23 +0000 (11:52 +0000)]
(print-help-return-message): If pop-up-frames is non-nil, set up
help-return-method to delete the help window and, possibly, its frame as well. Doc fix.
(help-return-method): Doc fix.