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
fb6b6049
Commit
fb6b6049
authored
Jul 13, 2009
by
Kenichi Handa
Browse files
(internal_self_insert): Check sym by SYMBOLP before
calling XSYMBOL (sym).
parent
7b607b73
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletion
+6
-1
src/ChangeLog
src/ChangeLog
+5
-0
src/cmds.c
src/cmds.c
+1
-1
No files found.
src/ChangeLog
View file @
fb6b6049
2009-07-13 Kenichi Handa <handa@m17n.org>
* cmds.c (internal_self_insert): Check sym by SYMBOLP before
calling XSYMBOL (sym).
2009-07-11 Eli Zaretskii <eliz@gnu.org>
* dired.c (directory_files_internal_w32_unwind) [WINDOWSNT]: New
...
...
src/cmds.c
View file @
fb6b6049
...
...
@@ -492,7 +492,7 @@ internal_self_insert (c, noautofill)
/* If we expanded an abbrev which has a hook,
and the hook has a non-nil `no-self-insert' property,
return right away--don't really self-insert. */
if
(
!
NILP
(
sym
)
&&
!
NILP
(
XSYMBOL
(
sym
)
->
function
)
if
(
SYMBOLP
(
sym
)
&&
!
NILP
(
sym
)
&&
!
NILP
(
XSYMBOL
(
sym
)
->
function
)
&&
SYMBOLP
(
XSYMBOL
(
sym
)
->
function
))
{
Lisp_Object
prop
;
...
...
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