| | 771 | // Undefine bang methods. |
| | 772 | rb_undef_method(rb_cSymbol, "upcase!"); |
| | 773 | rb_undef_method(rb_cSymbol, "capitalize!"); |
| | 774 | rb_undef_method(rb_cSymbol, "chomp!"); |
| | 775 | rb_undef_method(rb_cSymbol, "chop!"); |
| | 776 | rb_undef_method(rb_cSymbol, "delete!"); |
| | 777 | rb_undef_method(rb_cSymbol, "downcase!"); |
| | 778 | rb_undef_method(rb_cSymbol, "encode!"); |
| | 779 | rb_undef_method(rb_cSymbol, "gsub!"); |
| | 780 | rb_undef_method(rb_cSymbol, "lstrip!"); |
| | 781 | rb_undef_method(rb_cSymbol, "rstrip!"); |
| | 782 | rb_undef_method(rb_cSymbol, "next!"); |
| | 783 | rb_undef_method(rb_cSymbol, "reverse!"); |
| | 784 | rb_undef_method(rb_cSymbol, "slice!"); |
| | 785 | rb_undef_method(rb_cSymbol, "squeeze!"); |
| | 786 | rb_undef_method(rb_cSymbol, "strip!"); |
| | 787 | rb_undef_method(rb_cSymbol, "sub!"); |
| | 788 | rb_undef_method(rb_cSymbol, "succ!"); |
| | 789 | rb_undef_method(rb_cSymbol, "swapcase!"); |
| | 790 | rb_undef_method(rb_cSymbol, "tr!"); |
| | 791 | rb_undef_method(rb_cSymbol, "tr_s!"); |
| | 792 | |
| | 793 | |