Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(84)

Unified Diff: ports/emacs/emacs_pepper.c

Issue 1417223003: Switch from using 'nacl_main' to 'main' entry point (Closed) Base URL: https://chromium.googlesource.com/external/naclports.git@master
Patch Set: Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ports/emacs/build.sh ('k') | ports/emacs/pkg_info » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ports/emacs/emacs_pepper.c
diff --git a/ports/emacs/emacs_pepper.c b/ports/emacs/emacs_pepper.c
index 0a22e50ea53a5290e3af08f337d3b92ba07128b9..6f2efcc6d1137854d07ea138991cc105f1ee6ed3 100644
--- a/ports/emacs/emacs_pepper.c
+++ b/ports/emacs/emacs_pepper.c
@@ -57,7 +57,7 @@ char* whatis(Lisp_Object object) {
// The special NaCl entry point into emacs.
extern int nacl_emacs_main(int argc, char* argv[]);
-int nacl_main(int argc, char* argv[]) {
+int main(int argc, char* argv[]) {
if (nacl_startup_untar(argv[0], "emacs.tar", "/"))
return 1;
return nacl_emacs_main(argc, argv);
« no previous file with comments | « ports/emacs/build.sh ('k') | ports/emacs/pkg_info » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698