]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix fill-paragraph in asm-mode
authorMattias M <mattias@marka.ee>
Thu, 28 Jan 2021 06:34:10 +0000 (07:34 +0100)
committerLars Ingebrigtsen <larsi@gnus.org>
Thu, 28 Jan 2021 06:34:10 +0000 (07:34 +0100)
* lisp/progmodes/asm-mode.el: The value of fill-prefix ought to be nil
not "\t" so that fill-context-prefix can do its thing. In fact,
fill-prefix does not have to be set at all becuase asm-mode derives
from prog-mode and fill-prefix is set in simple.el.

* test/lisp/progmodes/asm-mode-tests.el: Add relevant test (bug#41064).

Copyright-paperwork-exempt: yes

lisp/progmodes/asm-mode.el
test/lisp/progmodes/asm-mode-tests.el

index 62ff783fbac0712dc1b1d9886b59bc1597545a84..99b2ec6d87e53aab1fab652919354cabe683f0bf 100644 (file)
@@ -141,8 +141,7 @@ Special commands:
   (setq-local comment-add 1)
   (setq-local comment-start-skip "\\(?:\\s<+\\|/[/*]+\\)[ \t]*")
   (setq-local comment-end-skip "[ \t]*\\(\\s>\\|\\*+/\\)")
-  (setq-local comment-end "")
-  (setq fill-prefix "\t"))
+  (setq-local comment-end ""))
 
 (defun asm-indent-line ()
   "Auto-indent the current line."
index 6ae4fdf58501f4424a8cee1a97d4eb364f61b011..87872179d9306f0692b8aa07e38cd03025c3ab96 100644 (file)
     (should (string-match-p ";;; \nlabel:" (buffer-string)))
     (should (= (current-column) 4))))
 
+(ert-deftest asm-mode-tests-fill-comment ()
+  (asm-mode-tests--with-temp-buffer
+    (call-interactively #'comment-dwim)
+    (insert "Pellentesque condimentum, magna ut suscipit hendrerit, \
+ipsum augue ornare nulla, non luctus diam neque sit amet urna.")
+    (call-interactively #'fill-paragraph)
+    (should (equal (buffer-string) "\t;; Pellentesque condimentum, \
+magna ut suscipit hendrerit,\n\t;; ipsum augue ornare nulla, non \
+luctus diam neque sit amet\n\t;; urna."))))
+
 ;;; asm-mode-tests.el ends here