Function: f90-backslash-not-special
f90-backslash-not-special is a byte-compiled function defined in
f90.el.gz.
This function is obsolete since 28.1.
Signature
(f90-backslash-not-special &optional ALL)
Documentation
Make the backslash character (\) be non-special in the current buffer.
This is the default in f90-mode.
With optional argument ALL, change the default for all present and future F90 buffers.
Probably introduced at or before Emacs version 22.1.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/f90.el.gz
(defun f90-backslash-not-special (&optional all)
"Make the backslash character (\\) be non-special in the current buffer.
This is the default in `f90-mode'.
With optional argument ALL, change the default for all present
and future F90 buffers."
(declare (obsolete nil "28.1"))
(or (derived-mode-p 'f90-mode)
(user-error "This function should only be used in F90 buffers"))
(when (equal (char-syntax ?\\ ) ?\\ )
(or all (set-syntax-table (copy-syntax-table (syntax-table))))
(modify-syntax-entry ?\\ ".")))