mirror of
https://github.com/rkd77/elinks.git
synced 2025-06-30 22:19:29 -04:00
Merge with git+ssh://pasky.or.cz/srv/git/elinks.git
This commit is contained in:
commit
73b79c2e39
@ -39,10 +39,11 @@ elinks: $(LIB_O_NAME) vernum.o
|
|||||||
$(call cmd,link)
|
$(call cmd,link)
|
||||||
|
|
||||||
TAGS:
|
TAGS:
|
||||||
find $(srcdir). -name "*.[ch]" -print \
|
find $(srcdir). \( -name "*.[ch]" -o -name "*.inc" \) -print \
|
||||||
| etags --regex='{c}/INIT_LIST_HEAD(\([[:alnum:]_]+\))/\1/' \
|
| etags --regex='{c}/INIT_LIST_HEAD(\([[:alnum:]_]+\))/\1/' \
|
||||||
--regex='{c}/struct_hierbox_browser(\n[ \t]*\([[:alnum:]_]+\),/\1/m' \
|
--regex='{c}/struct_hierbox_browser(\n[ \t]*\([[:alnum:]_]+\),/\1/m' \
|
||||||
-
|
--regex='{c}/^ACTION_(\([[:alnum:]_]+\),[^,]*,[ \t]*\([[:alnum:]_]+\),/ACT_\1_\2/' \
|
||||||
|
--language=c -
|
||||||
.PHONY: TAGS
|
.PHONY: TAGS
|
||||||
|
|
||||||
PROGS = elinks
|
PROGS = elinks
|
||||||
|
@ -989,7 +989,10 @@ bind_config_string(struct string *file)
|
|||||||
}
|
}
|
||||||
|
|
||||||
struct module kbdbind_module = struct_module(
|
struct module kbdbind_module = struct_module(
|
||||||
/* name: */ N_("Keyboard Bindings"),
|
/* Because this module is listed in main_modules rather than
|
||||||
|
* in builtin_modules, its name does not appear in the user
|
||||||
|
* interface and so need not be translatable. */
|
||||||
|
/* name: */ "Keyboard Bindings",
|
||||||
/* options: */ NULL,
|
/* options: */ NULL,
|
||||||
/* hooks: */ NULL,
|
/* hooks: */ NULL,
|
||||||
/* submodules: */ NULL,
|
/* submodules: */ NULL,
|
||||||
|
@ -21,7 +21,6 @@
|
|||||||
#include "document/html/renderer.h"
|
#include "document/html/renderer.h"
|
||||||
#include "document/options.h"
|
#include "document/options.h"
|
||||||
#include "document/refresh.h"
|
#include "document/refresh.h"
|
||||||
#include "intl/gettext/libintl.h"
|
|
||||||
#include "main/module.h"
|
#include "main/module.h"
|
||||||
#include "main/object.h"
|
#include "main/object.h"
|
||||||
#include "protocol/uri.h"
|
#include "protocol/uri.h"
|
||||||
@ -343,7 +342,10 @@ done_documents(struct module *module)
|
|||||||
}
|
}
|
||||||
|
|
||||||
struct module document_module = struct_module(
|
struct module document_module = struct_module(
|
||||||
/* name: */ N_("Document"),
|
/* Because this module is listed in main_modules rather than
|
||||||
|
* in builtin_modules, its name does not appear in the user
|
||||||
|
* interface and so need not be translatable. */
|
||||||
|
/* name: */ "Document",
|
||||||
/* options: */ NULL,
|
/* options: */ NULL,
|
||||||
/* hooks: */ NULL,
|
/* hooks: */ NULL,
|
||||||
/* submodules: */ NULL,
|
/* submodules: */ NULL,
|
||||||
|
@ -11,7 +11,6 @@
|
|||||||
|
|
||||||
#include "config/options.h"
|
#include "config/options.h"
|
||||||
#include "intl/charsets.h"
|
#include "intl/charsets.h"
|
||||||
#include "intl/gettext/libintl.h"
|
|
||||||
#include "main/module.h"
|
#include "main/module.h"
|
||||||
#include "osdep/ascii.h"
|
#include "osdep/ascii.h"
|
||||||
#include "osdep/osdep.h"
|
#include "osdep/osdep.h"
|
||||||
@ -1126,7 +1125,11 @@ done_screen(struct terminal_screen *screen)
|
|||||||
}
|
}
|
||||||
|
|
||||||
struct module terminal_screen_module = struct_module(
|
struct module terminal_screen_module = struct_module(
|
||||||
/* name: */ N_("Terminal Screen"),
|
/* Because this module is a submodule of terminal_module,
|
||||||
|
* which is listed main_modules rather than in builtin_modules,
|
||||||
|
* its name does not appear in the user interface and
|
||||||
|
* so need not be translatable. */
|
||||||
|
/* name: */ "Terminal Screen",
|
||||||
/* options: */ NULL,
|
/* options: */ NULL,
|
||||||
/* hooks: */ NULL,
|
/* hooks: */ NULL,
|
||||||
/* submodules: */ NULL,
|
/* submodules: */ NULL,
|
||||||
|
@ -16,7 +16,6 @@
|
|||||||
|
|
||||||
#include "bookmarks/bookmarks.h"
|
#include "bookmarks/bookmarks.h"
|
||||||
#include "config/options.h"
|
#include "config/options.h"
|
||||||
#include "intl/gettext/libintl.h"
|
|
||||||
#include "main/main.h"
|
#include "main/main.h"
|
||||||
#include "main/module.h"
|
#include "main/module.h"
|
||||||
#include "main/object.h"
|
#include "main/object.h"
|
||||||
@ -380,7 +379,10 @@ static struct module *terminal_submodules[] = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
struct module terminal_module = struct_module(
|
struct module terminal_module = struct_module(
|
||||||
/* name: */ N_("Terminal"),
|
/* Because this module is listed in main_modules rather than
|
||||||
|
* in builtin_modules, its name does not appear in the user
|
||||||
|
* interface and so need not be translatable. */
|
||||||
|
/* name: */ "Terminal",
|
||||||
/* options: */ NULL,
|
/* options: */ NULL,
|
||||||
/* hooks: */ NULL,
|
/* hooks: */ NULL,
|
||||||
/* submodules: */ terminal_submodules,
|
/* submodules: */ terminal_submodules,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user