Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
78f196e3
Commit
78f196e3
authored
Jan 04, 2015
by
jave
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cleanups
parent
a7e2c92d
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
2 additions
and
23 deletions
+2
-23
src/window.c
src/window.c
+0
-3
src/xdisp.c
src/xdisp.c
+1
-20
src/xterm.c
src/xterm.c
+1
-0
No files found.
src/window.c
View file @
78f196e3
...
...
@@ -44,9 +44,6 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
#ifdef MSDOS
#include "msdos.h"
#endif
#ifdef HAVE_NS
#include "nsterm.h"
#endif
#ifdef HAVE_XWIDGETS
#include "xwidget.h"
#endif
...
...
src/xdisp.c
View file @
78f196e3
...
...
@@ -318,7 +318,6 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
#include TERM_HEADER
#endif /* HAVE_WINDOW_SYSTEM */
#include "font.h"
#ifdef HAVE_XWIDGETS
#include "xwidget.h"
#endif
...
...
@@ -7701,6 +7700,7 @@ set_iterator_to_next (struct it *it, int reseat_p)
goto consider_string_end;
break;
#endif
default:
/* There are no other methods defined, so this should be a bug. */
emacs_abort ();
...
...
@@ -13831,13 +13831,6 @@ redisplay_internal (void)
*w->desired_matrix->method = 0;
debug_method_add (w, "optimization 1");
#endif
#if HAVE_XWIDGETS
//debug optimization movement issue
//w->desired_matrix->no_scrolling_p = 1;
//*w->desired_matrix->method = 0;
//debug_method_add (w, "optimization 1");
#endif
#ifdef HAVE_WINDOW_SYSTEM
update_window_fringes (w, 0);
#endif
...
...
@@ -17084,11 +17077,6 @@ try_window (Lisp_Object window, struct text_pos pos, int flags)
if (f->fonts_changed && !(flags & TRY_WINDOW_IGNORE_FONTS_CHANGE))
return 0;
}
#ifdef HAVE_XWIDGETS_xxx
//currently this is needed to detect xwidget movement reliably. or probably not.
printf("try_window\n");
return 0;
#endif
/* Don't let the cursor end in the scroll margins. */
if ((flags & TRY_WINDOW_CHECK_MARGINS)
...
...
@@ -17949,13 +17937,6 @@ try_window_id (struct window *w)
return 0;
#endif
#ifdef HAVE_XWIDGETS_xxx
//maybe needed for proper xwidget movement
printf("try_window_id\n");
return -1;
#endif
/* This is handy for debugging. */
#if 0
#define GIVE_UP(X) \
...
...
src/xterm.c
View file @
78f196e3
...
...
@@ -8033,6 +8033,7 @@ x_draw_bar_cursor (struct window *w, struct glyph_row *row, int width, enum text
cursor_glyph = get_phys_cursor_glyph (w);
if (cursor_glyph == NULL)
return;
#ifdef HAVE_XWIDGETS
if (cursor_glyph->type == XWIDGET_GLYPH){
printf("tried avoiding xwidget cursor\n");
...
...
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