all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* Strange behaviour of auto-fill
@ 2021-04-23 21:42 michael-franzese
  2021-04-23 22:20 ` Christopher Dimech
  2021-04-23 23:21 ` Christopher Dimech
  0 siblings, 2 replies; 7+ messages in thread
From: michael-franzese @ 2021-04-23 21:42 UTC (permalink / raw)
  To: Help Gnu Emacs

I am trying to set "auto-fill", with some tools to change "on-off" behaviour.

Things get very confusing.  When I comment out "(setq-default auto-fill-function 'do-auto-fill)", "auto-fill-mode" will still break comments even though "break-line" is "0"
and one sets "(auto-fill-mode 0)".



(setq-default auto-fill-function 'do-auto-fill)
(defvar break-line 0)

(defun break-line-ddd ()
  "Breaks long lines using auto-fill tool."
  (interactive)

  (pcase break-line
    ((or 'nil 0)
       (setq comment-auto-fill-only-comments nil)
       (auto-fill-mode 0)
       (message "%s %s"
		"Disable: Break line;  " break-line)
       (setq break-line 1))
    (1
       (setq fill-column 72)
       (setq comment-auto-fill-only-comments t)
       (auto-fill-mode 1)
       (message "%s" "Enable: Break only comments")
       (setq break-line 2))
    (_
       (setq comment-auto-fill-only-comments nil)
       (auto-fill-mode 1)
       (message "%s" "Enable: Break all long lines")
       (setq break-line 0)) ))

(defun break-line-set ()
  "Breaks long lines using auto-fill."
  (break-line-ddd)
  (global-set-key (kbd "H-b") #'break-line-ddd) )

(break-line-set)




^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2021-04-24  0:59 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-04-23 21:42 Strange behaviour of auto-fill michael-franzese
2021-04-23 22:20 ` Christopher Dimech
2021-04-23 23:21 ` Christopher Dimech
2021-04-23 23:23   ` michael-franzese
2021-04-23 23:36     ` Christopher Dimech
2021-04-24  0:47     ` michael-franzese
2021-04-24  0:59     ` michael-franzese

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.