(message-fix-before-sending): Enable invisible checking.
authorkeiichi <keiichi>
Thu, 15 Jun 2000 07:45:20 +0000 (07:45 +0000)
committerkeiichi <keiichi>
Thu, 15 Jun 2000 07:45:20 +0000 (07:45 +0000)
lisp/message.el

index 8c2fa23..c6e698b 100644 (file)
@@ -2302,11 +2302,11 @@ It should typically alter the sending method in some way or other."
   (unless (bolp)
     (insert "\n"))
   ;; Make all invisible text visible.
-  ;;(when (text-property-any (point-min) (point-max) 'invisible t)
-  ;;  (put-text-property (point-min) (point-max) 'invisible nil)
-  ;;  (unless (yes-or-no-p "Invisible text found and made visible; continue posting?")
-  ;;    (error "Invisible text found and made visible")))
-  )
+  (when (text-property-any (point-min) (point-max) 'invisible t)
+    (put-text-property (point-min) (point-max) 'invisible nil)
+    (unless (yes-or-no-p
+            "Invisible text found and made visible; continue posting?")
+      (error "Invisible text found and made visible"))))
 
 (defun message-add-action (action &rest types)
   "Add ACTION to be performed when doing an exit of type TYPES."