aboutsummaryrefslogtreecommitdiff
path: root/elisp.c
diff options
context:
space:
mode:
authorjixiuf <jixiuf@qq.com>2019-07-26 23:08:15 +0800
committerjixiuf <jixiuf@qq.com>2019-07-26 23:08:15 +0800
commitfb29e140ae41661137a57fae1d934b1b5b6bcf5e (patch)
tree81d24c9b0ab18434b1ff9be6681bd6fbd304ab3d /elisp.c
parentc209a86e869bb3e91ad94541dbcfd3039ef1d2eb (diff)
Revert "trying support blink-cursor-mode"
This reverts commit 74b8e5cb2d1c6798c42e56ae444e5e96c629f2c5.
Diffstat (limited to 'elisp.c')
-rw-r--r--elisp.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/elisp.c b/elisp.c
index 5cb5bdf..3fe511f 100644
--- a/elisp.c
+++ b/elisp.c
@@ -108,11 +108,6 @@ void set_cursor_type(emacs_env *env, emacs_value QCursorType) {
env->funcall(env, Fset, 2, (emacs_value[]){Qcursor_type, QCursorType});
}
-void toggle_cursor_blinking(emacs_env *env, bool blinking) {
- emacs_value Qfalse = env->make_integer(env, -1);
- emacs_value Qblinking = blinking ? Qt : Qfalse;
- env->funcall(env, Fblink_cursor_mode, 1, (emacs_value[]){Qblinking});
-}
emacs_value get_hex_color_fg(emacs_env *env, emacs_value face) {
return env->funcall(env, Fvterm_face_color_hex, 2,