the line will be too long for people to read comfortably, and this can
make the text seem clumsy.
-The default value for @code{fill-column} is 70.
+The default value for @code{fill-column} is 70. To disable Auto Fill
+mode in a specific mode, you could say something like:
+
+@lisp
+(add-hook 'foo-mode-hook (lambda () (auto-fill-mode -1))
+@end lisp
@end defopt
@deffn Command set-left-margin from to margin
The original key binding was 'M-s', which interfered with I-search,
since the latter uses 'M-s' as a prefix key of the search prefix map.
+---
** In 'f90-mode', the backslash character ('\') no longer escapes.
For about a decade, the backslash character has no longer had a
special escape syntax in Fortran F90. To get the old behavior back,
(modify-syntax-entry ?\\ "\\" f90-mode-syntax-table)
++++
** Setting 'fill-column' to nil is obsolete.
This undocumented use of 'fill-column' is now obsolete. To disable
auto filling, turn off 'auto-fill-mode' instead.