aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2014-02-21 17:18:56 +0100
committerJuanma Barranquero2014-02-21 17:18:56 +0100
commit612ddfc0967c37fb36c3a6e7912b23e149678caa (patch)
treea7855da748ad85f1c3e7ec61aac75c0dc2db3830
parentcb8f50a75c7192c54758e4563cf3386f80579e55 (diff)
downloademacs-612ddfc0967c37fb36c3a6e7912b23e149678caa.tar.gz
emacs-612ddfc0967c37fb36c3a6e7912b23e149678caa.zip
lisp/whitespace.el: End obsolescence messages with dot.
(whitespace-space, whitespace-hspace, whitespace-tab) (whitespace-newline, whitespace-trailing, whitespace-line) (whitespace-space-before-tab, whitespace-indentation, whitespace-empty) (whitespace-space-after-tab): Fix typo in docstrings.
-rw-r--r--lisp/ChangeLog7
-rw-r--r--lisp/whitespace.el20
2 files changed, 17 insertions, 10 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index de4fe916046..082bcd12f98 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,10 @@
12014-02-21 Juanma Barranquero <lekktu@gmail.com>
2
3 * whitespace.el (whitespace-space, whitespace-hspace, whitespace-tab)
4 (whitespace-newline, whitespace-trailing, whitespace-line)
5 (whitespace-space-before-tab, whitespace-indentation, whitespace-empty)
6 (whitespace-space-after-tab): Fix typo in docstrings.
7
12014-02-21 Dmitry Gutov <dgutov@yandex.ru> 82014-02-21 Dmitry Gutov <dgutov@yandex.ru>
2 9
3 * progmodes/ruby-mode.el (auto-mode-alist): Add missing "or". 10 * progmodes/ruby-mode.el (auto-mode-alist): Add missing "or".
diff --git a/lisp/whitespace.el b/lisp/whitespace.el
index 3208c578fe7..83bd4e06074 100644
--- a/lisp/whitespace.el
+++ b/lisp/whitespace.el
@@ -557,7 +557,7 @@ See also `whitespace-display-mappings' for documentation."
557(defvar whitespace-space 'whitespace-space 557(defvar whitespace-space 'whitespace-space
558 "Symbol face used to visualize SPACE. 558 "Symbol face used to visualize SPACE.
559Used when `whitespace-style' includes the value `spaces'.") 559Used when `whitespace-style' includes the value `spaces'.")
560(make-obsolete-variable 'whitespace-space "use the face instead" "24.4") 560(make-obsolete-variable 'whitespace-space "use the face instead." "24.4")
561 561
562 562
563(defface whitespace-space 563(defface whitespace-space
@@ -573,7 +573,7 @@ Used when `whitespace-style' includes the value `spaces'.")
573(defvar whitespace-hspace 'whitespace-hspace 573(defvar whitespace-hspace 'whitespace-hspace
574 "Symbol face used to visualize HARD SPACE. 574 "Symbol face used to visualize HARD SPACE.
575Used when `whitespace-style' includes the value `spaces'.") 575Used when `whitespace-style' includes the value `spaces'.")
576(make-obsolete-variable 'whitespace-hspace "use the face instead" "24.4") 576(make-obsolete-variable 'whitespace-hspace "use the face instead." "24.4")
577 577
578(defface whitespace-hspace ; 'nobreak-space 578(defface whitespace-hspace ; 'nobreak-space
579 '((((class color) (background dark)) 579 '((((class color) (background dark))
@@ -588,7 +588,7 @@ Used when `whitespace-style' includes the value `spaces'.")
588(defvar whitespace-tab 'whitespace-tab 588(defvar whitespace-tab 'whitespace-tab
589 "Symbol face used to visualize TAB. 589 "Symbol face used to visualize TAB.
590Used when `whitespace-style' includes the value `tabs'.") 590Used when `whitespace-style' includes the value `tabs'.")
591(make-obsolete-variable 'whitespace-tab "use the face instead" "24.4") 591(make-obsolete-variable 'whitespace-tab "use the face instead." "24.4")
592 592
593(defface whitespace-tab 593(defface whitespace-tab
594 '((((class color) (background dark)) 594 '((((class color) (background dark))
@@ -605,7 +605,7 @@ Used when `whitespace-style' includes the value `tabs'.")
605See `whitespace-display-mappings'. 605See `whitespace-display-mappings'.
606Used when `whitespace-style' includes the values `newline-mark' 606Used when `whitespace-style' includes the values `newline-mark'
607and `newline'.") 607and `newline'.")
608(make-obsolete-variable 'whitespace-newline "use the face instead" "24.4") 608(make-obsolete-variable 'whitespace-newline "use the face instead." "24.4")
609 609
610(defface whitespace-newline 610(defface whitespace-newline
611 '((default :weight normal) 611 '((default :weight normal)
@@ -624,7 +624,7 @@ See `whitespace-display-mappings'."
624(defvar whitespace-trailing 'whitespace-trailing 624(defvar whitespace-trailing 'whitespace-trailing
625 "Symbol face used to visualize trailing blanks. 625 "Symbol face used to visualize trailing blanks.
626Used when `whitespace-style' includes the value `trailing'.") 626Used when `whitespace-style' includes the value `trailing'.")
627(make-obsolete-variable 'whitespace-trailing "use the face instead" "24.4") 627(make-obsolete-variable 'whitespace-trailing "use the face instead." "24.4")
628 628
629(defface whitespace-trailing ; 'trailing-whitespace 629(defface whitespace-trailing ; 'trailing-whitespace
630 '((default :weight bold) 630 '((default :weight bold)
@@ -638,7 +638,7 @@ Used when `whitespace-style' includes the value `trailing'.")
638 "Symbol face used to visualize \"long\" lines. 638 "Symbol face used to visualize \"long\" lines.
639See `whitespace-line-column'. 639See `whitespace-line-column'.
640Used when `whitespace-style' includes the value `line'.") 640Used when `whitespace-style' includes the value `line'.")
641(make-obsolete-variable 'whitespace-line "use the face instead" "24.4") 641(make-obsolete-variable 'whitespace-line "use the face instead." "24.4")
642 642
643(defface whitespace-line 643(defface whitespace-line
644 '((((class mono)) :inverse-video t :weight bold :underline t) 644 '((((class mono)) :inverse-video t :weight bold :underline t)
@@ -653,7 +653,7 @@ See `whitespace-line-column'."
653 "Symbol face used to visualize SPACEs before TAB. 653 "Symbol face used to visualize SPACEs before TAB.
654Used when `whitespace-style' includes the value `space-before-tab'.") 654Used when `whitespace-style' includes the value `space-before-tab'.")
655(make-obsolete-variable 'whitespace-space-before-tab 655(make-obsolete-variable 'whitespace-space-before-tab
656 "use the face instead" "24.4") 656 "use the face instead." "24.4")
657 657
658(defface whitespace-space-before-tab 658(defface whitespace-space-before-tab
659 '((((class mono)) :inverse-video t :weight bold :underline t) 659 '((((class mono)) :inverse-video t :weight bold :underline t)
@@ -665,7 +665,7 @@ Used when `whitespace-style' includes the value `space-before-tab'.")
665(defvar whitespace-indentation 'whitespace-indentation 665(defvar whitespace-indentation 'whitespace-indentation
666 "Symbol face used to visualize 8 or more SPACEs at beginning of line. 666 "Symbol face used to visualize 8 or more SPACEs at beginning of line.
667Used when `whitespace-style' includes the value `indentation'.") 667Used when `whitespace-style' includes the value `indentation'.")
668(make-obsolete-variable 'whitespace-indentation "use the face instead" "24.4") 668(make-obsolete-variable 'whitespace-indentation "use the face instead." "24.4")
669 669
670(defface whitespace-indentation 670(defface whitespace-indentation
671 '((((class mono)) :inverse-video t :weight bold :underline t) 671 '((((class mono)) :inverse-video t :weight bold :underline t)
@@ -677,7 +677,7 @@ Used when `whitespace-style' includes the value `indentation'.")
677(defvar whitespace-empty 'whitespace-empty 677(defvar whitespace-empty 'whitespace-empty
678 "Symbol face used to visualize empty lines at beginning and/or end of buffer. 678 "Symbol face used to visualize empty lines at beginning and/or end of buffer.
679Used when `whitespace-style' includes the value `empty'.") 679Used when `whitespace-style' includes the value `empty'.")
680(make-obsolete-variable 'whitespace-empty "use the face instead" "24.4") 680(make-obsolete-variable 'whitespace-empty "use the face instead." "24.4")
681 681
682(defface whitespace-empty 682(defface whitespace-empty
683 '((((class mono)) :inverse-video t :weight bold :underline t) 683 '((((class mono)) :inverse-video t :weight bold :underline t)
@@ -690,7 +690,7 @@ Used when `whitespace-style' includes the value `empty'.")
690 "Symbol face used to visualize 8 or more SPACEs after TAB. 690 "Symbol face used to visualize 8 or more SPACEs after TAB.
691Used when `whitespace-style' includes the value `space-after-tab'.") 691Used when `whitespace-style' includes the value `space-after-tab'.")
692(make-obsolete-variable 'whitespace-space-after-tab 692(make-obsolete-variable 'whitespace-space-after-tab
693 "use the face instead" "24.4") 693 "use the face instead." "24.4")
694 694
695(defface whitespace-space-after-tab 695(defface whitespace-space-after-tab
696 '((((class mono)) :inverse-video t :weight bold :underline t) 696 '((((class mono)) :inverse-video t :weight bold :underline t)