@@ -114,7 +114,6 @@ struct note_msg {
114114};
115115
116116struct note_data {
117- int given ;
118117 int use_editor ;
119118 int stripspace ;
120119 char * edit_path ;
@@ -193,15 +192,15 @@ static void write_commented_object(int fd, const struct object_id *object)
193192static void prepare_note_data (const struct object_id * object , struct note_data * d ,
194193 const struct object_id * old_note )
195194{
196- if (d -> use_editor || !d -> given ) {
195+ if (d -> use_editor || !d -> msg_nr ) {
197196 int fd ;
198197 struct strbuf buf = STRBUF_INIT ;
199198
200199 /* write the template message before editing: */
201200 d -> edit_path = git_pathdup ("NOTES_EDITMSG" );
202201 fd = xopen (d -> edit_path , O_CREAT | O_TRUNC | O_WRONLY , 0600 );
203202
204- if (d -> given )
203+ if (d -> msg_nr )
205204 write_or_die (fd , d -> buf .buf , d -> buf .len );
206205 else if (old_note )
207206 copy_obj_to_fd (fd , old_note );
@@ -515,7 +514,6 @@ static int add(int argc, const char **argv, const char *prefix)
515514
516515 if (d .msg_nr )
517516 concat_messages (& d );
518- d .given = !!d .buf .len ;
519517
520518 object_ref = argc > 1 ? argv [1 ] : "HEAD" ;
521519
@@ -528,7 +526,7 @@ static int add(int argc, const char **argv, const char *prefix)
528526 if (note ) {
529527 if (!force ) {
530528 free_notes (t );
531- if (d .given ) {
529+ if (d .msg_nr ) {
532530 free_note_data (& d );
533531 return error (_ ("Cannot add notes. "
534532 "Found existing notes for object %s. "
@@ -690,14 +688,14 @@ static int append_edit(int argc, const char **argv, const char *prefix)
690688 usage_with_options (usage , options );
691689 }
692690
693- if (d .msg_nr )
691+ if (d .msg_nr ) {
694692 concat_messages (& d );
695- d . given = !! d . buf . len ;
696-
697- if ( d . given && edit )
698- fprintf ( stderr , _ ( "The - m/-F/-c/-C options have been deprecated "
699- "for the 'edit' subcommand .\n"
700- "Please use 'git notes add -f -m/-F/-c/-C' instead.\n" ));
693+ if ( edit )
694+ fprintf ( stderr , _ ( "The -m/-F/-c/-C options have been "
695+ "deprecated for the ' edit' subcommand.\n"
696+ "Please use 'git notes add -f - m/-F/-c/-C' "
697+ "instead .\n"));
698+ }
701699
702700 object_ref = 1 < argc ? argv [1 ] : "HEAD" ;
703701
0 commit comments