]> git.eshelyaron.com Git - emacs.git/commitdiff
* progmodes/cc-vars.el (c-comment-continuation-stars):
authorStefan Monnier <monnier@iro.umontreal.ca>
Sat, 29 Aug 2009 02:07:42 +0000 (02:07 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Sat, 29 Aug 2009 02:07:42 +0000 (02:07 +0000)
* progmodes/cc-engine.el (c-looking-at-bos):
* progmodes/cc-cmds.el (c-toggle-auto-state)
(c-forward-into-nomenclature, c-backward-into-nomenclature)
(c-comment-line-break-function): Add version of obsolescence.

lisp/ChangeLog
lisp/progmodes/cc-cmds.el
lisp/progmodes/cc-engine.el
lisp/progmodes/cc-vars.el

index 0784ea8cc2ba19548556d02b3ca90b17baadf4ba..50869b07c95025ae4f74298e06bff4c025dd48e8 100644 (file)
@@ -1,3 +1,11 @@
+2009-08-29  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * progmodes/cc-vars.el (c-comment-continuation-stars):
+       * progmodes/cc-engine.el (c-looking-at-bos):
+       * progmodes/cc-cmds.el (c-toggle-auto-state)
+       (c-forward-into-nomenclature, c-backward-into-nomenclature)
+       (c-comment-line-break-function): Add version of obsolescence.
+
 2009-08-28  Juri Linkov  <juri@jurta.org>
 
        * files.el (magic-fallback-mode-alist): Add ZIP magic number
index cb88f344cc0ac79478ea213f61889e8e0fb79d91..a34c3cfc84e3cbb1e34182ccd335ae4482c42d88 100644 (file)
@@ -322,7 +322,7 @@ after special characters such as brace, comma, semi-colon, and colon."
   (c-keep-region-active))
 
 (defalias 'c-toggle-auto-state 'c-toggle-auto-newline)
-(make-obsolete 'c-toggle-auto-state 'c-toggle-auto-newline)
+(make-obsolete 'c-toggle-auto-state 'c-toggle-auto-newline "22.1")
 
 (defun c-toggle-hungry-state (&optional arg)
   "Toggle hungry-delete-key feature.
@@ -1330,14 +1330,14 @@ keyword on the line, the keyword is not inserted inside a literal, and
   (interactive "p")
   (require 'cc-subword)
   (c-forward-subword arg))
-(make-obsolete 'c-forward-into-nomenclature 'c-forward-subword)
+(make-obsolete 'c-forward-into-nomenclature 'c-forward-subword "22.1")
 
 (defun c-backward-into-nomenclature (&optional arg)
   "Compatibility alias for `c-backward-subword'."
   (interactive "p")
   (require 'cc-subword)
   (c-backward-subword arg))
-(make-obsolete 'c-backward-into-nomenclature 'c-backward-subword)
+(make-obsolete 'c-backward-into-nomenclature 'c-backward-subword "22.1")
 
 (defun c-scope-operator ()
   "Insert a double colon scope operator at point.
@@ -4431,7 +4431,7 @@ If a fill prefix is specified, it overrides all the above."
             (indent-to col))))))
 
 (defalias 'c-comment-line-break-function 'c-indent-new-comment-line)
-(make-obsolete 'c-comment-line-break-function 'c-indent-new-comment-line)
+(make-obsolete 'c-comment-line-break-function 'c-indent-new-comment-line "21.1")
 
 ;; advice for indent-new-comment-line for older Emacsen
 (unless (boundp 'comment-line-break-function)
index b2a36220a7fb4710f5ee4b051315dc38ecabe01c..24b5a9b33f1ea732cef2994d7e9b4b6a1fd4c3a7 100644 (file)
@@ -7103,7 +7103,7 @@ comment at the start of cc-engine.el for more info."
   ;;
   ;; This function might do hidden buffer changes.
   (c-at-statement-start-p))
-(make-obsolete 'c-looking-at-bos 'c-at-statement-start-p)
+(make-obsolete 'c-looking-at-bos 'c-at-statement-start-p "22.1")
 
 (defun c-looking-at-inexpr-block (lim containing-sexp &optional check-at-end)
   ;; Return non-nil if we're looking at the beginning of a block
index a1f7d3ad3f202f9447a29110483ce282f0948c22..153b73566862fe2c82071e0d019e90638dda0a77 100644 (file)
@@ -451,7 +451,7 @@ comment-only lines."
   :group 'c)
 
 (make-obsolete-variable 'c-comment-continuation-stars
-                       'c-block-comment-prefix)
+                       'c-block-comment-prefix "21.1")
 
 ;; Although c-comment-continuation-stars is obsolete, we look at it in
 ;; some places in CC Mode anyway, so make the compiler ignore it