aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2005-12-26 20:28:10 +0000
committerRichard M. Stallman2005-12-26 20:28:10 +0000
commit119f6f171a4ee6fa2c67184b36d4ee43296a8cfd (patch)
tree283dc163bcec9bd9621f7603834a1f2ec31439b3
parenta273d9eb0d4e2c0e0ebb988be567302b72e37b0c (diff)
downloademacs-119f6f171a4ee6fa2c67184b36d4ee43296a8cfd.tar.gz
emacs-119f6f171a4ee6fa2c67184b36d4ee43296a8cfd.zip
Fix quoting syntax.
-rw-r--r--lisp/ChangeLog86
1 files changed, 43 insertions, 43 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index e150f941788..61c4171d2bf 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -16,11 +16,11 @@
16 * descr-text.el (help-fns): Require. Don't require button for 16 * descr-text.el (help-fns): Require. Don't require button for
17 byte compilation. 17 byte compilation.
18 (describe-text-widget): Add help echo for first button. 18 (describe-text-widget): Add help echo for first button.
19 Use 'help-info for second. 19 Use `help-info' for second.
20 (describe-property-list): Use 'help-argument-name instead of 'italic. 20 (describe-property-list): Use `help-argument-name' instead of `italic'.
21 (describe-text-category): Prompt in minibuffer. Call help-setup-xref. 21 (describe-text-category): Prompt in minibuffer. Call help-setup-xref.
22 (describe-char): Use 'help-character-set. Add help echo. 22 (describe-char): Use `help-character-set'. Add help echo.
23 Use 'help-input-method. Remove superfluous insert. 23 Use `help-input-method'. Remove superfluous insert.
24 24
252005-12-25 Richard M. Stallman <rms@gnu.org> 252005-12-25 Richard M. Stallman <rms@gnu.org>
26 26
@@ -1411,7 +1411,7 @@
1411 5D.1 and 5D.2 removed since they aren't trigged anymore (case 5B.1 1411 5D.1 and 5D.2 removed since they aren't trigged anymore (case 5B.1
1412 covers all cases now). 1412 covers all cases now).
1413 1413
1414 * progmodes/cc-defs.el (c-point): Added 'bosws and 'eosws. 1414 * progmodes/cc-defs.el (c-point): Added `bosws' and `eosws'.
1415 1415
14162005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org> 14162005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
1417 1417
@@ -1481,7 +1481,7 @@
1481 * progmodes/cc-engine.el, cc-fonts.el (c-forward-keyword-clause): 1481 * progmodes/cc-engine.el, cc-fonts.el (c-forward-keyword-clause):
1482 Specify which submatch to use. 1482 Specify which submatch to use.
1483 1483
1484 * progmodes/cc-langs.el (c-symbol-start): Include '@' in ObjC. 1484 * progmodes/cc-langs.el (c-symbol-start): Include `@' in ObjC.
1485 1485
1486 (c-decl-start-re): No no longer any need for special treatment of 1486 (c-decl-start-re): No no longer any need for special treatment of
1487 ObjC due to the above. 1487 ObjC due to the above.
@@ -1680,7 +1680,7 @@
1680 1680
1681 (c-decl-start-re): New language variable to make 1681 (c-decl-start-re): New language variable to make
1682 `c-font-lock-declarations' stop for the special protection labels 1682 `c-font-lock-declarations' stop for the special protection labels
1683 in Objective-C that start with '@'. 1683 in Objective-C that start with `@'.
1684 1684
1685 (c-label-key): Removed since it's no longer used. 1685 (c-label-key): Removed since it's no longer used.
1686 1686
@@ -1870,7 +1870,7 @@
1870 has now taken the place of this function. 1870 has now taken the place of this function.
1871 1871
1872 * progmodes/cc-vars.el (c-emacs-features): Removed compatibility 1872 * progmodes/cc-vars.el (c-emacs-features): Removed compatibility
1873 with older emacsen: We now require 'pps-extended-state. 1873 with older emacsen: We now require `pps-extended-state'.
1874 1874
18752005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org> 18752005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
1876 1876
@@ -2047,21 +2047,21 @@
2047 (cua-rectangle-modifier-key): ... this. New defcustom. Can now 2047 (cua-rectangle-modifier-key): ... this. New defcustom. Can now
2048 select either meta, hyper, or super modifier for rectangle commands. 2048 select either meta, hyper, or super modifier for rectangle commands.
2049 (cua--rectangle-modifier-key): New defvar. 2049 (cua--rectangle-modifier-key): New defvar.
2050 (cua--M/H-key): Use it. Remove special case for 'space. 2050 (cua--M/H-key): Use it. Remove special case for `space'.
2051 (cua--init-keymaps): Initialize it from cua-rectangle-modifier-key 2051 (cua--init-keymaps): Initialize it from cua-rectangle-modifier-key
2052 on X, to meta otherwise. Always bind C-return to toggle 2052 on X, to meta otherwise. Always bind C-return to toggle
2053 rectangle. Pass ?\s instead of 'space to cua--M/H-key. 2053 rectangle. Pass ?\s instead of `space' to cua--M/H-key.
2054 2054
2055 * emulation/cua-rect.el (cua-help-for-rectangle): Use 2055 * emulation/cua-rect.el (cua-help-for-rectangle): Use
2056 cua--rectangle-modifier-key. Handle super modifier too. 2056 cua--rectangle-modifier-key. Handle super modifier too.
2057 (cua--init-rectangles): Always bind C-return to toggle rectangle. 2057 (cua--init-rectangles): Always bind C-return to toggle rectangle.
2058 Pass ?\s instead of 'space to cua--M/H-key and cua--rect-M/H-key. 2058 Pass ?\s instead of `space' to cua--M/H-key and cua--rect-M/H-key.
2059 2059
2060 * ido.el: Move Acknowledgements and History after Commentary. 2060 * ido.el: Move Acknowledgements and History after Commentary.
2061 Minor changes to Commentary. 2061 Minor changes to Commentary.
2062 2062
2063 * emulation/cua-base.el (cua--select-keymaps): Enable repeat 2063 * emulation/cua-base.el (cua--select-keymaps): Enable repeat
2064 keymap if cua--prefix-override-timer equals 'shift. 2064 keymap if cua--prefix-override-timer is `shift'.
2065 (cua--shift-control-prefix): New function; emulate "type prefix 2065 (cua--shift-control-prefix): New function; emulate "type prefix
2066 key twice" functionality to handle shifted prefix key override. 2066 key twice" functionality to handle shifted prefix key override.
2067 (cua--shift-control-c-prefix, cua--shift-control-x-prefix): New 2067 (cua--shift-control-c-prefix, cua--shift-control-x-prefix): New
@@ -2357,7 +2357,7 @@
2357 2357
23582005-12-02 Ken Manheimer <ken.manheimer@gmail.com> 23582005-12-02 Ken Manheimer <ken.manheimer@gmail.com>
2359 2359
2360 * allout.el:(eval-when-compile): Remove unnecessary load of 'cl. 2360 * allout.el:(eval-when-compile): Remove unnecessary load of cl.
2361 Add fset of allout-real-isearch-abort during compile to fix 2361 Add fset of allout-real-isearch-abort during compile to fix
2362 byte-compilation warnings. 2362 byte-compilation warnings.
2363 (allout-mode-p): Move definition of this macro above all uses, or 2363 (allout-mode-p): Move definition of this macro above all uses, or
@@ -3494,7 +3494,7 @@
3494 * jka-cmpr-hook.el (jka-compr-install): Use push and dolist. 3494 * jka-cmpr-hook.el (jka-compr-install): Use push and dolist.
3495 Add jka-compr-load-suffixes to load-suffixes. 3495 Add jka-compr-load-suffixes to load-suffixes.
3496 3496
3497 * jka-compr.el: Require 'jka-cmpr-hook. 3497 * jka-compr.el: Require jka-cmpr-hook.
3498 (jka-compr-info-compress-message, jka-compr-info-compress-program) 3498 (jka-compr-info-compress-message, jka-compr-info-compress-program)
3499 (jka-compr-info-compress-args, jka-compr-info-uncompress-message) 3499 (jka-compr-info-compress-args, jka-compr-info-uncompress-message)
3500 (jka-compr-info-uncompress-program, jka-compr-info-uncompress-args) 3500 (jka-compr-info-uncompress-program, jka-compr-info-uncompress-args)
@@ -3677,7 +3677,7 @@
3677 * pgg-pgp.el (pgg-pgp-encrypt-region, pgg-pgp-decrypt-region) 3677 * pgg-pgp.el (pgg-pgp-encrypt-region, pgg-pgp-decrypt-region)
3678 (pgg-pgp-encrypt-symmetric-region, pgg-pgp-encrypt-symmetric) 3678 (pgg-pgp-encrypt-symmetric-region, pgg-pgp-encrypt-symmetric)
3679 (pgg-pgp-encrypt, pgg-pgp-decrypt-region, pgg-pgp-decrypt) 3679 (pgg-pgp-encrypt, pgg-pgp-decrypt-region, pgg-pgp-decrypt)
3680 (pgg-pgp-sign-region, pgg-pgp-sign): Add optional 'passphrase' 3680 (pgg-pgp-sign-region, pgg-pgp-sign): Add optional PASSPHRASE
3681 argument to all these routines, so the passphrase can be managed 3681 argument to all these routines, so the passphrase can be managed
3682 externally and passed in to the system. 3682 externally and passed in to the system.
3683 (pgg-pgp-decrypt-region, pgg-pgp-sign-region): Use new name for 3683 (pgg-pgp-decrypt-region, pgg-pgp-sign-region): Use new name for
@@ -3686,7 +3686,7 @@
3686 * pgg-pgp5.el (pgg-pgp5-encrypt-region, pgg-pgp5-decrypt-region) 3686 * pgg-pgp5.el (pgg-pgp5-encrypt-region, pgg-pgp5-decrypt-region)
3687 (pgg-pgp5-encrypt-symmetric-region, pgg-pgp5-encrypt-symmetric) 3687 (pgg-pgp5-encrypt-symmetric-region, pgg-pgp5-encrypt-symmetric)
3688 (pgg-pgp5-encrypt, pgg-pgp5-decrypt-region, pgg-pgp5-decrypt) 3688 (pgg-pgp5-encrypt, pgg-pgp5-decrypt-region, pgg-pgp5-decrypt)
3689 (pgg-pgp5-sign-region, pgg-pgp5-sign): Add optional 'passphrase' 3689 (pgg-pgp5-sign-region, pgg-pgp5-sign): Add optional PASSPHRASE
3690 argument to all these routines, so the passphrase can be managed 3690 argument to all these routines, so the passphrase can be managed
3691 externally and passed in to the system. 3691 externally and passed in to the system.
3692 (pgg-pgp5-sign-region): Use new name of pgg-add-passphrase-to-cache 3692 (pgg-pgp5-sign-region): Use new name of pgg-add-passphrase-to-cache
@@ -3870,7 +3870,7 @@
3870 Change defvar to defcustom. 3870 Change defvar to defcustom.
3871 (rcirc-update-prompt): Add optional ALL arg, which will update 3871 (rcirc-update-prompt): Add optional ALL arg, which will update
3872 prompts in all rcirc buffers. Regexp quote replacement text. 3872 prompts in all rcirc buffers. Regexp quote replacement text.
3873 (rcirc-fill-column): Accept 'frame-width as a value. 3873 (rcirc-fill-column): Accept frame-width as a value.
3874 (rcirc-set-changed): Add function. 3874 (rcirc-set-changed): Add function.
3875 (rcirc-next-active-buffer): Write more meaningful messages. 3875 (rcirc-next-active-buffer): Write more meaningful messages.
3876 (rcirc-faces): Add customization group. 3876 (rcirc-faces): Add customization group.
@@ -3881,7 +3881,7 @@
3881 (rcirc-debug-buffer): Rename from `rcirc-log-buffer'. 3881 (rcirc-debug-buffer): Rename from `rcirc-log-buffer'.
3882 (rcirc-debug-flag): Rename from `rcirc-log-p'. 3882 (rcirc-debug-flag): Rename from `rcirc-log-p'.
3883 (rcirc-debug): Rename from `rcirc-log'. 3883 (rcirc-debug): Rename from `rcirc-log'.
3884 (rcirc-format-response-string): Do not print '-' chars for a 3884 (rcirc-format-response-string): Do not print `-' chars for a
3885 NOTICE with no sender. Simplify output of server responses. 3885 NOTICE with no sender. Simplify output of server responses.
3886 3886
38872005-11-04 Henrik Enberg <henrik.enberg@telia.com> 38872005-11-04 Henrik Enberg <henrik.enberg@telia.com>
@@ -3899,7 +3899,7 @@
3899 * pgg-pgp.el (pgg-pgp-encrypt-region, pgg-pgp-decrypt-region) 3899 * pgg-pgp.el (pgg-pgp-encrypt-region, pgg-pgp-decrypt-region)
3900 (pgg-pgp-encrypt-symmetric-region, pgg-pgp-encrypt-symmetric) 3900 (pgg-pgp-encrypt-symmetric-region, pgg-pgp-encrypt-symmetric)
3901 (pgg-pgp-encrypt, pgg-pgp-decrypt-region, pgg-pgp-decrypt) 3901 (pgg-pgp-encrypt, pgg-pgp-decrypt-region, pgg-pgp-decrypt)
3902 (pgg-pgp-sign-region, pgg-pgp-sign): Add optional 'passphrase' 3902 (pgg-pgp-sign-region, pgg-pgp-sign): Add optional PASSPHRASE
3903 argument to all these routines, so the passphrase can be managed 3903 argument to all these routines, so the passphrase can be managed
3904 externally and passed in to the system. 3904 externally and passed in to the system.
3905 (pgg-pgp-decrypt-region, pgg-pgp-sign-region): Use new name for 3905 (pgg-pgp-decrypt-region, pgg-pgp-sign-region): Use new name for
@@ -3908,7 +3908,7 @@
3908 * pgg-pgp5.el (pgg-pgp5-encrypt-region, pgg-pgp5-decrypt-region) 3908 * pgg-pgp5.el (pgg-pgp5-encrypt-region, pgg-pgp5-decrypt-region)
3909 (pgg-pgp5-encrypt-symmetric-region, pgg-pgp5-encrypt-symmetric) 3909 (pgg-pgp5-encrypt-symmetric-region, pgg-pgp5-encrypt-symmetric)
3910 (pgg-pgp5-encrypt, pgg-pgp5-decrypt-region, pgg-pgp5-decrypt) 3910 (pgg-pgp5-encrypt, pgg-pgp5-decrypt-region, pgg-pgp5-decrypt)
3911 (pgg-pgp5-sign-region, pgg-pgp5-sign): Add optional 'passphrase' 3911 (pgg-pgp5-sign-region, pgg-pgp5-sign): Add optional PASSPHRASE
3912 argument to all these routines, so the passphrase can be managed 3912 argument to all these routines, so the passphrase can be managed
3913 externally and passed in to the system. 3913 externally and passed in to the system.
3914 (pgg-pgp5-sign-region): Use new name of pgg-add-passphrase-to-cache 3914 (pgg-pgp5-sign-region): Use new name of pgg-add-passphrase-to-cache
@@ -3923,7 +3923,7 @@
3923 3923
3924 * textmodes/org.el (org-read-date, org-goto-calendar) 3924 * textmodes/org.el (org-read-date, org-goto-calendar)
3925 (org-recenter-calendar, org-agenda-goto-calendar): 3925 (org-recenter-calendar, org-agenda-goto-calendar):
3926 Temporarily clear 'calendar-move-hook'. 3926 Temporarily clear `calendar-move-hook'.
3927 3927
39282005-11-04 Michael Kifer <kifer@cs.stonybrook.edu> 39282005-11-04 Michael Kifer <kifer@cs.stonybrook.edu>
3929 3929
@@ -4284,7 +4284,7 @@
4284 key. Also, added a note pointing out fact that the prompt only 4284 key. Also, added a note pointing out fact that the prompt only
4285 indicates the first matching key. 4285 indicates the first matching key.
4286 4286
4287 * pgg.el (pgg-decrypt): Passing along 'passphrase' in call to 4287 * pgg.el (pgg-decrypt): Passing along PASSPHRASE in call to
4288 pgg-decrypt-region. 4288 pgg-decrypt-region.
4289 (pgg-pending-timers): A new hash for tracking the passphrase cache 4289 (pgg-pending-timers): A new hash for tracking the passphrase cache
4290 timers, so that new ones supercede old ones. 4290 timers, so that new ones supercede old ones.
@@ -4314,14 +4314,14 @@
4314 and then passed in to the system. 4314 and then passed in to the system.
4315 4315
4316 * pgg.el (pgg-read-passphrase, pgg-add-passphrase-cache) 4316 * pgg.el (pgg-read-passphrase, pgg-add-passphrase-cache)
4317 (pgg-remove-passphrase-cache): Add optional 'notruncate' argument, 4317 (pgg-remove-passphrase-cache): Add optional NOTRUNCATE argument,
4318 so the passphrase cache can be used reliably with identifiers 4318 so the passphrase cache can be used reliably with identifiers
4319 besides a pgp packet's key id. 4319 besides a pgp packet's key id.
4320 4320
4321 * pgg-gpg.el (pgg-pgp-encrypt-region) 4321 * pgg-gpg.el (pgg-pgp-encrypt-region)
4322 (pgg-pgp-encrypt-symmetric-region, pgg-pgp-encrypt-symmetric) 4322 (pgg-pgp-encrypt-symmetric-region, pgg-pgp-encrypt-symmetric)
4323 (pgg-pgp-encrypt, pgg-pgp-decrypt-region, pgg-pgp-decrypt) 4323 (pgg-pgp-encrypt, pgg-pgp-decrypt-region, pgg-pgp-decrypt)
4324 (pgg-pgp-sign-region, pgg-pgp-sign): Add optional 'passphrase' 4324 (pgg-pgp-sign-region, pgg-pgp-sign): Add optional PASSPHRASE
4325 argument to all these routines, so the passphrase can be managed 4325 argument to all these routines, so the passphrase can be managed
4326 externally and passed in to the system. 4326 externally and passed in to the system.
4327 4327
@@ -4370,7 +4370,7 @@
4370 key. Also, added a note pointing out fact that the prompt only 4370 key. Also, added a note pointing out fact that the prompt only
4371 indicates the first matching key. 4371 indicates the first matching key.
4372 4372
4373 * pgg.el (pgg-decrypt): Passing along 'passphrase' in call to 4373 * pgg.el (pgg-decrypt): Passing along PASSPHRASE in call to
4374 pgg-decrypt-region. 4374 pgg-decrypt-region.
4375 (pgg-pending-timers): A new hash for tracking the passphrase cache 4375 (pgg-pending-timers): A new hash for tracking the passphrase cache
4376 timers, so that new ones supercede old ones. 4376 timers, so that new ones supercede old ones.
@@ -4402,14 +4402,14 @@
4402 and then passed in to the system. 4402 and then passed in to the system.
4403 4403
4404 * pgg.el (pgg-read-passphrase, pgg-add-passphrase-cache) 4404 * pgg.el (pgg-read-passphrase, pgg-add-passphrase-cache)
4405 (pgg-remove-passphrase-cache): Add optional 'notruncate' argument, 4405 (pgg-remove-passphrase-cache): Add optional NOTRUNCATE argument,
4406 so the passphrase cache can be used reliably with identifiers 4406 so the passphrase cache can be used reliably with identifiers
4407 besides a pgp packet's key id. 4407 besides a pgp packet's key id.
4408 4408
4409 * pgg-gpg.el (pgg-pgp-encrypt-region) 4409 * pgg-gpg.el (pgg-pgp-encrypt-region)
4410 (pgg-pgp-encrypt-symmetric-region, pgg-pgp-encrypt-symmetric) 4410 (pgg-pgp-encrypt-symmetric-region, pgg-pgp-encrypt-symmetric)
4411 (pgg-pgp-encrypt, pgg-pgp-decrypt-region, pgg-pgp-decrypt) 4411 (pgg-pgp-encrypt, pgg-pgp-decrypt-region, pgg-pgp-decrypt)
4412 (pgg-pgp-sign-region, pgg-pgp-sign): Add optional 'passphrase' 4412 (pgg-pgp-sign-region, pgg-pgp-sign): Add optional PASSPHRASE
4413 argument to all these routines, so the passphrase can be managed 4413 argument to all these routines, so the passphrase can be managed
4414 externally and passed in to the system. 4414 externally and passed in to the system.
4415 4415
@@ -5047,7 +5047,7 @@
5047 * allout.el: Add autoloads of crypt++ and mailcrypt routines, all 5047 * allout.el: Add autoloads of crypt++ and mailcrypt routines, all
5048 for encryption functionality. 5048 for encryption functionality.
5049 Move allout customization subgroup from `editing' to `outlines' group. 5049 Move allout customization subgroup from `editing' to `outlines' group.
5050 Fix commentary 'keywords' to legitimate ones. 5050 Fix commentary keywords to legitimate ones.
5051 Update author info (using my current email address, obscurified). 5051 Update author info (using my current email address, obscurified).
5052 (allout-encrypt-string, allout-encryption-produce-work-buffer) 5052 (allout-encrypt-string, allout-encryption-produce-work-buffer)
5053 (allout-encrypted-topic-p, allout-encrypted-text-type) 5053 (allout-encrypted-topic-p, allout-encrypted-text-type)
@@ -5088,9 +5088,9 @@
5088 any universal argument provokes now prompt for bullet, defaulting 5088 any universal argument provokes now prompt for bullet, defaulting
5089 to the bullet of the previous topic. 5089 to the bullet of the previous topic.
5090 (allout-plain-bullets-string, allout-distinctive-bullets-string): 5090 (allout-plain-bullets-string, allout-distinctive-bullets-string):
5091 Plain bullet alternates '.' period and ',' comma only. All other 5091 Plain bullet alternates `.' period and `,' comma only. All other
5092 bullets are relegated to special status (but customizable). 5092 bullets are relegated to special status (but customizable).
5093 (allout-end-of-entry): Rename from 'allout-end-of-current-entry 5093 (allout-end-of-entry): Rename from allout-end-of-current-entry
5094 since it actually operates w.r.t. most immediately containing 5094 since it actually operates w.r.t. most immediately containing
5095 entry, visible or not. 5095 entry, visible or not.
5096 (allout-hide-current-entry, allout-show-current-entry): Use the 5096 (allout-hide-current-entry, allout-show-current-entry): Use the
@@ -5111,8 +5111,8 @@
5111 (allout-isearch-rectification): Refine condition for isearching. 5111 (allout-isearch-rectification): Refine condition for isearching.
5112 (allout-isearch-abort, allout-enwrap-isearch) 5112 (allout-isearch-abort, allout-enwrap-isearch)
5113 (allout-flag-region, my-region-active-p): Relocate some macros. 5113 (allout-flag-region, my-region-active-p): Relocate some macros.
5114 (allout-title): Fallback title is '(buffer-name)', not 5114 (allout-title): Fallback title is (buffer-name), not
5115 non-existing '(current-buffer-name)'. 5115 non-existing (current-buffer-name).
5116 (subst-char-in-string): Define if absent (for some XEmacs versions). 5116 (subst-char-in-string): Define if absent (for some XEmacs versions).
5117 5117
51182005-10-20 Jari Aalto <jari.aalto@cante.net> 51182005-10-20 Jari Aalto <jari.aalto@cante.net>
@@ -5627,10 +5627,10 @@
5627 (math-super-types): Add sqmatrix type. 5627 (math-super-types): Add sqmatrix type.
5628 5628
5629 * calc/calc-mode.el (calc-matrix-mode, math-get-modes-vec): Change the 5629 * calc/calc-mode.el (calc-matrix-mode, math-get-modes-vec): Change the
5630 mode name `square' to 'sqmatrix'. 5630 mode name `square' to `sqmatrix'.
5631 5631
5632 * calc/calc.el (calc-matrix-mode, calc-set-mode-line): Change the 5632 * calc/calc.el (calc-matrix-mode, calc-set-mode-line): Change the
5633 mode name `square' to 'sqmatrix'. 5633 mode name `square' to `sqmatrix'.
5634 5634
56352005-10-10 Stefan Monnier <monnier@iro.umontreal.ca> 56352005-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
5636 5636
@@ -7220,7 +7220,7 @@
7220 (vhdl-trailer-re): Add "record" keyword (better indentation). 7220 (vhdl-trailer-re): Add "record" keyword (better indentation).
7221 (vhdl-fixup-whitespace-region): "[^ \t\"-]+" instead of 7221 (vhdl-fixup-whitespace-region): "[^ \t\"-]+" instead of
7222 "[^ \t-\"]+". 7222 "[^ \t-\"]+".
7223 (vhdl-font-lock-keywords-2): Not highlight formal parameter after '|'. 7223 (vhdl-font-lock-keywords-2): Not highlight formal parameter after `|'.
7224 (vhdl-testbench-entity-file-name) 7224 (vhdl-testbench-entity-file-name)
7225 (vhdl-testbench-architecture-file-name): Allow separate 7225 (vhdl-testbench-architecture-file-name): Allow separate
7226 customization of testbench file names. 7226 customization of testbench file names.
@@ -7830,8 +7830,8 @@
7830 * subr.el (insert-for-yank-1): Doc fix. 7830 * subr.el (insert-for-yank-1): Doc fix.
7831 7831
7832 * ido.el (ido-enter-matching-directory): Rename from 7832 * ido.el (ido-enter-matching-directory): Rename from
7833 ido-enter-single-matching-directory. Change 'slash choice to 7833 ido-enter-single-matching-directory. Change `slash' choice to
7834 'only. Add 'first choice. 7834 `only'. Add `first' choice.
7835 (ido-exhibit): Adapt to above changes. 7835 (ido-exhibit): Adapt to above changes.
7836 7836
78372005-08-16 Luc Teirlinck <teirllm@auburn.edu> 78372005-08-16 Luc Teirlinck <teirllm@auburn.edu>
@@ -12091,7 +12091,7 @@
12091 included diary buffer if it was not already being visited. 12091 included diary buffer if it was not already being visited.
12092 Reported by Stephen Berman <Stephen.Berman@gmx.net>. 12092 Reported by Stephen Berman <Stephen.Berman@gmx.net>.
12093 12093
12094 * calendar/icalendar.el (top-level): Do not require 'appt. 12094 * calendar/icalendar.el (top-level): Do not require appt.
12095 12095
12096 * mail/supercite.el (sc-select-attribution): Only use a list 12096 * mail/supercite.el (sc-select-attribution): Only use a list
12097 element from sc-attrib-selection-list if it returns a string. 12097 element from sc-attrib-selection-list if it returns a string.
@@ -15398,7 +15398,7 @@
15398 15398
15399 * calendar/cal-x.el (calendar-one-frame-setup) 15399 * calendar/cal-x.el (calendar-one-frame-setup)
15400 (calendar-only-one-frame-setup, calendar-two-frame-setup): Use t 15400 (calendar-only-one-frame-setup, calendar-two-frame-setup): Use t
15401 rather than 'symbol for set-window-dedicated-p. 15401 rather than `symbol' for set-window-dedicated-p.
15402 15402
15403 * calendar/appt.el (appt-buffer-name): Make it a constant. 15403 * calendar/appt.el (appt-buffer-name): Make it a constant.
15404 (appt-add): Doc fix. 15404 (appt-add): Doc fix.
@@ -18027,10 +18027,10 @@
18027 (reftex-index-region-phrases): Add slave parameter to call of 18027 (reftex-index-region-phrases): Add slave parameter to call of
18028 `reftex-index-this-phrase'. 18028 `reftex-index-this-phrase'.
18029 (reftex-display-index): New argument redo. 18029 (reftex-display-index): New argument redo.
18030 (reftex-index-rescan): Add 'redo to arguments of 18030 (reftex-index-rescan): Add `redo' to arguments of
18031 `reftex-display-index'. 18031 `reftex-display-index'.
18032 (reftex-index-Rescan, reftex-index-revert) 18032 (reftex-index-Rescan, reftex-index-revert)
18033 (reftex-index-switch-index-tag): Add 'redo to arguments of 18033 (reftex-index-switch-index-tag): Add `redo' to arguments of
18034 `reftex-display-index'. 18034 `reftex-display-index'.
18035 (reftex-index-make-phrase-regexp): Fix bug with case-sensitive 18035 (reftex-index-make-phrase-regexp): Fix bug with case-sensitive
18036 indexing. Fix bug with matching is there is a quote before or 18036 indexing. Fix bug with matching is there is a quote before or
@@ -18097,8 +18097,8 @@
18097 18097
18098 * xt-mouse.el (xterm-mouse-translate, xterm-mouse-event): 18098 * xt-mouse.el (xterm-mouse-translate, xterm-mouse-event):
18099 Enable mouse clicks on mode-line, header-line and margin. 18099 Enable mouse clicks on mode-line, header-line and margin.
18100 (event-type): Give mouse event symbols an 'event-kind property 18100 (event-type): Give mouse event symbols an `event-kind' property
18101 with value 'mouse-click. 18101 with value `mouse-click'.
18102 18102
181032005-01-12 Juri Linkov <juri@jurta.org> 181032005-01-12 Juri Linkov <juri@jurta.org>
18104 18104