diff options
author | kcwu <kcwu@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2009-06-13 00:36:08 +0800 |
---|---|---|
committer | kcwu <kcwu@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2009-06-13 00:36:08 +0800 |
commit | db8e4abee4060e1bf59f9feac2557dd1a72aa3c2 (patch) | |
tree | 046afa14e4d0244d01f4de832710863f93bd02bf /mbbsd/calendar.c | |
parent | 2254eb52d8cb36f32c0151e0f1c3be5e5281274b (diff) | |
download | pttbbs-db8e4abee4060e1bf59f9feac2557dd1a72aa3c2.tar pttbbs-db8e4abee4060e1bf59f9feac2557dd1a72aa3c2.tar.gz pttbbs-db8e4abee4060e1bf59f9feac2557dd1a72aa3c2.tar.bz2 pttbbs-db8e4abee4060e1bf59f9feac2557dd1a72aa3c2.tar.lz pttbbs-db8e4abee4060e1bf59f9feac2557dd1a72aa3c2.tar.xz pttbbs-db8e4abee4060e1bf59f9feac2557dd1a72aa3c2.tar.zst pttbbs-db8e4abee4060e1bf59f9feac2557dd1a72aa3c2.zip |
vedit revise
* move global save_title[] to local
* vedit() vedit2() interface change
* add veditfile() for editing normal file
git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@4582 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'mbbsd/calendar.c')
-rw-r--r-- | mbbsd/calendar.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mbbsd/calendar.c b/mbbsd/calendar.c index db3f4f43..3aeea05d 100644 --- a/mbbsd/calendar.c +++ b/mbbsd/calendar.c @@ -264,8 +264,8 @@ u_editcalendar(void) setutmpmode(EDITPLAN); sethomefile(genbuf, cuser.userid, "calendar"); - aborted = vedit(genbuf, NA, NULL); - if (aborted != -1) + aborted = veditfile(genbuf); + if (aborted != EDIT_ABORTED) vmsg("行事曆更新完畢"); return 0; } else if (genbuf[0] == 'd') { |