# HG changeset patch # User Stefan Monnier # Date 983923430 0 # Node ID 8e1755c3dd2ba6172fffdf9bed1c6c726c55bcbd # Parent 559c21c0863b1afba47d25679ee7aa41807ea1fc (sgml-mode-common): Correct value of comment-start-skip and set comment-end-skip as well. (sgml-comment-indent): Fix for new value of comment-start-skip. (html-autoview-mode): Don't bother using make-local-hook. diff -r 559c21c0863b -r 8e1755c3dd2b lisp/textmodes/sgml-mode.el --- a/lisp/textmodes/sgml-mode.el Tue Mar 06 23:54:13 2001 +0000 +++ b/lisp/textmodes/sgml-mode.el Wed Mar 07 00:03:50 2001 +0000 @@ -304,7 +304,6 @@ (make-local-variable 'comment-start) (make-local-variable 'comment-end) (make-local-variable 'comment-indent-function) - (make-local-variable 'comment-start-skip) (make-local-variable 'comment-indent-function) (make-local-variable 'sgml-tags-invisible) (make-local-variable 'skeleton-transformation) @@ -336,9 +335,6 @@ comment-start "" comment-indent-function 'sgml-comment-indent - ;; This will allow existing comments within declarations to be - ;; recognized. - comment-start-skip "--[ \t]*" skeleton-transformation sgml-transformation skeleton-further-elements '((completion-ignore-case t)) skeleton-end-hook (lambda () @@ -355,10 +351,12 @@ nil t) facemenu-add-face-function 'sgml-mode-facemenu-add-face-function) - (while sgml-display-text - (put (car (car sgml-display-text)) 'before-string - (cdr (car sgml-display-text))) - (setq sgml-display-text (cdr sgml-display-text)))) + ;; This will allow existing comments within declarations to be + ;; recognized. + (set (make-local-variable 'comment-start-skip) "\\(?:\\)?") + (dolist (pair sgml-display-text) + (put (car pair) 'before-string (cdr pair)))) (defun sgml-mode-facemenu-add-face-function (face end) @@ -371,7 +369,7 @@ ;;;###autoload -(defun sgml-mode (&optional function) +(defun sgml-mode () "Major mode for editing SGML documents. Makes > match <. Makes / blink matching /. Keys <, &, SPC within <>, \" and ' can be electric depending on @@ -404,13 +402,7 @@ (defun sgml-comment-indent () - (if (and (looking-at "--") - (not (and (eq (preceding-char) ?!) - (eq (char-after (- (point) 2)) ?<)))) - (progn - (skip-chars-backward " \t") - (max comment-column (1+ (current-column)))) - 0)) + (if (looking-at "--") comment-column 0)) @@ -509,24 +501,23 @@ If you like tags and attributes in uppercase do \\[set-variable] skeleton-transformation RET upcase RET, or put this in your `.emacs': (setq sgml-transformation 'upcase)" - (funcall skeleton-transformation - (completing-read "Tag: " sgml-tag-alist)) - ?< (setq v1 (eval str)) | + (completing-read "Tag: " sgml-tag-alist) + ?< str | (("") -1 '(undo-boundary) (identity "<")) | ; see comment above - (("") '(setq v2 (sgml-attributes v1 t)) ?> - (if (string= "![" v1) - (prog1 '(("") " [ " _ " ]]") - (backward-char)) - (if (or (eq v2 t) - (string-match "^[/!?]" v1)) - () - (if (symbolp v2) - '(("") v2 _ v2 ") - (if (eq (car v2) t) - (cons '("") (cdr v2)) - (append '(("") (car v2)) - (cdr v2) - '(resume: (car v2) _ ")))))))) + `(("") '(setq v2 (sgml-attributes ,str t)) ?> + (if (string= "![" ,str) + (prog1 '(("") " [ " _ " ]]") + (backward-char)) + (if (or (eq v2 t) + (string-match "^[/!?]" ,str)) + () + (if (symbolp v2) + '(("") v2 _ v2 ") + (if (eq (car v2) t) + (cons '("") (cdr v2)) + (append '(("") (car v2)) + (cdr v2) + '(resume: (car v2) _ ")))))))) (autoload 'skeleton-read "skeleton") @@ -1261,7 +1252,6 @@ (and (boundp 'after-save-hook) (memq 'browse-url-of-buffer after-save-hook)))) (setq after-save-hook (delq 'browse-url-of-buffer after-save-hook)) - (make-local-hook 'after-save-hook) (add-hook 'after-save-hook 'browse-url-of-buffer nil t)) (message "Autoviewing turned %s." (if arg "off" "on")))