Remove more unused code. - sam - An updated version of the sam text editor.
(HTM) git clone git://vernunftzentrum.de/sam.git
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) LICENSE
---
(DIR) commit 912aa48f90f2c9b807957d2bf5c646c39d704cd3
(DIR) parent d6d60bb4570fe04e92162988007b39037637954c
(HTM) Author: Rob King <jking@deadpixi.com>
Date: Tue, 6 Sep 2016 21:10:04 -0500
Remove more unused code.
Diffstat:
libXg/point.c | 21 ---------------------
1 file changed, 0 insertions(+), 21 deletions(-)
---
(DIR) diff --git a/libXg/point.c b/libXg/point.c
@@ -1,21 +0,0 @@
-/* Copyright (c) 1998 Lucent Technologies - All rights reserved. */
-#include <u.h>
-#include <libc.h>
-#include <libg.h>
-#include "libgint.h"
-
-void
-point(Bitmap *b, Point p, int v, Fcode f)
-{
- int x, y;
- GC g;
-
- x = p.x;
- y = p.y;
- if(b->flag&SHIFT){
- x -= b->r.min.x;
- y -= b->r.min.y;
- }
- g = _getfillgc(f, b, v);
- XDrawPoint(_dpy, (Drawable)b->id, g, x, y);
-}