]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix a typo in xterm.c and w32term.c
authorEli Zaretskii <eliz@gnu.org>
Mon, 1 Apr 2019 14:39:30 +0000 (17:39 +0300)
committerEli Zaretskii <eliz@gnu.org>
Mon, 1 Apr 2019 14:39:30 +0000 (17:39 +0300)
* src/xterm.c (x_window_to_scroll_bar):
* src/w32term.c (x_window_to_scroll_bar): Fix a typo.

src/w32term.c
src/xterm.c

index 4d5f2e7c3ccfd6c140cd7d8ec165203fc21cee22..7dbeda7a7166457067698f808e8510669cb37f4d 100644 (file)
@@ -3690,7 +3690,7 @@ x_window_to_scroll_bar (Window window_id, int type)
                               ! NILP (bar));
           bar = XSCROLL_BAR (bar)->next)
        if (SCROLL_BAR_W32_WINDOW (XSCROLL_BAR (bar)) == window_id
-           && (type = 2
+           && (type == 2
                || (type == 1 && XSCROLL_BAR (bar)->horizontal)
                || (type == 0 && !XSCROLL_BAR (bar)->horizontal)))
          return XSCROLL_BAR (bar);
index f90d6713b0232abbf99ae8511e973f04b537bacf..2f830afe61b5e64ed1c5f33d73f23d8fdc295cdb 100644 (file)
@@ -5343,7 +5343,7 @@ x_window_to_scroll_bar (Display *display, Window window_id, int type)
           bar = XSCROLL_BAR (bar)->next)
        if (XSCROLL_BAR (bar)->x_window == window_id
             && FRAME_X_DISPLAY (XFRAME (frame)) == display
-           && (type = 2
+           && (type == 2
                || (type == 1 && XSCROLL_BAR (bar)->horizontal)
                || (type == 0 && !XSCROLL_BAR (bar)->horizontal)))
          return XSCROLL_BAR (bar);