1
0
mirror of https://github.com/rfivet/uemacs.git synced 2025-11-23 11:41:15 -05:00

start tagging uEMACS functions that are not compatible with view mode.

This commit is contained in:
2021-07-19 15:39:00 +08:00
parent 3889f1709c
commit 92c9208cd4
15 changed files with 372 additions and 354 deletions

10
bind.h
View File

@@ -1,23 +1,21 @@
#ifndef _BIND_H_
#define _BIND_H_
#include "fnp_t.h"
#define APROP 1 /* Add code for Apropos command */
#if APROP
int apro( int f, int n) ;
#endif
/* Some global fuction declarations. */
typedef int (*fn_t)(int, int);
int help( int f, int n) ;
int deskey( int f, int n) ;
int bindtokey( int f, int n) ;
int unbindkey( int f, int n) ;
int desbind( int f, int n) ;
int startup( const char *fname) ;
fn_t getbind( unsigned keycode) ;
fn_t fncmatch( char *) ;
char *transbind( char *skey) ;
fnp_t getbind( unsigned keycode) ;
const char *transbind( char *skey) ;
#endif