[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemacs-commit] qemacs qe.c qe.h
From: |
Charlie Gordon |
Subject: |
[Qemacs-commit] qemacs qe.c qe.h |
Date: |
Thu, 10 Apr 2008 21:21:15 +0000 |
CVSROOT: /cvsroot/qemacs
Module name: qemacs
Changes by: Charlie Gordon <chqrlie> 08/04/10 21:21:15
Modified files:
. : qe.c qe.h
Log message:
comments
CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/qemacs/qe.c?cvsroot=qemacs&r1=1.80&r2=1.81
http://cvs.savannah.gnu.org/viewcvs/qemacs/qe.h?cvsroot=qemacs&r1=1.80&r2=1.81
Patches:
Index: qe.c
===================================================================
RCS file: /cvsroot/qemacs/qemacs/qe.c,v
retrieving revision 1.80
retrieving revision 1.81
diff -u -b -r1.80 -r1.81
--- qe.c 8 Apr 2008 09:25:16 -0000 1.80
+++ qe.c 10 Apr 2008 21:21:14 -0000 1.81
@@ -307,8 +307,8 @@
void do_set_key(EditState *s, const char *keystr,
const char *cmd_name, int local)
{
- int nb_keys;
unsigned int keys[MAX_KEYS];
+ int nb_keys;
CmdDef *d;
nb_keys = strtokeys(keystr, keys, MAX_KEYS);
@@ -2198,19 +2198,20 @@
const char * const qe_style_properties[] = {
#define CSS_PROP_COLOR 0
- "color",
+ "color", /* color */
#define CSS_PROP_BACKGROUND_COLOR 1
- "background-color",
+ "background-color", /* color */
#define CSS_PROP_FONT_FAMILY 2
- "font-family",
+ "font-family", /* font_family: serif|times|sans|arial|helvetica| */
+ /* fixed|monospace|courier */
#define CSS_PROP_FONT_STYLE 3
- "font-style",
+ "font-style", /* font_style: italic / normal */
#define CSS_PROP_FONT_WEIGHT 4
- "font-weight",
+ "font-weight", /* font_weight: bold / normal */
#define CSS_PROP_FONT_SIZE 5
- "font-size,"
+ "font-size", /* font_size: inherit / size */
#define CSS_PROP_TEXT_DECORATION 6
- "text-decoration",
+ "text-decoration", /* text_decoration: none / underline */
};
void style_property_completion(CompleteState *cp)
Index: qe.h
===================================================================
RCS file: /cvsroot/qemacs/qemacs/qe.h,v
retrieving revision 1.80
retrieving revision 1.81
diff -u -b -r1.80 -r1.81
--- qe.h 9 Apr 2008 16:15:46 -0000 1.80
+++ qe.h 10 Apr 2008 21:21:14 -0000 1.81
@@ -1199,7 +1199,7 @@
///* global variables */
int it; /* last result from expression evaluator */
- ////int force_tty; /* prevent graphics display (X11...) */
+ //int force_tty; /* prevent graphics display (X11...) */
//int no_config; /* prevent config file eval */
//int force_refresh; /* force a complete screen refresh */
int ignore_spaces; /* ignore spaces when comparing windows */
@@ -1529,6 +1529,7 @@
/* loading files */
void do_exit_qemacs(EditState *s, int argval);
void do_find_file(EditState *s, const char *filename);
+void do_load_from_path(EditState *s, const char *filename);
void do_find_file_other_window(EditState *s, const char *filename);
void do_switch_to_buffer(EditState *s, const char *bufname);
void do_break(EditState *s);
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Qemacs-commit] qemacs qe.c qe.h,
Charlie Gordon <=