comparison src/proto/sound.pro @ 17026:905e1b154058 v8.1.1513

patch 8.1.1513: all popup functionality is in functions, except :popupclear commit https://github.com/vim/vim/commit/3ff5f0f05d437a6b3eaf3caa5dc2762b49314617 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Jun 10 13:11:22 2019 +0200 patch 8.1.1513: all popup functionality is in functions, except :popupclear Problem: All popup functionality is in functions, except :popupclear. Solution: Add popup_clear() for consistency. Also rename sound_stopall() to sound_clear().
author Bram Moolenaar <Bram@vim.org>
date Mon, 10 Jun 2019 13:15:07 +0200
parents 353ed7ef78df
children 10696f279e20
comparison
equal deleted inserted replaced
17025:2e3d41442033 17026:905e1b154058
1 /* sound.c */ 1 /* sound.c */
2 void f_sound_playevent(typval_T *argvars, typval_T *rettv); 2 void f_sound_playevent(typval_T *argvars, typval_T *rettv);
3 void f_sound_playfile(typval_T *argvars, typval_T *rettv); 3 void f_sound_playfile(typval_T *argvars, typval_T *rettv);
4 void f_sound_stop(typval_T *argvars, typval_T *rettv); 4 void f_sound_stop(typval_T *argvars, typval_T *rettv);
5 void f_sound_stopall(typval_T *argvars, typval_T *rettv); 5 void f_sound_clear(typval_T *argvars, typval_T *rettv);
6 void sound_free(void); 6 void sound_free(void);
7 /* vim: set ft=c : */ 7 /* vim: set ft=c : */