Show
Ignore:
Timestamp:
06/02/07 09:29:41 (1 year ago)
Author:
miyoshi
Message:

Sync up with Emacs_22_BASE.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/lisp/textmodes/sgml-mode.el

    r4196 r4210  
    898898  (let ((inhibit-point-motion-hooks t)) 
    899899    (save-excursion 
    900       (message "Invisible tag: %s" 
    901                ;; Strip properties, otherwise, the text is invisible. 
    902                (buffer-substring-no-properties 
    903                 (point) 
    904                 (if (or (and (> x y) 
    905                              (not (eq (following-char) ?<))) 
    906                         (and (< x y) 
    907                              (eq (preceding-char) ?>))) 
    908                     (backward-list) 
    909                   (forward-list))))))) 
     900      (condition-case nil 
     901          (message "Invisible tag: %s" 
     902                   ;; Strip properties, otherwise, the text is invisible. 
     903                   (buffer-substring-no-properties 
     904                    (point) 
     905                    (if (or (and (> x y) 
     906                                 (not (eq (following-char) ?<))) 
     907                            (and (< x y) 
     908                                 (eq (preceding-char) ?>))) 
     909                        (backward-list) 
     910                      (forward-list)))) 
     911        (error nil))))) 
     912 
    910913 
    911914