aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2005-06-10 01:00:55 +0000
committerJuanma Barranquero2005-06-10 01:00:55 +0000
commit63baed9942f0dfc4d8a5b58febc26bab3f0b88d4 (patch)
tree764025fc9c3cafc667aa52397597b2d775215467
parentc62195fa74d9f195508cba3e9624717d6e2e56bb (diff)
downloademacs-63baed9942f0dfc4d8a5b58febc26bab3f0b88d4.tar.gz
emacs-63baed9942f0dfc4d8a5b58febc26bab3f0b88d4.zip
(cua-normal-cursor-color, cua-read-only-cursor-color,
cua-overwrite-cursor-color, cua-global-mark-cursor-color): Fix typos in docstrings.
-rw-r--r--lisp/ChangeLog22
-rw-r--r--lisp/emulation/cua-base.el16
2 files changed, 29 insertions, 9 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 28302d576ff..8f24016c348 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,23 @@
12005-06-10 Juanma Barranquero <lekktu@gmail.com>
2
3 * comint.el (comint-mode, comint-snapshot-last-prompt):
4 * frame.el (frame-current-scroll-bars):
5 * term.el (term-mode, term-check-proc, term-input-sender)
6 (term-simple-send, term-extract-string, term-word)
7 (term-match-partial-filename):
8 * window.el (window-current-scroll-bars):
9 * emulation/cua-base.el (cua-normal-cursor-color)
10 (cua-read-only-cursor-color, cua-overwrite-cursor-color)
11 (cua-global-mark-cursor-color):
12 * mail/undigest.el (rmail-forward-separator-regex):
13 Fix typos in docstrings.
14
15 * comint.el (comint-check-proc, make-comint-in-buffer)
16 (comint-source-default): Doc fixes.
17
18 * term.el (term-send-string): Improve argument/docstring
19 consistency.
20
12005-06-09 Luc Teirlinck <teirllm@auburn.edu> 212005-06-09 Luc Teirlinck <teirllm@auburn.edu>
2 22
3 * comint.el (comint-send-input): Bind `inhibit-read-only' around 23 * comint.el (comint-send-input): Bind `inhibit-read-only' around
@@ -9733,7 +9753,7 @@
9733 * toolbar/tool-bar.el (tool-bar-setup): Tool bar item dired uses 9753 * toolbar/tool-bar.el (tool-bar-setup): Tool bar item dired uses
9734 icon diropen. New tool bar item find-file-existing uses icon open. 9754 icon diropen. New tool bar item find-file-existing uses icon open.
9735 9755
9736 * dired.el (dired-read-dir-and-switches): Call read-driectory-name 9756 * dired.el (dired-read-dir-and-switches): Call read-directory-name
9737 instead of read-file-name. 9757 instead of read-file-name.
9738 9758
97392004-11-02 Ulf Jasper <ulf.jasper@web.de> 97592004-11-02 Ulf Jasper <ulf.jasper@web.de>
diff --git a/lisp/emulation/cua-base.el b/lisp/emulation/cua-base.el
index fe2b0a892a8..ecd75773648 100644
--- a/lisp/emulation/cua-base.el
+++ b/lisp/emulation/cua-base.el
@@ -447,13 +447,13 @@ a cons (TYPE . COLOR), then both properties are affected."
447 (choice :tag "Type" 447 (choice :tag "Type"
448 (const :tag "Filled box" box) 448 (const :tag "Filled box" box)
449 (const :tag "Vertical bar" bar) 449 (const :tag "Vertical bar" bar)
450 (const :tag "Horisontal bar" hbar) 450 (const :tag "Horizontal bar" hbar)
451 (const :tag "Hollow box" hollow)) 451 (const :tag "Hollow box" hollow))
452 (cons :tag "Color and Type" 452 (cons :tag "Color and Type"
453 (choice :tag "Type" 453 (choice :tag "Type"
454 (const :tag "Filled box" box) 454 (const :tag "Filled box" box)
455 (const :tag "Vertical bar" bar) 455 (const :tag "Vertical bar" bar)
456 (const :tag "Horisontal bar" hbar) 456 (const :tag "Horizontal bar" hbar)
457 (const :tag "Hollow box" hollow)) 457 (const :tag "Hollow box" hollow))
458 (color :tag "Color"))) 458 (color :tag "Color")))
459 :group 'cua) 459 :group 'cua)
@@ -471,13 +471,13 @@ a cons (TYPE . COLOR), then both properties are affected."
471 (choice :tag "Type" 471 (choice :tag "Type"
472 (const :tag "Filled box" box) 472 (const :tag "Filled box" box)
473 (const :tag "Vertical bar" bar) 473 (const :tag "Vertical bar" bar)
474 (const :tag "Horisontal bar" hbar) 474 (const :tag "Horizontal bar" hbar)
475 (const :tag "Hollow box" hollow)) 475 (const :tag "Hollow box" hollow))
476 (cons :tag "Color and Type" 476 (cons :tag "Color and Type"
477 (choice :tag "Type" 477 (choice :tag "Type"
478 (const :tag "Filled box" box) 478 (const :tag "Filled box" box)
479 (const :tag "Vertical bar" bar) 479 (const :tag "Vertical bar" bar)
480 (const :tag "Horisontal bar" hbar) 480 (const :tag "Horizontal bar" hbar)
481 (const :tag "Hollow box" hollow)) 481 (const :tag "Hollow box" hollow))
482 (color :tag "Color"))) 482 (color :tag "Color")))
483 :group 'cua) 483 :group 'cua)
@@ -495,13 +495,13 @@ a cons (TYPE . COLOR), then both properties are affected."
495 (choice :tag "Type" 495 (choice :tag "Type"
496 (const :tag "Filled box" box) 496 (const :tag "Filled box" box)
497 (const :tag "Vertical bar" bar) 497 (const :tag "Vertical bar" bar)
498 (const :tag "Horisontal bar" hbar) 498 (const :tag "Horizontal bar" hbar)
499 (const :tag "Hollow box" hollow)) 499 (const :tag "Hollow box" hollow))
500 (cons :tag "Color and Type" 500 (cons :tag "Color and Type"
501 (choice :tag "Type" 501 (choice :tag "Type"
502 (const :tag "Filled box" box) 502 (const :tag "Filled box" box)
503 (const :tag "Vertical bar" bar) 503 (const :tag "Vertical bar" bar)
504 (const :tag "Horisontal bar" hbar) 504 (const :tag "Horizontal bar" hbar)
505 (const :tag "Hollow box" hollow)) 505 (const :tag "Hollow box" hollow))
506 (color :tag "Color"))) 506 (color :tag "Color")))
507 :group 'cua) 507 :group 'cua)
@@ -520,13 +520,13 @@ a cons (TYPE . COLOR), then both properties are affected."
520 (choice :tag "Type" 520 (choice :tag "Type"
521 (const :tag "Filled box" box) 521 (const :tag "Filled box" box)
522 (const :tag "Vertical bar" bar) 522 (const :tag "Vertical bar" bar)
523 (const :tag "Horisontal bar" hbar) 523 (const :tag "Horizontal bar" hbar)
524 (const :tag "Hollow box" hollow)) 524 (const :tag "Hollow box" hollow))
525 (cons :tag "Color and Type" 525 (cons :tag "Color and Type"
526 (choice :tag "Type" 526 (choice :tag "Type"
527 (const :tag "Filled box" box) 527 (const :tag "Filled box" box)
528 (const :tag "Vertical bar" bar) 528 (const :tag "Vertical bar" bar)
529 (const :tag "Horisontal bar" hbar) 529 (const :tag "Horizontal bar" hbar)
530 (const :tag "Hollow box" hollow)) 530 (const :tag "Hollow box" hollow))
531 (color :tag "Color"))) 531 (color :tag "Color")))
532 :group 'cua) 532 :group 'cua)