mirror of
https://github.com/MidnightCommander/mc
synced 2025-04-04 06:02:52 +03:00
(etags_hash_t): remove unused filename_len member.
Cleanup unused includes. Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
This commit is contained in:
parent
4a3cf4c6af
commit
68c9db0c17
@ -32,7 +32,6 @@
|
|||||||
#include <config.h>
|
#include <config.h>
|
||||||
|
|
||||||
#include <ctype.h>
|
#include <ctype.h>
|
||||||
#include <inttypes.h>
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
@ -212,7 +211,6 @@ etags_set_definition_hash (const char *tagfile, const char *start_path,
|
|||||||
parse_define (chekedstr, &longname, &shortname, &line);
|
parse_define (chekedstr, &longname, &shortname, &line);
|
||||||
if (num < MAX_DEFINITIONS - 1)
|
if (num < MAX_DEFINITIONS - 1)
|
||||||
{
|
{
|
||||||
def_hash[num].filename_len = strlen (filename);
|
|
||||||
def_hash[num].fullpath =
|
def_hash[num].fullpath =
|
||||||
mc_build_filename (start_path, filename, (char *) NULL);
|
mc_build_filename (start_path, filename, (char *) NULL);
|
||||||
|
|
||||||
|
@ -1,9 +1,6 @@
|
|||||||
#ifndef MC__EDIT_ETAGS_H
|
#ifndef MC__EDIT_ETAGS_H
|
||||||
#define MC__EDIT_ETAGS_H 1
|
#define MC__EDIT_ETAGS_H 1
|
||||||
|
|
||||||
#include <sys/types.h> /* size_t */
|
|
||||||
#include "lib/global.h" /* include <glib.h> */
|
|
||||||
|
|
||||||
/*** typedefs(not structures) and defined constants **********************************************/
|
/*** typedefs(not structures) and defined constants **********************************************/
|
||||||
|
|
||||||
#define MAX_WIDTH_DEF_DIALOG 60 /* max width def dialog */
|
#define MAX_WIDTH_DEF_DIALOG 60 /* max width def dialog */
|
||||||
@ -18,9 +15,8 @@
|
|||||||
|
|
||||||
typedef struct etags_hash_struct
|
typedef struct etags_hash_struct
|
||||||
{
|
{
|
||||||
size_t filename_len;
|
|
||||||
char *fullpath;
|
|
||||||
char *filename;
|
char *filename;
|
||||||
|
char *fullpath;
|
||||||
char *short_define;
|
char *short_define;
|
||||||
long line;
|
long line;
|
||||||
} etags_hash_t;
|
} etags_hash_t;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user