From 549344d38ab6df1fec7f0d2a6c12a7b8c50547db Mon Sep 17 00:00:00 2001 From: Warren Dukes Date: Wed, 14 Apr 2004 14:53:41 +0000 Subject: add vim shiznit to end of all source files git-svn-id: https://svn.musicpd.org/mpd/trunk@750 09075e82-0dd4-0310-85a5-a0d7c8717e4f --- src/aac_decode.c | 1 + src/aac_decode.h | 1 + src/audio.c | 1 + src/audio.h | 1 + src/audiofile_decode.c | 1 + src/audiofile_decode.h | 1 + src/buffer2array.c | 1 + src/buffer2array.h | 1 + src/charConv.c | 1 + src/charConv.h | 1 + src/command.c | 1 + src/command.h | 1 + src/conf.c | 1 + src/conf.h | 1 + src/decode.c | 1 + src/decode.h | 1 + src/directory.c | 1 + src/directory.h | 1 + src/flac_decode.c | 1 + src/flac_decode.h | 1 + src/interface.c | 1 + src/interface.h | 1 + src/list.c | 1 + src/list.h | 1 + src/listen.c | 1 + src/listen.h | 1 + src/log.c | 1 + src/log.h | 1 + src/ls.c | 1 + src/ls.h | 1 + src/main.c | 1 + src/mp3_decode.c | 1 + src/mp3_decode.h | 1 + src/mp4_decode.c | 1 + src/mp4_decode.h | 1 + src/mpd_types.h | 1 + src/myfprintf.c | 1 + src/myfprintf.h | 1 + src/ogg_decode.c | 1 + src/ogg_decode.h | 1 + src/path.c | 1 + src/path.h | 1 + src/pcm_utils.c | 1 + src/pcm_utils.h | 1 + src/permission.c | 1 + src/permission.h | 1 + src/player.c | 1 + src/player.h | 1 + src/playerData.c | 1 + src/playerData.h | 1 + src/playlist.c | 1 + src/playlist.h | 1 + src/sig_handlers.c | 1 + src/sig_handlers.h | 1 + src/signal_check.c | 1 + src/signal_check.h | 1 + src/song.c | 1 + src/song.h | 1 + src/stats.c | 1 + src/stats.h | 1 + src/tables.c | 1 + src/tables.h | 1 + src/tag.c | 1 + src/tag.h | 1 + src/utf8.c | 1 + src/utf8.h | 1 + src/utils.c | 1 + src/utils.h | 1 + src/volume.c | 1 + src/volume.h | 1 + 70 files changed, 70 insertions(+) diff --git a/src/aac_decode.c b/src/aac_decode.c index 1c0f867d9..be0f332ec 100644 --- a/src/aac_decode.c +++ b/src/aac_decode.c @@ -432,3 +432,4 @@ int aac_decode(Buffer * cb, AudioFormat * af, DecoderControl * dc) { } #endif /* HAVE_FAAD */ +/* vim:set shiftwidth=4 tabstop=8 expandtab: */ diff --git a/src/aac_decode.h b/src/aac_decode.h index 7ce9781f4..bd8149778 100644 --- a/src/aac_decode.h +++ b/src/aac_decode.h @@ -32,3 +32,4 @@ int aac_decode(Buffer * cb, AudioFormat * af, DecoderControl * dc); #endif /* HAVE_FAAD */ #endif +/* vim:set shiftwidth=4 tabstop=8 expandtab: */ diff --git a/src/audio.c b/src/audio.c index df497203e..b532c95e4 100644 --- a/src/audio.c +++ b/src/audio.c @@ -220,3 +220,4 @@ void audioError() { } #endif } +/* vim:set shiftwidth=4 tabstop=8 expandtab: */ diff --git a/src/audio.h b/src/audio.h index 58a83a79a..98b44326e 100644 --- a/src/audio.h +++ b/src/audio.h @@ -48,3 +48,4 @@ void audioError(); int isCurrentAudioFormat(AudioFormat * audioFormat); #endif +/* vim:set shiftwidth=4 tabstop=8 expandtab: */ diff --git a/src/audiofile_decode.c b/src/audiofile_decode.c index 7cd193581..79f25e3d4 100644 --- a/src/audiofile_decode.c +++ b/src/audiofile_decode.c @@ -147,3 +147,4 @@ int audiofile_decode(Buffer * cb, AudioFormat * af, DecoderControl * dc) } #endif /* HAVE_AUDIOFILE */ +/* vim:set shiftwidth=4 tabstop=8 expandtab: */ diff --git a/src/audiofile_decode.h b/src/audiofile_decode.h index 536c3ce02..5562b628e 100644 --- a/src/audiofile_decode.h +++ b/src/audiofile_decode.h @@ -33,3 +33,4 @@ int getAudiofileTotalTime(char * file); #endif /* HAVE_AUDIOFILE */ #endif /* AUDIOFILE_DECODE_H */ +/* vim:set shiftwidth=4 tabstop=8 expandtab: */ diff --git a/src/buffer2array.c b/src/buffer2array.c index 9ee67f17c..ebfedf856 100644 --- a/src/buffer2array.c +++ b/src/buffer2array.c @@ -120,3 +120,4 @@ void freeArgArray(char ** array, int argArrayLength) { } free(array); } +/* vim:set shiftwidth=4 tabstop=8 expandtab: */ diff --git a/src/buffer2array.h b/src/buffer2array.h index 74ebffbbb..d6982dd97 100644 --- a/src/buffer2array.h +++ b/src/buffer2array.h @@ -26,3 +26,4 @@ int buffer2array(char * buffer, char *** array); void freeArgArray(char ** array, int argArrayLength); #endif +/* vim:set shiftwidth=4 tabstop=8 expandtab: */ diff --git a/src/charConv.c b/src/charConv.c index 85eba7e88..354a8aba7 100644 --- a/src/charConv.c +++ b/src/charConv.c @@ -147,3 +147,4 @@ void closeCharSetConversion() { char_conv_use_iconv = 0; } } +/* vim:set shiftwidth=4 tabstop=8 expandtab: */ diff --git a/src/charConv.h b/src/charConv.h index 8c5dbdc49..5687c1e7e 100644 --- a/src/charConv.h +++ b/src/charConv.h @@ -28,3 +28,4 @@ char * convStrDup(char * string); void closeCharSetConversion(); #endif +/* vim:set shiftwidth=4 tabstop=8 expandtab: */ diff --git a/src/command.c b/src/command.c index 90686b7e3..5ad828657 100644 --- a/src/command.c +++ b/src/command.c @@ -765,3 +765,4 @@ int proccessListOfCommands(FILE * fp, int * permission, int * expired, int processCommand(FILE * fp, unsigned int * permission, char * commandString) { return processCommandInternal(fp,permission,commandString,NULL); } +/* vim:set shiftwidth=4 tabstop=8 expandtab: */ diff --git a/src/command.h b/src/command.h index 68d6f4a36..a2733ed6e 100644 --- a/src/command.h +++ b/src/command.h @@ -41,3 +41,4 @@ void initCommands(); void finishCommands(); #endif +/* vim:set shiftwidth=4 tabstop=8 expandtab: */ diff --git a/src/conf.c b/src/conf.c index 7fd154e06..53287ea29 100644 --- a/src/conf.c +++ b/src/conf.c @@ -268,3 +268,4 @@ char ** readConf(char * file) { char ** getConf() { return conf_params; } +/* vim:set shiftwidth=4 tabstop=8 expandtab: */ diff --git a/src/conf.h b/src/conf.h index ca9defaf1..d4d798b9c 100644 --- a/src/conf.h +++ b/src/conf.h @@ -61,3 +61,4 @@ void initConf(); void writeConf(char * file); #endif +/* vim:set shiftwidth=4 tabstop=8 expandtab: */ diff --git a/src/decode.c b/src/decode.c index 75872c431..baea58e4b 100644 --- a/src/decode.c +++ b/src/decode.c @@ -503,3 +503,4 @@ void decode() { return; } +/* vim:set shiftwidth=4 tabstop=8 expandtab: */ diff --git a/src/decode.h b/src/decode.h index 4bcc5abfa..fc56ca5f0 100644 --- a/src/decode.h +++ b/src/decode.h @@ -56,3 +56,4 @@ void decodeSigHandler(int sig); void decode(); #endif +/* vim:set shiftwidth=4 tabstop=8 expandtab: */ diff --git a/src/directory.c b/src/directory.c index bd4c0a81a..f46a6d56e 100644 --- a/src/directory.c +++ b/src/directory.c @@ -1182,3 +1182,4 @@ time_t getDbModTime() { return mtime; } +/* vim:set shiftwidth=4 tabstop=8 expandtab: */ diff --git a/src/directory.h b/src/directory.h index a850154e4..f5af322db 100644 --- a/src/directory.h +++ b/src/directory.h @@ -70,3 +70,4 @@ Song * getSong(char * file); time_t getDbModTime(); #endif +/* vim:set shiftwidth=4 tabstop=8 expandtab: */ diff --git a/src/flac_decode.c b/src/flac_decode.c index 611b198f6..7118f9f6b 100644 --- a/src/flac_decode.c +++ b/src/flac_decode.c @@ -311,3 +311,4 @@ int flac_decode(Buffer * cb, AudioFormat * af, DecoderControl * dc) { } #endif +/* vim:set shiftwidth=4 tabstop=8 expandtab: */ diff --git a/src/flac_decode.h b/src/flac_decode.h index 773d5d0f0..02b3aa092 100644 --- a/src/flac_decode.h +++ b/src/flac_decode.h @@ -30,3 +30,4 @@ int flac_decode(Buffer * cb, AudioFormat * af, DecoderControl * dc); int getFlacTotalTime(char * file); #endif +/* vim:set shiftwidth=4 tabstop=8 expandtab: */ diff --git a/src/interface.c b/src/interface.c index 83699e2f0..4dda82745 100644 --- a/src/interface.c +++ b/src/interface.c @@ -649,3 +649,4 @@ void printInterfaceOutBuffer(Interface * interface) { interface->outBuflen = 0; } +/* vim:set shiftwidth=4 tabstop=8 expandtab: */ diff --git a/src/interface.h b/src/interface.h index b2a8b1a26..ccd94b23a 100644 --- a/src/interface.h +++ b/src/interface.h @@ -38,3 +38,4 @@ int interfacePrintWithFD(int fd, char * buffer); int doIOForInterfaces(); #endif +/* vim:set shiftwidth=4 tabstop=8 expandtab: */ diff --git a/src/list.c b/src/list.c index b6322052b..68ec8d9c3 100644 --- a/src/list.c +++ b/src/list.c @@ -482,3 +482,4 @@ void sortList(List * list) { quickSort(list->nodesArray,0,list->numberOfNodes-1); } +/* vim:set shiftwidth=4 tabstop=8 expandtab: */ diff --git a/src/list.h b/src/list.h index 14f7f396b..7b08e7e51 100644 --- a/src/list.h +++ b/src/list.h @@ -102,3 +102,4 @@ void clearList(List * list); void sortList(List * list); #endif +/* vim:set shiftwidth=4 tabstop=8 expandtab: */ diff --git a/src/listen.c b/src/listen.c index 5fd07a9b4..a9624d4e7 100644 --- a/src/listen.c +++ b/src/listen.c @@ -184,3 +184,4 @@ void getConnections(int sock) { } else if(fd<0) ERROR("Problems accept()'ing\n"); } +/* vim:set shiftwidth=4 tabstop=8 expandtab: */ diff --git a/src/listen.h b/src/listen.h index dd5e32d8c..d0ce86a48 100644 --- a/src/listen.h +++ b/src/listen.h @@ -28,3 +28,4 @@ int establish(unsigned short port); void getConnections(int sock); #endif +/* vim:set shiftwidth=4 tabstop=8 expandtab: */ diff --git a/src/log.c b/src/log.c index 3f456a650..bdc7cf935 100644 --- a/src/log.c +++ b/src/log.c @@ -37,3 +37,4 @@ void initLog() { } else ERROR("unknown log level \"%s\"\n",getConf()[CONF_LOG_LEVEL]); } +/* vim:set shiftwidth=4 tabstop=8 expandtab: */ diff --git a/src/log.h b/src/log.h index 59871f171..222ae2272 100644 --- a/src/log.h +++ b/src/log.h @@ -43,3 +43,4 @@ extern int logLevel; void initLog(); #endif +/* vim:set shiftwidth=4 tabstop=8 expandtab: */ diff --git a/src/ls.c b/src/ls.c index d461109d5..556b68d79 100644 --- a/src/ls.c +++ b/src/ls.c @@ -219,3 +219,4 @@ int isMusic(char * utf8file, time_t * mtime) { return 0; } +/* vim:set shiftwidth=4 tabstop=8 expandtab: */ diff --git a/src/ls.h b/src/ls.h index b55bb2b1a..03cbb8d11 100644 --- a/src/ls.h +++ b/src/ls.h @@ -49,3 +49,4 @@ int hasFlacSuffix(char * utf8file); char * dupAndStripPlaylistSuffix(char * file); #endif +/* vim:set shiftwidth=4 tabstop=8 expandtab: */ diff --git a/src/main.c b/src/main.c index 9133783e8..b7820b2cc 100644 --- a/src/main.c +++ b/src/main.c @@ -485,3 +485,4 @@ int main(int argc, char * argv[]) { return EXIT_SUCCESS; } +/* vim:set shiftwidth=4 tabstop=8 expandtab: */ diff --git a/src/mp3_decode.c b/src/mp3_decode.c index f0b57f59e..faa124ef9 100644 --- a/src/mp3_decode.c +++ b/src/mp3_decode.c @@ -569,3 +569,4 @@ int mp3_decode(Buffer * cb, AudioFormat * af, DecoderControl * dc) { } #endif +/* vim:set shiftwidth=4 tabstop=8 expandtab: */ diff --git a/src/mp3_decode.h b/src/mp3_decode.h index 82e8f103b..e75db0763 100644 --- a/src/mp3_decode.h +++ b/src/mp3_decode.h @@ -33,3 +33,4 @@ int mp3_decode(Buffer * cb, AudioFormat * af, DecoderControl * dc); #endif #endif +/* vim:set shiftwidth=4 tabstop=8 expandtab: */ diff --git a/src/mp4_decode.c b/src/mp4_decode.c index 77e98b676..2e64b6a96 100644 --- a/src/mp4_decode.c +++ b/src/mp4_decode.c @@ -344,3 +344,4 @@ int mp4_decode(Buffer * cb, AudioFormat * af, DecoderControl * dc) { } #endif /* HAVE_FAAD */ +/* vim:set shiftwidth=4 tabstop=8 expandtab: */ diff --git a/src/mp4_decode.h b/src/mp4_decode.h index a981e1e0a..4028db453 100644 --- a/src/mp4_decode.h +++ b/src/mp4_decode.h @@ -38,3 +38,4 @@ int mp4_decode(Buffer * cb, AudioFormat * af, DecoderControl * dc); #endif /* HAVE_FAAD */ #endif +/* vim:set shiftwidth=4 tabstop=8 expandtab: */ diff --git a/src/mpd_types.h b/src/mpd_types.h index 7a81fef63..939bb2085 100644 --- a/src/mpd_types.h +++ b/src/mpd_types.h @@ -41,3 +41,4 @@ typedef signed long mpd_sint32; #endif #endif +/* vim:set shiftwidth=4 tabstop=8 expandtab: */ diff --git a/src/myfprintf.c b/src/myfprintf.c index 37ce1257c..a975a3c94 100644 --- a/src/myfprintf.c +++ b/src/myfprintf.c @@ -85,3 +85,4 @@ void myfprintf(FILE * fp, char * format, ... ) { va_end(arglist); } +/* vim:set shiftwidth=4 tabstop=8 expandtab: */ diff --git a/src/myfprintf.h b/src/myfprintf.h index b169b895c..5f21296bf 100644 --- a/src/myfprintf.h +++ b/src/myfprintf.h @@ -28,3 +28,4 @@ void myfprintfStdLogMode(FILE * out, FILE * err); void myfprintf(FILE * fp, char * format, ... ); #endif +/* vim:set shiftwidth=4 tabstop=8 expandtab: */ diff --git a/src/ogg_decode.c b/src/ogg_decode.c index ef74637d9..6a12dbe07 100644 --- a/src/ogg_decode.c +++ b/src/ogg_decode.c @@ -148,3 +148,4 @@ int ogg_decode(Buffer * cb, AudioFormat * af, DecoderControl * dc) } #endif +/* vim:set shiftwidth=4 tabstop=8 expandtab: */ diff --git a/src/ogg_decode.h b/src/ogg_decode.h index a2e3076a5..036b6fc3a 100644 --- a/src/ogg_decode.h +++ b/src/ogg_decode.h @@ -30,3 +30,4 @@ int ogg_decode(Buffer * cb, AudioFormat * af, DecoderControl * dc); int getOggTotalTime(char * file); #endif +/* vim:set shiftwidth=4 tabstop=8 expandtab: */ diff --git a/src/path.c b/src/path.c index 71bacd7b3..7226cbdec 100644 --- a/src/path.c +++ b/src/path.c @@ -241,3 +241,4 @@ char * sanitizePathDup(char * path) { return realloc(ret,len+1); } +/* vim:set shiftwidth=4 tabstop=8 expandtab: */ diff --git a/src/path.h b/src/path.h index 59fab7c5c..d6b8bdae2 100644 --- a/src/path.h +++ b/src/path.h @@ -53,3 +53,4 @@ char * parentPath(char * path); char * sanitizePathDup(char * path); #endif +/* vim:set shiftwidth=4 tabstop=8 expandtab: */ diff --git a/src/pcm_utils.c b/src/pcm_utils.c index a51fb8870..3d39b20e3 100644 --- a/src/pcm_utils.c +++ b/src/pcm_utils.c @@ -136,3 +136,4 @@ void pcm_mix(char * buffer1, char * buffer2, size_t bufferSize1, pcm_add(buffer1,buffer2,bufferSize1,bufferSize2,vol1,1000-vol1,format); } +/* vim:set shiftwidth=4 tabstop=8 expandtab: */ diff --git a/src/pcm_utils.h b/src/pcm_utils.h index dcd5a31a9..109981274 100644 --- a/src/pcm_utils.h +++ b/src/pcm_utils.h @@ -34,3 +34,4 @@ void pcm_mix(char * buffer1, char * buffer2, size_t bufferSize1, size_t bufferSize2, AudioFormat * format, float portion1); #endif +/* vim:set shiftwidth=4 tabstop=8 expandtab: */ diff --git a/src/permission.c b/src/permission.c index da319325f..e9e74ad7a 100644 --- a/src/permission.c +++ b/src/permission.c @@ -139,3 +139,4 @@ void finishPermissions() { unsigned int getDefaultPermissions() { return permission_default; } +/* vim:set shiftwidth=4 tabstop=8 expandtab: */ diff --git a/src/permission.h b/src/permission.h index d45f735eb..2bcfb1c04 100644 --- a/src/permission.h +++ b/src/permission.h @@ -35,3 +35,4 @@ void finishPermissions(); unsigned int getDefaultPermissions(); #endif +/* vim:set shiftwidth=4 tabstop=8 expandtab: */ diff --git a/src/player.c b/src/player.c index 3a18c7d19..a9ab8fe1d 100644 --- a/src/player.c +++ b/src/player.c @@ -474,3 +474,4 @@ int getPlayerChannels() { return pc->channels; } +/* vim:set shiftwidth=4 tabstop=8 expandtab: */ diff --git a/src/player.h b/src/player.h index 8c02b8f34..e92e14a8b 100644 --- a/src/player.h +++ b/src/player.h @@ -142,3 +142,4 @@ int getPlayerBits(); int getPlayerChannels(); #endif +/* vim:set shiftwidth=4 tabstop=8 expandtab: */ diff --git a/src/playerData.c b/src/playerData.c index 9fc8f830d..21fc30200 100644 --- a/src/playerData.c +++ b/src/playerData.c @@ -130,3 +130,4 @@ PlayerData * getPlayerData() { void freePlayerData() { shmdt(playerData_pd); } +/* vim:set shiftwidth=4 tabstop=8 expandtab: */ diff --git a/src/playerData.h b/src/playerData.h index 353c33c66..eb69ad0fc 100644 --- a/src/playerData.h +++ b/src/playerData.h @@ -59,3 +59,4 @@ Buffer * getBuffer(); void freePlayerData(); #endif +/* vim:set shiftwidth=4 tabstop=8 expandtab: */ diff --git a/src/playlist.c b/src/playlist.c index 8bd5241bb..1b01b4e4d 100644 --- a/src/playlist.c +++ b/src/playlist.c @@ -1205,3 +1205,4 @@ int seekSongInPlaylist(FILE * fp, int song, float time) { return playerSeek(fp,playlist.songs[playlist.order[i]]->utf8file,time); } +/* vim:set shiftwidth=4 tabstop=8 expandtab: */ diff --git a/src/playlist.h b/src/playlist.h index d5042c9b5..a9eee9a17 100644 --- a/src/playlist.h +++ b/src/playlist.h @@ -96,3 +96,4 @@ int seekSongInPlaylist(FILE * fp, int song, float time); void incrPlaylistVersion(); #endif +/* vim:set shiftwidth=4 tabstop=8 expandtab: */ diff --git a/src/sig_handlers.c b/src/sig_handlers.c index eb39e9719..f23d8606f 100644 --- a/src/sig_handlers.c +++ b/src/sig_handlers.c @@ -120,3 +120,4 @@ void unblockSignals() { sigaddset(&sset,SIGTERM); while(sigprocmask(SIG_UNBLOCK,&sset,NULL)<0 && errno==EINTR); } +/* vim:set shiftwidth=4 tabstop=8 expandtab: */ diff --git a/src/sig_handlers.h b/src/sig_handlers.h index 6c5af549b..70f2fc4ad 100644 --- a/src/sig_handlers.h +++ b/src/sig_handlers.h @@ -38,3 +38,4 @@ void blockTermSignal(); void unblockTermSignal(); #endif +/* vim:set shiftwidth=4 tabstop=8 expandtab: */ diff --git a/src/signal_check.c b/src/signal_check.c index 6f8b37359..fc9d486cc 100644 --- a/src/signal_check.c +++ b/src/signal_check.c @@ -57,3 +57,4 @@ void signal_clear(int sig) __caught_signals[sig] = 0; } +/* vim:set shiftwidth=4 tabstop=8 expandtab: */ diff --git a/src/signal_check.h b/src/signal_check.h index ae669dc30..4c4e170f3 100644 --- a/src/signal_check.h +++ b/src/signal_check.h @@ -29,3 +29,4 @@ void signal_clear(int sig); #endif /* SIGNAL_CHECK_H */ +/* vim:set shiftwidth=4 tabstop=8 expandtab: */ diff --git a/src/song.c b/src/song.c index d9b28284c..4ce90e023 100644 --- a/src/song.c +++ b/src/song.c @@ -323,3 +323,4 @@ Song * songDup(Song * song) { return ret; } +/* vim:set shiftwidth=4 tabstop=8 expandtab: */ diff --git a/src/song.h b/src/song.h index 895e6cf4f..eaa44bedc 100644 --- a/src/song.h +++ b/src/song.h @@ -61,3 +61,4 @@ int updateSongInfo(Song * song); Song * songDup(Song * song); #endif +/* vim:set shiftwidth=4 tabstop=8 expandtab: */ diff --git a/src/stats.c b/src/stats.c index 63ca87503..bb88d4052 100644 --- a/src/stats.c +++ b/src/stats.c @@ -46,3 +46,4 @@ int printStats(FILE * fp) { myfprintf(fp,"db_update: %li\n",getDbModTime()); return 0; } +/* vim:set shiftwidth=4 tabstop=8 expandtab: */ diff --git a/src/stats.h b/src/stats.h index dd009909d..bef0e3179 100644 --- a/src/stats.h +++ b/src/stats.h @@ -38,3 +38,4 @@ void initStats(); int printStats(FILE * fp); #endif +/* vim:set shiftwidth=4 tabstop=8 expandtab: */ diff --git a/src/tables.c b/src/tables.c index 748cd53a4..4129c1d29 100644 --- a/src/tables.c +++ b/src/tables.c @@ -197,3 +197,4 @@ int printAllKeysOfTable(FILE * fp, char * table, char * arg1) { return -1; } } +/* vim:set shiftwidth=4 tabstop=8 expandtab: */ diff --git a/src/tables.h b/src/tables.h index e797f638a..a535425e4 100644 --- a/src/tables.h +++ b/src/tables.h @@ -41,3 +41,4 @@ unsigned long numberOfAlbums(); int printAllKeysOfTable(FILE * fp, char * table, char * arg1); #endif +/* vim:set shiftwidth=4 tabstop=8 expandtab: */ diff --git a/src/tag.c b/src/tag.c index 23128ae16..42124adfd 100644 --- a/src/tag.c +++ b/src/tag.c @@ -508,3 +508,4 @@ MpdTag * mpdTagDup(MpdTag * tag) { return ret; } +/* vim:set shiftwidth=4 tabstop=8 expandtab: */ diff --git a/src/tag.h b/src/tag.h index 180e81d33..a406a3cae 100644 --- a/src/tag.h +++ b/src/tag.h @@ -62,3 +62,4 @@ void printMpdTag(FILE * fp, MpdTag * tag); MpdTag * mpdTagDup(MpdTag * tag); #endif +/* vim:set shiftwidth=4 tabstop=8 expandtab: */ diff --git a/src/utf8.c b/src/utf8.c index 2c0c20a5f..6ab9e599c 100644 --- a/src/utf8.c +++ b/src/utf8.c @@ -128,3 +128,4 @@ unsigned char * utf8StrToLatin1Dup(unsigned char * utf8) { return realloc(ret,len+1); } +/* vim:set shiftwidth=4 tabstop=8 expandtab: */ diff --git a/src/utf8.h b/src/utf8.h index be281d80a..fd5e8d49e 100644 --- a/src/utf8.h +++ b/src/utf8.h @@ -32,3 +32,4 @@ int validateUtf8Char(unsigned char * utf8Char); int validUtf8String(unsigned char * string); #endif +/* vim:set shiftwidth=4 tabstop=8 expandtab: */ diff --git a/src/utils.c b/src/utils.c index 6cc5760db..7f8609b26 100644 --- a/src/utils.c +++ b/src/utils.c @@ -57,3 +57,4 @@ void my_usleep(long usec) { select(0,NULL,NULL,NULL,&tv); } +/* vim:set shiftwidth=4 tabstop=8 expandtab: */ diff --git a/src/utils.h b/src/utils.h index 932f075db..402867ac9 100644 --- a/src/utils.h +++ b/src/utils.h @@ -32,3 +32,4 @@ void stripReturnChar(char * string); void my_usleep(long usec); #endif +/* vim:set shiftwidth=4 tabstop=8 expandtab: */ diff --git a/src/volume.c b/src/volume.c index 38b6603c6..49d7483cd 100644 --- a/src/volume.c +++ b/src/volume.c @@ -430,3 +430,4 @@ int changeVolumeLevel(FILE * fp, int change, int rel) { return -1; } } +/* vim:set shiftwidth=4 tabstop=8 expandtab: */ diff --git a/src/volume.h b/src/volume.h index efd4e158c..f5f866e3d 100644 --- a/src/volume.h +++ b/src/volume.h @@ -38,3 +38,4 @@ int getVolumeLevel(); int changeVolumeLevel(FILE * fp, int change, int rel); #endif +/* vim:set shiftwidth=4 tabstop=8 expandtab: */ -- cgit v1.2.3