[gtk-vnc] src: remove emacs indent variables from all source files
- From: Daniel P. Berrange <dberrange src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gtk-vnc] src: remove emacs indent variables from all source files
- Date: Tue, 9 Mar 2021 13:28:13 +0000 (UTC)
commit 8335989682e0de5922d75071ebf0924089846587
Author: Daniel P. Berrangé <dan berrange com>
Date: Mon Feb 22 14:23:11 2021 +0000
src: remove emacs indent variables from all source files
The top level .dir-locals.el file can achieve the same end goal.
Signed-off-by: Daniel P. Berrangé <berrange redhat com>
.dir-locals.el | 20 ++++++++++++++++++++
build-aux/vc-list-files | 10 +---------
examples/gvncviewer.c | 8 --------
src/continuation.c | 7 -------
src/continuation.h | 7 -------
src/coroutine.h | 7 -------
src/coroutine_gthread.c | 7 -------
src/coroutine_ucontext.c | 7 -------
src/dh.c | 9 ---------
src/dh.h | 7 -------
src/gtk-vnc.h | 7 -------
src/gvnc.h | 7 -------
src/gvncpulse.h | 7 -------
src/vncaudio.c | 9 ---------
src/vncaudio.h | 8 --------
src/vncaudioformat.c | 8 --------
src/vncaudioformat.h | 8 --------
src/vncaudiopulse.c | 9 ---------
src/vncaudiopulse.h | 8 --------
src/vncaudiosample.c | 8 --------
src/vncaudiosample.h | 8 --------
src/vncbaseaudio.c | 8 --------
src/vncbaseaudio.h | 8 --------
src/vncbaseframebuffer.c | 8 --------
src/vncbaseframebuffer.h | 8 --------
src/vncbaseframebufferblt.h | 8 --------
src/vnccairoframebuffer.c | 9 ---------
src/vnccairoframebuffer.h | 8 --------
src/vnccolormap.c | 8 --------
src/vnccolormap.h | 8 --------
src/vncconnection.c | 8 --------
src/vncconnection.h | 7 -------
src/vncconnectionblt.h | 9 ---------
src/vncconnectiontest.c | 7 -------
src/vnccursor.c | 9 ---------
src/vnccursor.h | 7 -------
src/vncdisplay.c | 8 --------
src/vncdisplay.h | 7 -------
src/vncdisplaykeymap.c | 8 --------
src/vncdisplaykeymap.h | 7 -------
src/vncframebuffer.c | 9 ---------
src/vncframebuffer.h | 8 --------
src/vncgrabsequence.c | 9 ---------
src/vncgrabsequence.h | 8 --------
src/vncpixelformat.c | 8 --------
src/vncpixelformat.h | 8 --------
src/vncutil.c | 8 --------
src/vncutil.h | 7 -------
tools/gvnccapture.c | 8 --------
49 files changed, 21 insertions(+), 378 deletions(-)
---
diff --git a/.dir-locals.el b/.dir-locals.el
new file mode 100644
index 0000000..a27908f
--- /dev/null
+++ b/.dir-locals.el
@@ -0,0 +1,20 @@
+(
+ (c-mode . (
+ (c-file-style . "K&R")
+ (indent-tabs-mode . nil)
+ (c-indent-level . 4)
+ (c-basic-offset . 4)
+ ))
+ (html-mode . (
+ (indent-tabs-mode . nil)
+ ))
+ (sh-mode . (
+ (indent-tabs-mode . nil)
+ ))
+ (nxml-mode . (
+ (indent-tabs-mode . nil)
+ ))
+ (perl-mode . (
+ (indent-tabs-mode . nil)
+ ))
+ )
diff --git a/build-aux/vc-list-files b/build-aux/vc-list-files
index 405e458..e4b405d 100755
--- a/build-aux/vc-list-files
+++ b/build-aux/vc-list-files
@@ -2,7 +2,7 @@
# List version-controlled file names.
# Print a version string.
-scriptversion=2011-05-16.22; # UTC
+scriptversion=2021-02-22.14; # UTC
# Copyright (C) 2006-2011 Free Software Foundation, Inc.
@@ -103,11 +103,3 @@ do
exit 1
fi
done
-
-# Local variables:
-# eval: (add-hook 'write-file-hooks 'time-stamp)
-# time-stamp-start: "scriptversion="
-# time-stamp-format: "%:y-%02m-%02d.%02H"
-# time-stamp-time-zone: "UTC"
-# time-stamp-end: "; # UTC"
-# End:
diff --git a/examples/gvncviewer.c b/examples/gvncviewer.c
index 906b612..66263f8 100644
--- a/examples/gvncviewer.c
+++ b/examples/gvncviewer.c
@@ -958,11 +958,3 @@ int main(int argc, char **argv)
return 0;
}
-
-/*
- * Local variables:
- * c-indent-level: 4
- * c-basic-offset: 4
- * indent-tabs-mode: nil
- * End:
- */
diff --git a/src/continuation.c b/src/continuation.c
index 15ad8c1..d1af64b 100644
--- a/src/continuation.c
+++ b/src/continuation.c
@@ -80,10 +80,3 @@ int cc_swap(struct continuation *from, struct continuation *to)
return swapcontext(&from->uc, &to->uc);
}
-/*
- * Local variables:
- * c-indent-level: 4
- * c-basic-offset: 4
- * indent-tabs-mode: nil
- * End:
- */
diff --git a/src/continuation.h b/src/continuation.h
index e00bffb..b5a5e34 100644
--- a/src/continuation.h
+++ b/src/continuation.h
@@ -54,10 +54,3 @@ int cc_swap(struct continuation *from, struct continuation *to);
(type *)(((char *)obj) - offset_of(type, member))
#endif
-/*
- * Local variables:
- * c-indent-level: 4
- * c-basic-offset: 4
- * indent-tabs-mode: nil
- * End:
- */
diff --git a/src/coroutine.h b/src/coroutine.h
index dc8981e..2aa86cf 100644
--- a/src/coroutine.h
+++ b/src/coroutine.h
@@ -63,10 +63,3 @@ void *coroutine_yieldto(struct coroutine *to, void *arg);
void *coroutine_yield(void *arg);
#endif
-/*
- * Local variables:
- * c-indent-level: 4
- * c-basic-offset: 4
- * indent-tabs-mode: nil
- * End:
- */
diff --git a/src/coroutine_gthread.c b/src/coroutine_gthread.c
index e94023c..c70bf93 100644
--- a/src/coroutine_gthread.c
+++ b/src/coroutine_gthread.c
@@ -154,10 +154,3 @@ void *coroutine_yield(void *arg)
coroutine_self()->caller = NULL;
return coroutine_swap(coroutine_self(), to, arg);
}
-/*
- * Local variables:
- * c-indent-level: 4
- * c-basic-offset: 4
- * indent-tabs-mode: nil
- * End:
- */
diff --git a/src/coroutine_ucontext.c b/src/coroutine_ucontext.c
index 6ed3142..19cf2b8 100644
--- a/src/coroutine_ucontext.c
+++ b/src/coroutine_ucontext.c
@@ -133,10 +133,3 @@ void *coroutine_yield(void *arg)
coroutine_self()->caller = NULL;
return coroutine_swap(coroutine_self(), to, arg);
}
-/*
- * Local variables:
- * c-indent-level: 4
- * c-basic-offset: 4
- * indent-tabs-mode: nil
- * End:
- */
diff --git a/src/dh.c b/src/dh.c
index 851c7de..2ae4a21 100644
--- a/src/dh.c
+++ b/src/dh.c
@@ -145,12 +145,3 @@ gcry_mpi_t vnc_bytes_to_mpi(const guchar* value, size_t size)
return ret;
}
-
-
-/*
- * Local variables:
- * c-indent-level: 4
- * c-basic-offset: 4
- * indent-tabs-mode: nil
- * End:
- */
diff --git a/src/dh.h b/src/dh.h
index 00fa467..e95aa95 100644
--- a/src/dh.h
+++ b/src/dh.h
@@ -36,10 +36,3 @@ void vnc_mpi_to_bytes(const gcry_mpi_t value, guchar* result, size_t size);
gcry_mpi_t vnc_bytes_to_mpi(const guchar* value, size_t size);
#endif
-/*
- * Local variables:
- * c-indent-level: 4
- * c-basic-offset: 4
- * indent-tabs-mode: nil
- * End:
- */
diff --git a/src/gtk-vnc.h b/src/gtk-vnc.h
index 6be4eaf..34c4c31 100644
--- a/src/gtk-vnc.h
+++ b/src/gtk-vnc.h
@@ -26,10 +26,3 @@
#include <vncgrabsequence.h>
#endif
-/*
- * Local variables:
- * c-indent-level: 4
- * c-basic-offset: 4
- * indent-tabs-mode: nil
- * End:
- */
diff --git a/src/gvnc.h b/src/gvnc.h
index 040138c..a686fb6 100644
--- a/src/gvnc.h
+++ b/src/gvnc.h
@@ -31,10 +31,3 @@
#include <vncutil.h>
#endif
-/*
- * Local variables:
- * c-indent-level: 4
- * c-basic-offset: 4
- * indent-tabs-mode: nil
- * End:
- */
diff --git a/src/gvncpulse.h b/src/gvncpulse.h
index d93f7a2..de70663 100644
--- a/src/gvncpulse.h
+++ b/src/gvncpulse.h
@@ -25,10 +25,3 @@
#include <vncaudiopulse.h>
#endif
-/*
- * Local variables:
- * c-indent-level: 4
- * c-basic-offset: 4
- * indent-tabs-mode: nil
- * End:
- */
diff --git a/src/vncaudio.c b/src/vncaudio.c
index 38b18a3..871febe 100644
--- a/src/vncaudio.c
+++ b/src/vncaudio.c
@@ -77,12 +77,3 @@ vnc_audio_get_type (void)
return audio_type;
}
-
-
-/*
- * Local variables:
- * c-indent-level: 4
- * c-basic-offset: 4
- * indent-tabs-mode: nil
- * End:
- */
diff --git a/src/vncaudio.h b/src/vncaudio.h
index c92409a..7129a51 100644
--- a/src/vncaudio.h
+++ b/src/vncaudio.h
@@ -56,11 +56,3 @@ void vnc_audio_playback_data(VncAudio *aud,
G_END_DECLS
#endif /* VNC_AUDIO_H */
-
-/*
- * Local variables:
- * c-indent-level: 4
- * c-basic-offset: 4
- * indent-tabs-mode: nil
- * End:
- */
diff --git a/src/vncaudioformat.c b/src/vncaudioformat.c
index 1036f85..b08b7f5 100644
--- a/src/vncaudioformat.c
+++ b/src/vncaudioformat.c
@@ -88,11 +88,3 @@ void vnc_audio_format_free(VncAudioFormat *format)
{
g_slice_free(VncAudioFormat, format);
}
-
-/*
- * Local variables:
- * c-indent-level: 4
- * c-basic-offset: 4
- * indent-tabs-mode: nil
- * End:
- */
diff --git a/src/vncaudioformat.h b/src/vncaudioformat.h
index 4de5763..3ab8b00 100644
--- a/src/vncaudioformat.h
+++ b/src/vncaudioformat.h
@@ -54,11 +54,3 @@ void vnc_audio_format_free(VncAudioFormat *format);
G_END_DECLS
#endif /* VNC_AUDIO_FORMAT_H */
-
-/*
- * Local variables:
- * c-indent-level: 4
- * c-basic-offset: 4
- * indent-tabs-mode: nil
- * End:
- */
diff --git a/src/vncaudiopulse.c b/src/vncaudiopulse.c
index 7406f7d..f405dfd 100644
--- a/src/vncaudiopulse.c
+++ b/src/vncaudiopulse.c
@@ -161,12 +161,3 @@ VncAudioPulse *vnc_audio_pulse_new(void)
return VNC_AUDIO_PULSE(g_object_new(VNC_TYPE_AUDIO_PULSE,
NULL));
}
-
-
-/*
- * Local variables:
- * c-indent-level: 4
- * c-basic-offset: 4
- * indent-tabs-mode: nil
- * End:
- */
diff --git a/src/vncaudiopulse.h b/src/vncaudiopulse.h
index 6f522c0..422ddea 100644
--- a/src/vncaudiopulse.h
+++ b/src/vncaudiopulse.h
@@ -60,11 +60,3 @@ VncAudioPulse *vnc_audio_pulse_new(void);
G_END_DECLS
#endif /* VNC_AUDIO_PULSE_H */
-
-/*
- * Local variables:
- * c-indent-level: 4
- * c-basic-offset: 4
- * indent-tabs-mode: nil
- * End:
- */
diff --git a/src/vncaudiosample.c b/src/vncaudiosample.c
index fc11c92..80bbe53 100644
--- a/src/vncaudiosample.c
+++ b/src/vncaudiosample.c
@@ -100,11 +100,3 @@ void vnc_audio_sample_free(VncAudioSample *sample)
g_free(sample->data);
g_slice_free(VncAudioSample, sample);
}
-
-/*
- * Local variables:
- * c-indent-level: 4
- * c-basic-offset: 4
- * indent-tabs-mode: nil
- * End:
- */
diff --git a/src/vncaudiosample.h b/src/vncaudiosample.h
index 52995cd..a4b15ba 100644
--- a/src/vncaudiosample.h
+++ b/src/vncaudiosample.h
@@ -45,11 +45,3 @@ void vnc_audio_sample_free(VncAudioSample *sample);
G_END_DECLS
#endif /* VNC_AUDIO_SAMPLE_H */
-
-/*
- * Local variables:
- * c-indent-level: 4
- * c-basic-offset: 4
- * indent-tabs-mode: nil
- * End:
- */
diff --git a/src/vncbaseaudio.c b/src/vncbaseaudio.c
index 221fd82..a3460dc 100644
--- a/src/vncbaseaudio.c
+++ b/src/vncbaseaudio.c
@@ -127,11 +127,3 @@ static void vnc_base_audio_interface_init(gpointer g_iface,
iface->playback_stop = vnc_base_audio_playback_stop;
iface->playback_data = vnc_base_audio_playback_data;
}
-
-/*
- * Local variables:
- * c-indent-level: 4
- * c-basic-offset: 4
- * indent-tabs-mode: nil
- * End:
- */
diff --git a/src/vncbaseaudio.h b/src/vncbaseaudio.h
index dd12d81..8eea93d 100644
--- a/src/vncbaseaudio.h
+++ b/src/vncbaseaudio.h
@@ -63,11 +63,3 @@ VncBaseAudio *vnc_base_audio_new(void);
G_END_DECLS
#endif /* VNC_BASE_AUDIO_H */
-
-/*
- * Local variables:
- * c-indent-level: 4
- * c-basic-offset: 4
- * indent-tabs-mode: nil
- * End:
- */
diff --git a/src/vncbaseframebuffer.c b/src/vncbaseframebuffer.c
index 1acdd41..42b51c1 100644
--- a/src/vncbaseframebuffer.c
+++ b/src/vncbaseframebuffer.c
@@ -1017,11 +1017,3 @@ static void vnc_base_framebuffer_interface_init(gpointer g_iface,
iface->rgb24_blt = vnc_base_framebuffer_rgb24_blt;
iface->set_color_map = vnc_base_framebuffer_set_color_map;
}
-
-/*
- * Local variables:
- * c-indent-level: 4
- * c-basic-offset: 4
- * indent-tabs-mode: nil
- * End:
- */
diff --git a/src/vncbaseframebuffer.h b/src/vncbaseframebuffer.h
index 07f0ea3..0d03bc3 100644
--- a/src/vncbaseframebuffer.h
+++ b/src/vncbaseframebuffer.h
@@ -76,11 +76,3 @@ VncBaseFramebuffer *vnc_base_framebuffer_new(guint8 *buffer,
G_END_DECLS
#endif /* VNC_BASE_FRAMEBUFFER_H */
-
-/*
- * Local variables:
- * c-indent-level: 4
- * c-basic-offset: 4
- * indent-tabs-mode: nil
- * End:
- */
diff --git a/src/vncbaseframebufferblt.h b/src/vncbaseframebufferblt.h
index 614314b..9e78f80 100644
--- a/src/vncbaseframebufferblt.h
+++ b/src/vncbaseframebufferblt.h
@@ -213,11 +213,3 @@ static void RGB24_BLT(VncBaseFramebufferPrivate *priv,
#undef SUFFIX
#undef SPLICE
#undef SPLICE_I
-
-/*
- * Local variables:
- * c-indent-level: 4
- * c-basic-offset: 4
- * indent-tabs-mode: nil
- * End:
- */
diff --git a/src/vnccairoframebuffer.c b/src/vnccairoframebuffer.c
index 5dd2311..626032b 100644
--- a/src/vnccairoframebuffer.c
+++ b/src/vnccairoframebuffer.c
@@ -180,12 +180,3 @@ cairo_surface_t *vnc_cairo_framebuffer_get_surface(VncCairoFramebuffer *fb)
return priv->surface;
}
-
-
-/*
- * Local variables:
- * c-indent-level: 4
- * c-basic-offset: 4
- * indent-tabs-mode: nil
- * End:
- */
diff --git a/src/vnccairoframebuffer.h b/src/vnccairoframebuffer.h
index 94b05db..0fe0316 100644
--- a/src/vnccairoframebuffer.h
+++ b/src/vnccairoframebuffer.h
@@ -73,11 +73,3 @@ cairo_surface_t *vnc_cairo_framebuffer_get_surface(VncCairoFramebuffer *fb);
G_END_DECLS
#endif /* VNC_CAIRO_FRAMEBUFFER_H */
-
-/*
- * Local variables:
- * c-indent-level: 4
- * c-basic-offset: 4
- * indent-tabs-mode: nil
- * End:
- */
diff --git a/src/vnccolormap.c b/src/vnccolormap.c
index f3e153a..b4b3ad2 100644
--- a/src/vnccolormap.c
+++ b/src/vnccolormap.c
@@ -158,11 +158,3 @@ gboolean vnc_color_map_lookup(VncColorMap *map,
return TRUE;
}
-
-/*
- * Local variables:
- * c-indent-level: 4
- * c-basic-offset: 4
- * indent-tabs-mode: nil
- * End:
- */
diff --git a/src/vnccolormap.h b/src/vnccolormap.h
index 6f06098..75377c4 100644
--- a/src/vnccolormap.h
+++ b/src/vnccolormap.h
@@ -71,11 +71,3 @@ gboolean vnc_color_map_lookup(VncColorMap *map,
G_END_DECLS
#endif /* VNC_COLOR_MAP_H */
-
-/*
- * Local variables:
- * c-indent-level: 4
- * c-basic-offset: 4
- * indent-tabs-mode: nil
- * End:
- */
diff --git a/src/vncconnection.c b/src/vncconnection.c
index 217a0ae..5c55080 100644
--- a/src/vncconnection.c
+++ b/src/vncconnection.c
@@ -6574,11 +6574,3 @@ VncConnectionResizeStatus vnc_connection_set_size(VncConnection *conn,
return !vnc_connection_has_error(conn);
}
-
-/*
- * Local variables:
- * c-indent-level: 4
- * c-basic-offset: 4
- * indent-tabs-mode: nil
- * End:
- */
diff --git a/src/vncconnection.h b/src/vncconnection.h
index fde1284..dc250f7 100644
--- a/src/vncconnection.h
+++ b/src/vncconnection.h
@@ -258,10 +258,3 @@ VncConnectionResizeStatus vnc_connection_set_size(VncConnection *conn,
G_END_DECLS
#endif /* VNC_CONNECTION_H */
-/*
- * Local variables:
- * c-indent-level: 4
- * c-basic-offset: 4
- * indent-tabs-mode: nil
- * End:
- */
diff --git a/src/vncconnectionblt.h b/src/vncconnectionblt.h
index 2162d95..f8c2097 100644
--- a/src/vncconnectionblt.h
+++ b/src/vncconnectionblt.h
@@ -156,12 +156,3 @@ static void TIGHT_SUM_PIXEL(VncConnection *conn,
#undef dst_pixel_t
#undef src_pixel_t
#undef ssrc_pixel_t
-
-
-/*
- * Local variables:
- * c-indent-level: 4
- * c-basic-offset: 4
- * indent-tabs-mode: nil
- * End:
- */
diff --git a/src/vncconnectiontest.c b/src/vncconnectiontest.c
index 530e160..877b80b 100644
--- a/src/vncconnectiontest.c
+++ b/src/vncconnectiontest.c
@@ -634,10 +634,3 @@ int main(int argc, char **argv) {
return g_test_run();
}
-/*
- * Local variables:
- * c-indent-level: 4
- * c-basic-offset: 4
- * indent-tabs-mode: nil
- * End:
- */
diff --git a/src/vnccursor.c b/src/vnccursor.c
index 3ee81cb..f3f3606 100644
--- a/src/vnccursor.c
+++ b/src/vnccursor.c
@@ -310,12 +310,3 @@ guint16 vnc_cursor_get_height(VncCursor *cursor)
return priv->height;
}
-
-
-/*
- * Local variables:
- * c-indent-level: 4
- * c-basic-offset: 4
- * indent-tabs-mode: nil
- * End:
- */
diff --git a/src/vnccursor.h b/src/vnccursor.h
index 3d7b3ef..6a2f559 100644
--- a/src/vnccursor.h
+++ b/src/vnccursor.h
@@ -76,10 +76,3 @@ guint16 vnc_cursor_get_height(VncCursor *cursor);
G_END_DECLS
#endif /* VNC_CURSOR_H */
-/*
- * Local variables:
- * c-indent-level: 4
- * c-basic-offset: 4
- * indent-tabs-mode: nil
- * End:
- */
diff --git a/src/vncdisplay.c b/src/vncdisplay.c
index 8746010..073bbc4 100644
--- a/src/vncdisplay.c
+++ b/src/vncdisplay.c
@@ -3445,11 +3445,3 @@ vnc_display_request_update(VncDisplay *obj)
vnc_connection_get_width(obj->priv->conn),
vnc_connection_get_width(obj->priv->conn));
}
-
-/*
- * Local variables:
- * c-indent-level: 4
- * c-basic-offset: 4
- * indent-tabs-mode: nil
- * End:
- */
diff --git a/src/vncdisplay.h b/src/vncdisplay.h
index 4c398d1..8f870b7 100644
--- a/src/vncdisplay.h
+++ b/src/vncdisplay.h
@@ -158,10 +158,3 @@ gboolean vnc_display_request_update(VncDisplay *obj);
G_END_DECLS
#endif /* VNC_DISPLAY_H */
-/*
- * Local variables:
- * c-indent-level: 4
- * c-basic-offset: 4
- * indent-tabs-mode: nil
- * End:
- */
diff --git a/src/vncdisplaykeymap.c b/src/vncdisplaykeymap.c
index 4b31e7d..fe96252 100644
--- a/src/vncdisplaykeymap.c
+++ b/src/vncdisplaykeymap.c
@@ -253,11 +253,3 @@ guint16 vnc_display_keymap_gdk2rfb(const guint16 *keycode_map,
return 0;
return keycode_map[keycode];
}
-
-/*
- * Local variables:
- * c-indent-level: 4
- * c-basic-offset: 4
- * indent-tabs-mode: nil
- * End:
- */
diff --git a/src/vncdisplaykeymap.h b/src/vncdisplaykeymap.h
index 007e756..9134296 100644
--- a/src/vncdisplaykeymap.h
+++ b/src/vncdisplaykeymap.h
@@ -30,10 +30,3 @@ guint16 vnc_display_keymap_gdk2rfb(const guint16 *keycode_map,
guint16 keycode);
#endif /* VNC_DISPLAY_KEYMAP_H */
-/*
- * Local variables:
- * c-indent-level: 4
- * c-basic-offset: 4
- * indent-tabs-mode: nil
- * End:
- */
diff --git a/src/vncframebuffer.c b/src/vncframebuffer.c
index 548d163..f22e3e0 100644
--- a/src/vncframebuffer.c
+++ b/src/vncframebuffer.c
@@ -256,12 +256,3 @@ vnc_framebuffer_get_type (void)
return framebuffer_type;
}
-
-
-/*
- * Local variables:
- * c-indent-level: 4
- * c-basic-offset: 4
- * indent-tabs-mode: nil
- * End:
- */
diff --git a/src/vncframebuffer.h b/src/vncframebuffer.h
index edec7f8..7d6fa3a 100644
--- a/src/vncframebuffer.h
+++ b/src/vncframebuffer.h
@@ -122,11 +122,3 @@ void vnc_framebuffer_set_color_map(VncFramebuffer *fb,
G_END_DECLS
#endif /* VNC_FRAMEBUFFER_H */
-
-/*
- * Local variables:
- * c-indent-level: 4
- * c-basic-offset: 4
- * indent-tabs-mode: nil
- * End:
- */
diff --git a/src/vncgrabsequence.c b/src/vncgrabsequence.c
index fc06011..fef0cb8 100644
--- a/src/vncgrabsequence.c
+++ b/src/vncgrabsequence.c
@@ -179,12 +179,3 @@ guint vnc_grab_sequence_get_nth(VncGrabSequence *sequence,
return sequence->keysyms[n];
}
-
-
-/*
- * Local variables:
- * c-indent-level: 4
- * c-basic-offset: 4
- * indent-tabs-mode: nil
- * End:
- */
diff --git a/src/vncgrabsequence.h b/src/vncgrabsequence.h
index 6e5bdf9..14aa5e2 100644
--- a/src/vncgrabsequence.h
+++ b/src/vncgrabsequence.h
@@ -52,11 +52,3 @@ guint vnc_grab_sequence_get_nth(VncGrabSequence *sequence,
G_END_DECLS
#endif /* VNC_GRAB_SEQUENCE_H */
-
-/*
- * Local variables:
- * c-indent-level: 4
- * c-basic-offset: 4
- * indent-tabs-mode: nil
- * End:
- */
diff --git a/src/vncpixelformat.c b/src/vncpixelformat.c
index 4afffd6..b8ce12a 100644
--- a/src/vncpixelformat.c
+++ b/src/vncpixelformat.c
@@ -102,11 +102,3 @@ gboolean vnc_pixel_format_match(const VncPixelFormat *format,
format->green_shift == other->green_shift &&
format->blue_shift == other->blue_shift;
}
-
-/*
- * Local variables:
- * c-indent-level: 4
- * c-basic-offset: 4
- * indent-tabs-mode: nil
- * End:
- */
diff --git a/src/vncpixelformat.h b/src/vncpixelformat.h
index 63fb661..fa9486d 100644
--- a/src/vncpixelformat.h
+++ b/src/vncpixelformat.h
@@ -58,11 +58,3 @@ gboolean vnc_pixel_format_match(const VncPixelFormat *format,
G_END_DECLS
#endif /* VNC_PIXEL_FORMAT_H */
-
-/*
- * Local variables:
- * c-indent-level: 4
- * c-basic-offset: 4
- * indent-tabs-mode: nil
- * End:
- */
diff --git a/src/vncutil.c b/src/vncutil.c
index 073ccf5..b9ad611 100644
--- a/src/vncutil.c
+++ b/src/vncutil.c
@@ -113,11 +113,3 @@ const gchar *vnc_util_get_version_string(void)
{
return VERSION;
}
-
-/*
- * Local variables:
- * c-indent-level: 4
- * c-basic-offset: 4
- * indent-tabs-mode: nil
- * End:
- */
diff --git a/src/vncutil.h b/src/vncutil.h
index d67f9aa..bd39cd0 100644
--- a/src/vncutil.h
+++ b/src/vncutil.h
@@ -46,10 +46,3 @@ gboolean vnc_util_check_version(gint major, gint minor, gint micro);
G_END_DECLS
#endif /* VNC_UTIL_H */
-/*
- * Local variables:
- * c-indent-level: 4
- * c-basic-offset: 4
- * indent-tabs-mode: nil
- * End:
- */
diff --git a/tools/gvnccapture.c b/tools/gvnccapture.c
index fe1bf5d..dc04572 100644
--- a/tools/gvnccapture.c
+++ b/tools/gvnccapture.c
@@ -554,11 +554,3 @@ int main(int argc, char **argv)
return ret;
}
-
-/*
- * Local variables:
- * c-indent-level: 4
- * c-basic-offset: 4
- * indent-tabs-mode: nil
- * End:
- */
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]