@@ -2283,21 +2283,21 @@ your `csharp-mode-hook' function:
22832283 ; ; contains only an open-curly. In this case, insert a
22842284 ; ; summary element pair.
22852285 (preceding-line-is-empty
2286- (setq text-to-insert " / <summary>\n /// \n /// </summary>"
2286+ (setq text-to-insert " / <summary>\n /// \n /// </summary>"
22872287 flavor 1 ) )
22882288
22892289 ; ; The preceding word closed a summary element. In this case,
22902290 ; ; if the forward word does not open a remarks element, then
22912291 ; ; insert a remarks element.
22922292 ((and (string-equal word-back " summary" ) (eq char0 ?/ ) (eq char1 ?< ))
22932293 (if (not (and (string-equal word-fore " remarks" ) (eq char-0 ?< )))
2294- (setq text-to-insert " / <remarks>\n /// <para>\n /// \n /// </para>\n /// </remarks>"
2294+ (setq text-to-insert " / <remarks>\n /// <para>\n /// \n /// </para>\n /// </remarks>"
22952295 flavor 2 )))
22962296
22972297 ; ; The preceding word closed the remarks section. In this case,
22982298 ; ; insert an example element.
22992299 ((and (string-equal word-back " remarks" ) (eq char0 ?/ ) (eq char1 ?< ))
2300- (setq text-to-insert " / <example>\n /// \n /// </example>"
2300+ (setq text-to-insert " / <example>\n /// \n /// </example>"
23012301 flavor 3 ))
23022302
23032303 ; ; The preceding word closed the example section. In this
@@ -2339,7 +2339,7 @@ your `csharp-mode-hook' function:
23392339 (if (string-equal word-back " remarks" )
23402340 (setq spacer (concat spacer " " )))
23412341
2342- (setq text-to-insert (format " /%s <para>\n ///%s \n ///%s </para> "
2342+ (setq text-to-insert (format " /%s <para>\n ///%s \n ///%s </para> "
23432343 spacer spacer spacer)
23442344 flavor 6 )))
23452345
0 commit comments