Browse Source

Remove X and fontconfig from st.c

None of the X-related includes are needed any longer.  In addition, move
the X modifier defines into x.c, as they are not used outside.

Signed-off-by: Devin J. Pohly <djpohly@gmail.com>
master
Devin J. Pohly 7 years ago
parent
commit
8b564c1a3f
3 changed files with 5 additions and 10 deletions
  1. +0
    -5
      st.c
  2. +0
    -5
      win.h
  3. +5
    -0
      x.c

+ 0
- 5
st.c View File

@ -21,13 +21,8 @@
#include <time.h>
#include <unistd.h>
#include <libgen.h>
#include <fontconfig/fontconfig.h>
#include <wchar.h>
/* X11 */
#include <X11/cursorfont.h>
#include <X11/Xft/Xft.h>
#include "st.h"
#include "win.h"


+ 0
- 5
win.h View File

@ -1,10 +1,5 @@
/* See LICENSE for license details. */
/* X modifiers */
#define XK_ANY_MOD UINT_MAX
#define XK_NO_MOD 0
#define XK_SWITCH_MOD (1<<13)
void draw(void);
void drawregion(int, int, int, int);


+ 5
- 0
x.c View File

@ -44,6 +44,11 @@ typedef struct {
signed char crlf; /* crlf mode */
} Key;
/* X modifiers */
#define XK_ANY_MOD UINT_MAX
#define XK_NO_MOD 0
#define XK_SWITCH_MOD (1<<13)
/* function definitions used in config.h */
static void clipcopy(const Arg *);
static void clippaste(const Arg *);


Loading…
Cancel
Save