Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
cb92c150
Commit
cb92c150
authored
Feb 24, 2009
by
Glenn Morris
Browse files
(flyspell-use-meta-tab): Add a custom :set function. (Bug#2429)
parent
2c7d1565
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
1 deletion
+11
-1
lisp/ChangeLog
lisp/ChangeLog
+3
-0
lisp/textmodes/flyspell.el
lisp/textmodes/flyspell.el
+8
-1
No files found.
lisp/ChangeLog
View file @
cb92c150
2009-02-24 Glenn Morris <rgm@gnu.org>
* textmodes/flyspell.el (flyspell-use-meta-tab): Add a custom
:set function. (Bug#2429)
* eshell/esh-util.el (eshell-parse-ange-ls): Define `name' before
potential use.
...
...
lisp/textmodes/flyspell.el
View file @
cb92c150
...
...
@@ -262,10 +262,17 @@ If `flyspell-large-region' is nil, all regions are treated as small."
:group
'flyspell
:type
'
(
choice
string
(
const
nil
)))
(
defvar
flyspell-mode-map
)
(
defcustom
flyspell-use-meta-tab
t
"Non-nil means that flyspell uses M-TAB to correct word."
:group
'flyspell
:type
'boolean
)
:type
'boolean
:initialize
'custom-initialize-default
:set
(
lambda
(
sym
val
)
(
define-key
flyspell-mode-map
"\M-\t"
(
if
(
set
sym
val
)
'flyspell-auto-correct-word
))))
(
defcustom
flyspell-auto-correct-binding
[
(
control
?\;
)
]
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment